Generate Token
02/13/2020 | Less than 1 minute to read
Info Note
API TYPE: POST
End Point: POST /oauth/token
Description: For Generating Access Token
Request (Generate Token)
02/13/2020 | 3 minutes to read
Body
grant_type, username, password
Parameter |
Value |
Description |
DataType |
grant_type |
required |
password |
password |
username |
required |
String |
String |
password |
required |
String |
String |
Basic Auth
username, password
Parameter |
Value |
Description |
DataType |
username |
required |
String |
String |
password |
required |
String |
String |
Response (Generate Token)
02/13/2020 | Less than 1 minute to read
{
"access_token": "String",
"token_type": "bearer",
"refresh_token": "String",
"expires_in": Long,
"scope": "READ WRITE"
}