Skip to main content
POST
/
api
/
pat
/
v1
/
users
/
tokens
/
delete
/
bulk
Delete a list of personal access tokens
curl --request POST \
  --url https://api.example.com/api/pat/v1/users/tokens/delete/bulk \
  --header 'Content-Type: application/json' \
  --header 'X-Domino-Api-Key: <api-key>' \
  --data '
{
  "patIds": [
    "<string>"
  ]
}
'
{
  "error": "<string>"
}

Authorizations

X-Domino-Api-Key
string
header
required

Body

application/json

List of personal access token ids to delete

patIds
string[]
required
Pattern: ^[0-9a-f]{24}$

Response

success