POST v1/Token
Request Information
URI Parameters
None.
Body Parameters
TokenRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| Username | string |
None. |
|
| Password | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Username": "sample string 1",
"Password": "sample string 2"
}
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
TokenResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| access_token | string |
None. |
|
| token_type | string |
None. |
|
| expires_in | integer |
None. |
|
| expires_at_utc | date |
None. |
Response Formats
application/json, text/json
Sample:
{
"access_token": "sample string 1",
"token_type": "sample string 2",
"expires_in": 3,
"expires_at_utc": "2026-05-18T15:25:07.9722263+00:00"
}