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":"e9a11295-6304-4c16-b17b-441f5d2f962d"}'
Request examples
{
"name": "The name of the personal access token",
"password": "The password of the user for verification",
"account_uuid": "e9a11295-6304-4c16-b17b-441f5d2f962d"
}
Response examples (401)
{
"message": "Unauthenticated."
}