Path parameters

  • id string Required

    The ID of the personal access token.

application/json

Body Required

DELETE /api/v1/personal-access-tokens/{id}
curl \
 --request DELETE 'https://api.plannrcrm.com/api/v1/personal-access-tokens/id' \
 --header "Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}" \
 --header "Content-Type: application/json" \
 --header "Accept: application/json" \
 --data '{"password":"The password of the user for verification"}'
Request examples
# Headers
Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}
Content-Type: application/json
Accept: application/json

# Payload
{
  "password": "The password of the user for verification"
}