Delete transaction

Recent Requests
Log in to see full request history
TimeStatusUser Agent
Retrieving recent requests…
LoadingLoading…

Overview

Use this method to delete a transaction from the system.

Request example

curl -X DELETE \
     'https://api.sumsub.com/resources/kyt/txns/64ccaee3c033214e4a4c5e0a' \
     -H 'accept: application/json' \
     -H 'X-App-Token: <your-app-token>' \
     -H 'X-App-Access-Sig: <your-signature>' \
     -H 'X-App-Access-Ts: <unix-timestamp>'

Response explained

If the request is successfully sent and processed, you will receive the following response confirming the transaction has been deleted.

{
  "deleted": 1
}

If the request fails, you will receive an HTTP response containing an error code along with a message explaining the error. For example:

{
  "code": 400,
  "correlationId": "cfdecb2ca0e8b23f6f064492df0c44a8",
  "errorCode": 0,
  "description": "Invalid id '1duy7g9svsijfi4b56eex'"
}

Path Params
string
required

Unique transaction identifier in the Sumsub system.

This ID is returned in the response to this request and a webhook (kytTxnId). Save it for future use in subsequent API calls. Alternatively, you can get this identifier by the following method.

Language
Credentials
Header
LoadingLoading…
Response
Click Try It! to start a request and see the response here!