Skip to main content
POST
/
v3
/
blocklist
/
remove
curl --request POST \
  --url https://verification.didit.me/v3/blocklist/remove/ \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "session_id": "5b3720ed-d429-42ef-b67f-37ea805f48ee",
  "unblock_face": true,
  "unblock_document": true
}
'
{
"message": "Successfully removed from blocklist."
}

Authorizations

x-api-key
string
header
required

Body

application/json
session_id
string<uuid>
required

The session ID to unblock items from.

unblock_face
boolean
default:false

Whether to unblock the face from this session.

unblock_document
boolean
default:false

Whether to unblock the document from this session.

unblock_phone
boolean
default:false

Whether to unblock the phone number from this session.

unblock_email
boolean
default:false

Whether to unblock the email address from this session.

Response

Item successfully removed from blocklist

message
string
Example:

"Successfully removed from blocklist."