Skip to content
Languages
Servers
Mock Server

https://docs.solarisgroup.com/_mock/api-reference/digital-banking/cards-tokenization/

Operations
Operations

Request

Returns an array of all Visa tokens assigned to the card specified in the request URL.

Path
card_idstringrequired

The ID of the card to which the token is assigned.

Query
filter[visa_token_number]string

Filters by visa_token_number

page[number]integer

Page number

page[size]integer

Page size

No request payload

Responses

Successful result of the operation

Bodyapplication/jsonArray [
token_reference_idstring

The unique reference ID of the token to be retrieved.

visa_token_numberstring

The number of the Visa token.

pan_referencestring

Information about the Primary Account Number (PAN) reference.

wallet_typestring

The type of the wallet.

Enum"APPLE""GOOGLE""SAMSUNG"
statusstring

The status of the token.

Enum"ACTIVE""DEACTIVATED""INACTIVE""SUSPENDED"
device_idstring

The ID of the bound device associated with the token.

pan_sourcestring

The source of the PAN.

Enum"KEY_ENTERED""ON_FILE""MOBILE_BANKING_APP""TOKEN""CHIP_DIP""CONTACTLESS_TAP"
created_atstring

The date the token was created. (ISO8601 format)

]
Response
application/json
[ { "token_reference_id": "DNITHE382228352676336613", "visa_token_number": "4111112380202020", "pan_reference": "V-3010101010363935797827", "wallet_type": "APPLE", "status": "ACTIVE", "device_id": "dfg5748s-b26b-2020-9ee0-94f0001189830", "pan_source": "MOBILE_BANKING_APP", "created_at": "2022-09-19T01:31:26.695Z" }, { "token_reference_id": "DNITHE382201010676336612", "visa_token_number": "4636632389470002", "pan_reference": "V-3019278256560935797827", "wallet_type": "GOOGLE", "status": "INACTIVE", "device_id": "d3768ef3-b166-2299-9ee0-994949184830", "pan_source": "MOBILE_BANKING_APP", "created_at": "2022-09-19T07:31:26.695Z" } ]

Retrieve the details of a Visa token

Request

Returns the details of a card's token. You must add the token's associated card ID and the token's reference ID in the request URL.

Path
card_idstringrequired

The ID of the card to which the token is assigned.

token_reference_idstringrequired

The unique reference ID of the token to be retrieved.

No request payload

Responses

Successful result of the operation

Bodyapplication/jsonArray [
token_reference_idstring

The unique reference ID of the token to be retrieved.

visa_token_numberstring

The number of the Visa token.

pan_referencestring

Information about the Primary Account Number (PAN) reference.

wallet_typestring

The type of the wallet.

Enum"APPLE""GOOGLE""SAMSUNG"
statusstring

The status of the token.

Enum"ACTIVE""DEACTIVATED""INACTIVE""SUSPENDED"
device_idstring

The ID of the bound device associated with the token.

pan_sourcestring

The source of the PAN.

Enum"KEY_ENTERED""ON_FILE""MOBILE_BANKING_APP""TOKEN""CHIP_DIP""CONTACTLESS_TAP"
created_atstring

The date the token was created. (ISO8601 format)

]
Response
application/json
{ "token_reference_id": "DNITHE382228352676355555", "visa_token_number": "4636632380632323", "pan_reference": "V-004448252363935719191", "wallet_type": "APPLE", "status": "ACTIVE", "device_id": "d3768ef3-b26b-0000-9ee0-94f527184830", "pan_source": "MOBILE_BANKING_APP", "created_at": "2022-09-19T01:31:26.695Z" }
Operations