Cards
Add Card
Endpoint to add a new Card. The created Card has the same currency of the Wallet it belongs to.
post/business/v2/cards
Headers
X-Soldo-Fingerprintstring required
Advanced authentication: SHA512SUM of the fingerprint values listed in the fingerprint order for this endpoint.
Example:{{fingerprint}}
X-Soldo-Fingerprint-Signaturestring required
Advanced authentication: Signature of the X-Soldo-Fingerprint.
Example:{{fingerprint_signature}}
Request body
Example request
{
"request_timestamp": 1576850500000,
"owner_public_id": "XMPL1234-000001",
"wallet_id": "c861cc24-6663-410f-8c78-73f886fff4ef",
"reserved_wallet_currency": "EUR",
"name": "CardName",
"card_label": "CardLabel",
"emboss_line4": "Example Inc.",
"address_id": "c861cc24-6663-410f-8c78-73f886fff4ef",
"vehicle_id": "c861cc24-6663-410f-8c78-73f886fff4ef",
"preset_id": "c861cc24-6663-410f-8c78-73f886fff4ef"
}Response
The returned resource is a single Order.
Example response
{
"id": "7bf79328-a7ae-4222-aa54-091ff7f429a7",
"creation_time": "2017-06-01T12:48:40Z",
"last_update_time": "2017-06-01T12:48:40Z",
"total_paid_amount": 10.25,
"items": [
{
"id": "7bf79328-a7ae-4222-aa54-091ff7f429a7",
"item_type": "CARD"
}
],
"is_valid": true
}