Skip to main content
DELETE
/
v2
/
auth
/
accesses
/
{access-id}
/
blacklist
/
{account-id}
Remove from sub-access blacklist
curl --request DELETE \
  --url https://api.example.com/v2/auth/accesses/{access-id}/blacklist/{account-id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "otp": "<string>"
}
'
{
  "error": "<string>"
}

Remove from sub-access blacklist

DELETE request to /v2/auth/accesses//blacklist/

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

access-id
string<uuid>
required
account-id
string<uuid>
required

Body

application/json
otp
string
required

Response

OK