Remove applicant note

Overview

Use this method to remove a note from the applicant profile.

Request example

curl -X DELETE \
  'https://api.sumsub.com/resources/api/applicants/notes' \
     -H 'content-type: application/json' \
     -d '{
          "id": "6893925cff736e92c020acaa",
          "applicantId": "687fb2373fc85ad66b5d6244"
        }'

Response explained

If a 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"
}
Language
Credentials
Header
Click Try It! to start a request and see the response here!