Skip to main content

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

CodeDescription
400Invalid request
404Processor not found
401Unauthorized