Skip to main content

Documentación

Retrieve Card Status History

Retrieve the historical blocking records for an issued card, including the date, and specific reason for each instance.

    • card

    • ID of the issued card. String starting with card_.

  • /v1/issuing/cards/:card/status_history

  • Get Card Status History

  • curl -X get 'https://sandboxapi.rapyd.net/v1/issuing/cards/card_16913c402be05e4dae48d081643f8368/status_history' \
    -H 'access_key: your-access-key-here' \
    -H 'Content-Type: application/json' \
    -H 'salt: your-random-string-here' \
    -H 'signature: your-calculated-signature-here' \
    -H 'timestamp: your-unix-timestamp-here'
  • {
        "status": {
            "error_code": "",
            "status": "SUCCESS",
            "message": "",
            "response_code": "",
            "operation_id": "2cfb2542-f6da-4daf-a82f-2df7e3498195"
        },
        "data": [
            {
                "card_status": "ACT",
                "blocked_reason": null,
                "date": "2025-12-04T08:14:52.000Z"
            },
            {
                "card_status": "BLO",
                "blocked_reason": "stolen",
                "date": "2025-12-04T08:14:31.000Z"
            },
            {
                "card_status": "ACT",
                "blocked_reason": null,
                "date": "2025-12-03T08:10:20.000Z"
            },
            {
                "card_status": "BLO",
                "blocked_reason": "stolen",
                "date": "2025-12-03T08:09:38.000Z"
            },
            {
                "card_status": "ACT",
                "blocked_reason": null,
                "date": "2025-12-03T08:08:41.000Z"
            },
            {
                "card_status": "INA",
                "blocked_reason": null,
                "date": "2025-12-03T08:06:34.000Z"
            }
        ]
    }