Create a personal access token Run in API Explorer
POST
/api/v1/personal-access-tokens
curl \
--request POST 'https://api.plannrcrm.com/api/v1/personal-access-tokens' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--data '{"name":"The name of the personal access token","password":"The password of the user for verification","account_uuid":"399be200-5149-4659-ae69-d28504ebe2d8"}'
Request examples
{
"name": "The name of the personal access token",
"password": "The password of the user for verification",
"account_uuid": "399be200-5149-4659-ae69-d28504ebe2d8"
}
Response examples (401)
{
"message": "Unauthenticated."
}