POST /a/auth/token/personal
Generate a personal access token
Body Parameters
Name | Description | Type | Required |
---|---|---|---|
AutoRefresh | integer | ||
ExpiresAt | string | ||
Label | string | ||
Scopes | array | ||
UserLogin | string |
Body Example
{
"AutoRefresh": 10,
"ExpiresAt": "string",
"Label": "string",
"Scopes": [
"string"
],
"UserLogin": "string"
}
Response Example (200)
Response Type /definitions/entPersonalAccessTokenResponse
{
"AccessToken": "string"
}