Overview#
Authenticate with your registered profile credentials to obtain an authorization token for API access.Authentication process#
1.
Authenticate
Endpoint: POST /profile/authenticate
Submit a username and password to initiate authentication process.
Request
Body Params application/x-www-form-urlencoded
Request Code Samples
curl --location --request POST 'https://sandbox.privicore.com:9009/profile/authenticate' \
--data-urlencode 'username=' \
--data-urlencode 'password='
Responses
application/json
Authenticated successfully
{
"authorizationToken": "example_authorization_token",
"expiresAt": "2026-02-21T15:33:44+00:00"
}
Modified at 2025-12-02 11:24:05