Reactivate a cardholder
Cardholders
Reactivate Cardholder
Reactivate a suspended cardholder, restoring their cards’ ability to transact. POST /cardholders//reactivate. Requires cardholders:write scope.
POST
Reactivate a cardholder
Documentation Index
Fetch the complete documentation index at: https://docs.fyatu.com/llms.txt
Use this file to discover all available pages before exploring further.
Overview
Reactivates a suspended cardholder. Once reactivated, the cardholder’s status returns toACTIVE and their cards can transact again immediately. This endpoint has no request body.
Path Parameters
| Parameter | Type | Description |
|---|---|---|
id | string | The cardholder ID (prefix chl_) |
Example
Success Response (200)
Returns the full updated cardholder object withstatus: ACTIVE and suspendedAt: null:
Webhook
ACARDHOLDER_REACTIVATED event fires immediately after a successful reactivation:
Error Codes
| Code | HTTP | Cause |
|---|---|---|
ALREADY_ACTIVE | 409 | Cardholder is already active (not suspended) |
CARDHOLDER_TERMINATED | 409 | Terminated cardholder cannot be reactivated |
CARDHOLDER_NOT_FOUND | 404 | Cardholder does not exist or belongs to another business |
INSUFFICIENT_SCOPE | 403 | Key lacks cardholders:write scope |
Authorizations
API key from the FYATU CaaS portal. Pass as Authorization: Bearer <key>.

