Headers

application/json

Body Required

POST /api/v1/personal-access-tokens
curl \
 --request POST 'https://api.plannrcrm.com/api/v1/personal-access-tokens' \
 --header "Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}" \
 --header "Content-Type: application/json" \
 --header "Accept: application/json" \
 --data '{"name":"The name of the personal access token","password":"The password of the user for verification","account_uuid":"675f5a8e-2358-4fc1-a7c7-700c72420f90"}'
Request examples
# Headers
Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}
Content-Type: application/json
Accept: application/json

# Payload
{
  "name": "The name of the personal access token",
  "password": "The password of the user for verification",
  "account_uuid": "675f5a8e-2358-4fc1-a7c7-700c72420f90"
}