Suspend Processor
POST
/processors/{id}/suspendOpen in the API playground →
Suspend a processor to prevent them from processing transactions.
Endpoint
POST /api/v1/processors/:id/suspend
Authentication
Authorizationstringheaderrequired
Bearer token (Admin JWT)
Path Parameters
idstringpathrequired
Processor UUID
Request Body
reasonstringbody
Suspension reason (e.g., "Suspected fraudulent activity")
Response
{
"success": true,
"message": "Processor suspended successfully"
}
Effects
- Processor status changes to
suspended - All POS transactions are rejected
- Dashboard access is blocked
- API key is deactivated
Errors
| Code | Description |
|---|---|
| 400 | Invalid request |
| 404 | Processor not found |
| 401 | Unauthorized |