Delete a personal access token

DELETE /api/v1/personal-access-tokens/{id}

Path parameters

  • id string Required

    The ID of the personal access token.

application/json

Body Required

  • password string Required

    secret

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