Order a card
Order a virtual card for the current user.
- application/json
Request Body required
- amount string required
Amount as monetary value to be loaded. Example $0.1 USDC should be "0.1".
- currency string
Coin being used currently only USDC
- transactionHash string required
The hash of transaction transferring USDC to Immersve Payment Protocol smart contract
Responses
- 200
Successful operation
- application/json
- Schema
- Example (from schema)
Schema
- id string
Card primary identifier
- accountId string
Which account this card belongs to
- externalId string
The external id for this card
- status string
Possible values: [
active
,cancelled
,created
,shipped
]Status of the card
- cardType string
Possible values: [
virtual
]The type of the card
- panFirst6 string
The first 6 digits of the card
- panLast4 string
The last 4 digits of the card
- expiry string
The expiry of the card
- immersveExpiration string
The expiry as set by Immersve
- createdAt string
Timestamp of card creation
- modifiedAt string
Timestamp of card modification
- version number
- lockedFundId string
- lockedFundAmount number
- lockedFundCurrency string
The currency of this card
{
"id": "91ad6fea3b52ca58d60d7fd310f789ec",
"accountId": "057aa15913a57f50577234c8426534c0",
"externalId": "8649543161870318367",
"status": "active",
"cardType": "virtual",
"panFirst6": "123456",
"panLast4": "1920",
"expiry": "202409",
"immersveExpiration": "2022-11-16T03:18:23.431Z",
"createdAt": "2022-11-16T03:13:18.142Z",
"modifiedAt": "2022-11-16T03:13:18.142Z",
"version": 1,
"lockedFundId": "58",
"lockedFundAmount": 10,
"lockedFundCurrency": "USDC"
}
Loading...