DELETE/Submission
1
curl -X DELETE "https://rest-api.argoskyc.com/v3/submission?submission_id={submission_id}" \
2
-H "x-api-key: {yourAPIKey}" \
Delete a single submission data.
It will completely delete the submission data and the image files associated with the submission.
Deleted submission cannot be restored!
* means required parameters.
Parameter | Description |
---|---|
*submission_id | Unique ID for a specific submission. |
Response | Description |
---|---|
message | Deletion status |
content | Detailed message of the status |
1
curl --location --request DELETE 'https://rest-api.argoskyc.com/v3/submission?submission_id={submission_id}' \
2
--header 'x-api-key: {yourAPIKey}'
1
{
2
"message": "success",
3
"content": "Submission #{submissionID} deleted successfully."
4
}
Last modified 7mo ago