DELETE/Submission

Request URL

curl -X DELETE "https://rest-api.argoskyc.com/v3/submission?submission_id={submission_id}" \
-H "x-api-key: {yourAPIKey}" \

Delete a single submission data. It will delete the personal data of users and the image files associated with the submission.

Deleted submissions are also subject to charges, and deleted submission data cannot be restored!!

Deleted data

  1. Personal identification information (such as name, date of birth, gender, nationality, etc.)

  2. Sensitive document information (document number, serial number, barcode, etc.)

  3. Image files (identification images, selfies)

  4. AML information (applicable when data has been stored using AML options)

  • Basic data that cannot identify individuals, including the unique ID (Submission ID), submission date, document type, KYC approval status, etc., will remain.

  • Deleted submissions will be marked as 'Deleted Submission' in the dashboard and GET/API responses.

Input Data

* means required parameters.

ParameterDescription

*submission_id

Unique ID for a specific submission.

Output Data

ResponseDescription

message

Deletion status

content

Detailed message of the status

Sample

Sample Request

curl --location --request DELETE 'https://rest-api.argoskyc.com/v3/submission?submission_id={submission_id}' \
--header 'x-api-key: {yourAPIKey}'

Sample Response

{
	"message": "success",
	"content": "Submission #{submissionID} deleted successfully."
}

Last updated