Get All Cards

GET /account/cards

Returns all cards associated with the authenticated user.

Headers

Name
Value

Content-Type

application/json

Authorization

Bearer <token>

Response

{
    "statusCode": 200,
    "statusMessage": "OK",
    "payload": {
        "cards": [
             {
                "id": "00771c4e-d1e3-43e6-a255-988247e9cacc",
                "status": true,
                 "metadata": {
                     "type": "card",
                },
                "created_at": "2025-12-15T20:32:35.547Z",
                "updated_at": "2025-12-15T20:32:35.547Z",
            },
            {...}
        ],
        "traceId": "gdlyfx1kn79mm0e66an",
    }
}

Last updated