Manage your cards
As part of the overall card issuing flow, we also provide you with tools to create your own dashboard to monitor and track the cards that you have issued. We give you the ability to view transaction reports, as well as the ability to block/freeze your cards on demand - based on business flows that you identify.
The primary resource that you will be interacting with when managing your user's cards.
Token
Profile ID
Client ID
Status Text
Transitionable Status
Deprecation Notice:
Will be removed from response starting 1st December 2023 and there will be no replacement.
Name of the card holder
Date when the card will expire
Last 4 digits of the card number
Bank identification number of the card
Phone number of the card
Name of the card program
Scheme of the card program. E.g. VISA
or MASTERCARD
Default currency of the card. E.g. GBP
Type of the card. E.g. PHYSICAL
or VIRTUAL
Time when the card is created
Time when the card was last modified
Table of available card status and descriptions
Code | Description |
---|---|
ACTIVE | Card is active and can be used |
INACTIVE | Physical card has not been activated |
BLOCKED | Card is blocked and cannot be reversed back to any state |
FROZEN | Card is “blocked” but temporarily |
PARTNER_SUSPENDED | Card is suspended by Wise temporarily due to e.g. fraud reasons. |
EXPIRED | Card is expired |
PURGED | The cardholder data (e.g. PAN, PIN) has been purged after the retention period (540 days after the card is blocked or expired) |
{"token": "ca0c8154-1e14-4464-a1ce-dcea7dc3de52","profileId": 123456,"clientId": "wise_api_docs","status": {"value": "ACTIVE","allowedTransitions": [ // deprecated - no replacement"FROZEN","BLOCKED"]},"cardHolderName": "John Smith","expiryDate": "2028-05-31T00:00:00Z","lastFourDigits": "6320","bankIdentificationNumber": "459661","phoneNumber": "+441234567890","cardProgram": {"name": "VISA_DEBIT_BUSINESS_UK_1","scheme": "VISA","defaultCurrency": "GBP","cardType" : "VIRTUAL_NON_UPGRADEABLE"},"creationTime": "2022-05-31T01:43:24.596321434Z","modificationTime": "2022-05-31T01:43:24.596321825Z"}
The Permissions resource returns information on the existing permissions that are configured on your user's cards.
The type of transaction. One of ECOM
, POS_CHIP
, ATM_WITHDRAWAL
, MOBILE_WALLETS
A flag indicated if the permissions for a specific type
are enabled
{"type": "ECOM","isEnabled": false}
GET /v3/spend/profiles/{{profileId}}/cards?pageSize=10&pageNumber=1
Returns a list of cards that belong to a specific profileId
.
The maximum number of cards to return per page. This number can be between 10 - 100, and will default to 10
The page number to retrieve the next set of cards. The number has to be greater than 1, and will default to 1
curl -X GET https://api.sandbox.transferwise.tech/v3/spend/profiles/{{profileId}}/cards?pageSize=10&pageNumber=1 \-H 'Authorization: Bearer <your api token>'
Response
The total number of cards for this profileId
A collection of Cards for this profileId
{"cards": [{"token": "ca0c8154-1e14-4464-a1ce-dcea7dc3de52","profileId": 123456,"clientId": "wise_api_docs","status": {"value": "ACTIVE","allowedTransitions": [ // deprecated - no replacement"FROZEN","BLOCKED"]},"cardHolderName": "John Smith","expiryDate": "2028-05-31T00:00:00Z","lastFourDigits": "6320","bankIdentificationNumber": "459661","phoneNumber": "+441234567890","cardProgram": {"name": "VISA_DEBIT_BUSINESS_UK_1","scheme": "VISA","defaultCurrency": "GBP","cardType": "VIRTUAL_NON_UPGRADEABLE"},"creationTime": "2022-05-31T01:43:24.596321434Z","modificationTime": "2022-05-31T01:43:24.596321825Z"}],"totalCount": 1}
GET /v3/spend/profiles/{{profileId}}/cards/{{cardToken}}
Retrieves a card based on the cardToken
provided.
curl -X GET https://api.sandbox.transferwise.tech/v3/spend/profiles/{{profileId}}/cards/{{cardToken}} \-H 'Authorization: Bearer <your api token>'
Response
Returns a Card resource.
{"token": "ca0c8154-1e14-4464-a1ce-dcea7dc3de52","profileId": 123456,"clientId": "wise_api_docs","status": {"value": "ACTIVE","allowedTransitions": [ // deprecated - no replacement"FROZEN","BLOCKED"]},"cardHolderName": "John Smith","expiryDate": "2028-05-31T00:00:00Z","lastFourDigits": "6320","bankIdentificationNumber": "459661","phoneNumber": "+441234567890","cardProgram": {"name": "VISA_DEBIT_BUSINESS_UK_1","scheme": "VISA","defaultCurrency": "GBP","cardType" : "VIRTUAL_NON_UPGRADEABLE"},"creationTime": "2022-05-31T01:43:24.596321434Z","modificationTime": "2022-05-31T01:43:24.596321825Z"}
PUT /v3/spend/profiles/{{profileId}}/cards/{{cardToken}}/status
Modifies the card status.
The status that you want to update the card to. One of ACTIVE
, FROZEN
or BLOCKED
The definition for the status values are:
ACTIVE
- the card is active and usableFROZEN
- the card is temporarily frozen resulting in all authorisation requests to be declinedBLOCKED
- the card is irreversibly blocked and is no longer usable
curl -X PUT https://api.sandbox.transferwise.tech/v3/spend/profiles/{{profileId}}/cards/{{cardToken}}/status \-H 'Authorization: Bearer <your api token>' \-H 'Content-Type: application/json' \-d '{"status": "ACTIVE"}'
Response
Returns a Card object.
{"token": "ca0c8154-1e14-4464-a1ce-dcea7dc3de52","profileId": 123456,"clientId": "wise_api_docs","status": {"value": "ACTIVE","allowedTransitions": [ // deprecated - no replacement"FROZEN","BLOCKED"]},"cardHolderName": "John Smith","expiryDate": "2028-05-31T00:00:00Z","lastFourDigits": "6320","bankIdentificationNumber": "459661","phoneNumber": "+441234567890","cardProgram": {"name": "VISA_DEBIT_BUSINESS_UK_1","scheme": "VISA","defaultCurrency": "GBP","cardType" : "VIRTUAL_NON_UPGRADEABLE"},"creationTime": "2022-05-31T01:43:24.596321434Z","modificationTime": "2022-05-31T01:43:24.596321825Z"}
Wise is a PCI DSS compliant provider, and stores all of your cards' data securely. The scope for PCI compliance depends on your use case and will impact how you integrate with Wise.
Sensitive card details endpoints allows you to retrieve card data such as Primary Account Number, CVV or PIN. You can use it to set a pin if required in the card order flow. For all sensitive card details endpoints, we are using client-side encryption. Please follow the flow detailed in client-side encryption flow.
Fetch RSA encryption key
This endpoint is used to fetch our RSA public key. This key is required in the client-side encryption flow.
Response
Version of the key
The RSA public key
curl -X GET https://twcard.sandbox.transferwise.tech/twcard-data/v1/clientSideEncryption/fetchEncryptingKey-H 'Authorization: Bearer <your api token>'
{"version": 1,"key": "<encryption key>"}
Get Card Sensitive Details
This endpoint is used to fetch the card Primary Account Number, security code (CVV2), expiry date and cardholder name. It requires an api token
and a card token
set in the headers.
Request
The version of the key to use. It is always set to 1.
Your JWE payload.
Response
An arbitrary UUID issued from the cryptographic communication
Your card CVV2
Your card Primary Account Number
Your card expiry date
Name on the card
curl -X POST https://twcard.sandbox.transferwise.tech/twcard-data/v1/sensitive-card-data/details-H 'Authorization: Bearer <your api token>'-H 'x-tw-twcard-card-token: <your card token>'-d '{"keyVersion": 1,"encryptedPayload": <your JWE>}'
{"nonce": "33d51227-9ad6-4624-b4b7-7853b56076dd","cvv2": "111","pan": "4396910000012345","expiryDate": "10/31","cardholderName": "John Smith"}
Get Card PIN
This endpoint is used to fetch the card PIN. It requires an api token
and a card token
set in the headers.
Request
The version of the key to use. It is always set to 1.
Your JWE payload.
Response
An arbitrary UUID issued from the cryptographic communication
Your card pin
curl -X POST https://twcard.sandbox.transferwise.tech/twcard-data/v1/sensitive-card-data/pin-H 'Authorization: Bearer <your api token>'-H 'x-tw-twcard-card-token: <your card token>'-d '{"keyVersion": 1,"encryptedPayload": <your JWE>}'
{"nonce": "33d51227-9ad6-4624-b4b7-7853b56076dd","pin": "1234",}
This endpoint will be accessible for partners that require to set a PIN on card order flow. It requires an api token
and a card order id
set in the headers.
Request
The version of the key to use. It is always set to 1.
Your JWE payload.
Response
The card order id on which the pin is set
curl -X POST https://twcard.sandbox.transferwise.tech/twcard-data/v1/sensitive-card-data/preset-pin-H 'Authorization: Bearer <your api token>'-H 'x-tw-twcard-order-id: <your card order id>'-d '{"keyVersion": 1,"encryptedPayload": <your JWE>}'
{"cardOrderId": "<your card order id>",}
GET /v3/spend/profiles/{{profileId}}/cards/{{cardToken}}/spending-permissions
Retrieves permissions for a card.
Response
A collection of Permissions
curl -X GET https://api.sandbox.transferwise.tech/v3/spend/profiles/{{profileId}}/cards/{{cardToken}}/spending-permissions \-H 'Authorization: Bearer <your api token>'
{"permissions": [{"type": "ECOM","isEnabled": false},{"type": "POS_CHIP","isEnabled": true},{"type": "ATM_WITHDRAWAL","isEnabled": false},{"type": "MOBILE_WALLETS","isEnabled": true}]}
PATCH /v3/spend/profiles/{{profileId}}/cards/{{cardToken}}/spending-permissions
Enable or disable permissions on a card.
One of ECOM
, POS_CHIP
, POS_MAGSTRIPE
,ATM_WITHDRAWAL
, POS_CONTACTLESS
,MOBILE_WALLETS
A flag indicating if the permissions for a specific type
are enabled
Response
Returns a 200 - No Content
curl -X PATCH https://api.sandbox.transferwise.tech/v3/spend/profiles/{{profileId}}/cards/{{cardToken}}/spending-permissions \-H 'Authorization: Bearer <your api token>'--d '{"type": <permission type>,"isEnabled": <true or false>}'