Skip to main content

Delete Processor

DELETE /processors/:id

Soft-delete a processor by setting it to inactive. The processor and its rules are preserved but the routing endpoint will return 404. Leads already routed are unaffected.

Path Parameters

ParameterTypeDescription
idstring (uuid)Processor ID

Example

curl -X DELETE https://api.getnexor.ai/api/public/processors/abc-123-uuid \
-H "X-API-Key: nxr_live_your_api_key"

Responses

200 — Processor deleted

{
"success": true,
"message": "Processor deactivated"
}

401 — Authentication error

See Authentication.

404 — Not found

{
"error": "Not found",
"message": "Processor not found or does not belong to your account"
}

500 — Internal server error