Feel free to reach techsupport@surepass.io for any technical support or guidance.
Authorization header as Bearer TOKEN.https://sandbox.surepass.apphttps://kyc-api.surepass.app| Header | Required | Description |
|---|---|---|
| Authorization | Yes | Bearer token for authentication (JWT) |
| Content-Type | Yes | Must be application/json |
| Parameter | Type | Required | Description |
|---|---|---|---|
| processor_id | string | Yes | Unique identifier of the processor to delete. |
{
"processor_id": "studio_processor_ZsyAumAbqPrniLzjjzUP"
}| Parameter | Type | Description |
|---|---|---|
| processor_id | string | Unique identifier of the deleted processor. |
{
"processor_id": "studio_processor_CBcEVOPAnusIaqbPGkDE"
}{
"processor_id": null,
"error": "Processor not found"
}curl --location --request POST 'https://kyc-api.surepass.app/api/v1/sureparser/delete-processor' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"processor_id": "processor_id"
}'{
"data": {
"processor_id": "processor_configABCDEFGHIJKLMNOPQ",
"processor_name": "Invoice Processor",
"file_id": "fileABCDEFGHIJKLMNOPQRSTU",
"filename": "sample.pdf",
"processor_type": "splitter",
"categories": [],
"context": null,
"folder_id": null,
"created_at": "2024-12-13T12:00:00.000000"
},
"status_code": 200,
"message": "Success",
"success": true
}