7️⃣Card Issuance
Now that you have created a customer account, you are able to issue cards for the account. To do so, you need to use /accounts/{accountId}/card POST request.
Creates new card for the account
Unique account ID
HTTP message signature
HTTP message signature input
Idempotency key (UUID)
Content digest
Card type
Successful operation
Invalid request
Not authorised
Account not found
Internal error
Let's say we want to open a new virtual card (physical cards are not supported at the moment):
If everything was successful, you will receive a response with status 201 (Created) which looks similar to the following:
At this stage, you can use our Simulator to issue or fail a pending card issuance request.
Assuming you would like to issue the card and proceed with next steps, you need to make an empty PATCH request to /simulator/cards/{cardId}/issue.
Simulates card issuing success
Unique card ID
HTTP message signature
HTTP message signature input
Idempotency key (UUID)
Successful operation
No content
Invalid request
Not authorised
Card not found
Internal error
No content
If your request was successful, you will receive an empty response with status 202 (Accepted).
In our Sandbox environment the card will be automatically issued and activated, which you can verify by making a GET request to /cards/{cardId}.
Retrieves card's details
Unique card ID
HTTP message signature
HTTP message signature input
Successful operation
Invalid request
Not authorised
Card not found
Internal error
From there we can proceed to simulating card authorisations and transactions.
Last updated