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 move (from create-processor) |
| folder_id | string | Yes | Unique identifier of the target folder (from create-folder) |
{
"processor_id": "studio_processor_ABC123XYZ",
"folder_id": "studio_folder_DEF456UVW"
}| Parameter | Type | Description |
|---|---|---|
| data | object | Contains updated processor details |
| โโ processor_id | string | Unique identifier of the processor |
| โโ processor_name | string | Name of the processor |
| โโ file_id | string | Identifier of the associated file |
| โโ filename | string | Name of the associated file |
| โโ processor_type | string | Type of processor (e.g., splitter) |
| โโ categories | array | List of categories processed (type, description) |
| โโ context | string | Context or notes for the processor |
| โโ folder_id | string | Unique identifier of the target folder |
| โโ created_at | string | ISO timestamp of processor creation |
| status_code | int | HTTP status code (e.g., 200 for success) |
| success | bool | Indicates if the request was successful |
| message | string | Human-readable status message |
| message_code | string | Machine-readable status code |
{
"data": {
"processor_id": "studio_processor_ABC123XYZ",
"processor_name": "Sample Processor",
"file_id": "studio_file_9876543210",
"filename": "Sample_Document.pdf",
"processor_type": "splitter",
"categories": [
{
"type": "passport",
"description": ""
}
],
"context": "Sample context for processing",
"folder_id": "studio_folder_DEF456UVW",
"created_at": "2025-12-17T10:57:56.557000"
},
"status_code": 200,
"success": true,
"message": "Success",
"message_code": "success"
}{
"data": null,
"status_code": 404,
"success": false,
"message": "Processor or folder not found",
"message_code": "not_found"
}curl --location --request POST 'https://kyc-api.surepass.app/api/v1/sureparser/move-processor' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"processor_id": "processor_id",
"folder_id": "folder_id"
}'{
"data": {
"processor_id": "processor_configABCDEFGHIJKLMNOPQ",
"processor_name": "Invoice Processor",
"file_id": "fileABCDEFGHIJKLMNOPQRSTU",
"filename": "sample.pdf",
"processor_type": "splitter",
"categories": [],
"context": null,
"folder_id": "processor_folderABCDEFGHIJKLMNOP",
"created_at": "2024-12-13T12:00:00.000000"
},
"status_code": 200,
"message": "Success",
"success": true
}