Skip to main content

Update card status

POST 

/cards/:cardId/status

Use this endpoint to change the status of the card. This is typically used to apply a temporary block (e.g. in the event of a lost card).

This endpoint:

  • Changes card status (active, blocked, etc.)
  • Maintains card history
  • Triggers necessary notifications
  • Updates related systems

Request

Path Parameters

    cardId stringrequired

    The ID of the card to update

Body

required

Card status update data

    status stringrequired

    Possible values: [ACTIVE, BLOCKED]

    The new status to set for the card (only ACTIVE or BLOCKED allowed)

Responses

The card status was successfully updated.

Schema

    traceId string
    message string

    data

    object

    id stringrequired

    The ID of the card

    referenceNumber stringrequired

    The system card reference number

    status stringrequired

    Possible values: [ACTIVE, BLOCKED, SUSPENDED, CANCELLED]

    The status of the card

    success booleanrequired

    Whether the operation was successful

Loading...