Issue New Bank Card
POST/api/v2/cards/
Issues a new bank card based on the provided details. This endpoint facilitates the creation of bank cards, allowing for customization of card names, setting limits, initial balance, and auto top-up configurations.
Request
- application/json
Body
required
The Bank Identification Number (BIN) that determines the card network and bank.
The name or alias for the new card.
limits object
single object
The maximum amount for a single transaction.
The limit amount.
daily object
The maximum total amount for all transactions in a day.
The limit amount.
monthly object
The maximum total amount for all transactions in a month.
The limit amount.
The initial balance of the card.
The number of cards to issue.
autoTopUp object
The balance threshold to trigger an automatic top-up.
The amount to be automatically topped up when the threshold is reached.
The unique identifier of the wallet to which the card is associated.
The unique identifier of the owner of the card.
A flag indicating whether the card is shared with other users.
A flag indicating whether a new wallet should be created for the card.
Responses
- 200
- 422
Successful Response
- application/json
- Schema
- Example (from schema)
Schema
Default value: 200
Default value: ok
{
"code": 200,
"detail": "ok"
}
Validation Error
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- Array [
- MOD1
- MOD2
- ]
- ]
detail object[]
loc object[]required
string
integer
{
"detail": [
{
"loc": [
"string",
0
],
"msg": "string",
"type": "string"
}
]
}