delete https://api.sumsub.com/resources/applicants//tags
Overview
Use this method to remove specific custom tags from applicant profiles.
Info
- By removing tags from profiles, you do not remove them from the Tags page in the Dashboard.
- To add new tags, use this method.
Request example
curl -X DELETE 'https://api.sumsub.com/resources/applicants/5fd1012c885b5d0009d50e6e/tags' \
-H 'Content-Type: application/json' \
-d '["Approved Sanctions", "Approved PEP", "821"]'
Response explained
If the tags are removed correctly, 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": "Invalid id 'xxxxxxxxxxxxx'",
"code": 400,
"correlationId": "77b612a1bb281c64c132dd0000000000"
}
Neither error nor result is returned in cases where you specify non-existing tags in your request.