delete https://api.sumsub.com/resources/kyt/txns/notes
Overview
Use this method to remove a note from the specified transaction.
Note
To add a new note to the particular transaction, use this method.
Request example
curl -X DELETE \
'https://api.sumsub.com/resources/kyt/txns/notes' \
-H 'content-type: application/json' \
-d '{
"id": "66cf0fcec9ba855902121cf7",
"txnId": "66c46d7566f5244e45a81167"
}'
Response explained
If the note was successfully removed, you will get the following response:
{
"ok": 1
}
If the request fails, you will receive an HTTP response containing an error code along with a message explaining the error. For example:
{
"description": "Malformed data provided in the request",
"code": 400,
"correlationId": "f23e05c9f1a0aa2beb83065f98dc0544"
}