post http://api.pandascrow.io/sandbox/index/user/card/add
This endpoint would allow you to add your card on Pandascrow
[POST] {{baseurl}}/sandbox/index/user/card/add
Pandascrow Wallet β Add Card
To Add credit card to your Pandascrow account, you'll need to provide all parameters as required in the table below.
Param | Required? | Description | type |
---|---|---|---|
card_name | Yes | Enter name on Card. (e.g John Doe) | String |
card_number | Yes | Enter number on Card. (e.g 5188 5136 1855 2975) | String |
expiry_date | Yes | Enter Expiry date on Card, (e.g 09/22 in format of MM/YY) | String |
cvv | Yes | Enter Security number on Card (e.g 123; Character length 3) | Integer |
is_virtual | No | Is this card a virtual card? (1 = Yes and 0 = No) | Boolean |
is_main | No | Is this card a primary card? (1 = Yes and 0 = No) | Boolean |
API Object
{
"status": 200,
"data": {
"message": "Card was successfully updated"
}
}
curl -L -X POST '{{baseurl}}/sandbox/index/user/card/add' \
-H 'Content-Type: application/json' \
-H 'Authorization: SECRET_KEY'
-H 'Appid: appid'