# Here is a curl example
curl \
-X POST 'http://localhost:8888/api/Authentication/Authenticate
?username=test&password=test' \
To get the authorization access token you need to make a POST call to the
following url :
http://localhost:8888/api/Authentication/Authenticate
Result example :
[
{
"Access_token": "string",
"Refresh_token": "string",
"Expires_in": "2022-11-21T14:29:33.752Z",
"Token_type": "string",
"Raw_claim": "string",
"Success": true,
"Message": "string"
}
]
| Field | Parameter Type | Type | Description |
|---|---|---|---|
| username | query | string | Your username. |
| password | query | string | Your password. |