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.

ParamRequired?Descriptiontype
card_nameYesEnter name on Card. (e.g John Doe)String
card_numberYesEnter number on Card. (e.g 5188 5136 1855 2975)String
expiry_dateYesEnter Expiry date on Card, (e.g 09/22 in format of MM/YY)String
cvvYesEnter Security number on Card (e.g 123; Character length 3)Integer
is_virtualNoIs this card a virtual card? (1 = Yes and 0 = No)Boolean
is_mainNoIs 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'
Language
Click Try It! to start a request and see the response here!