Skip to main content
POST
/
v2
/
auth
/
accesses
/
{access-id}
/
blacklist
Add to sub-access blacklist
curl --request POST \
  --url https://api.example.com/v2/auth/accesses/{access-id}/blacklist \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "accountId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "otp": "<string>"
}
'
{
  "error": "<string>"
}

Add to sub-access blacklist

POST 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

Body

application/json
accountId
string<uuid>
required
otp
string
required

Response

OK