POST
/
token
curl --request POST \
  --url https://api-staging.crazygoldfish.com/token \
  --header 'Content-Type: application/x-www-form-urlencoded' \
  --data 'username=<string>' \
  --data 'password=<string>' \
  --data 'grant_type=<string>' \
  --data 'scope=<string>' \
  --data 'client_id=<string>' \
  --data 'client_secret=<string>'
{
  "access_token": "<string>",
  "token_type": "bearer"
}

Body

application/x-www-form-urlencoded
username
string
required

The username of the client.

password
string
required

The password associated with the username.

grant_type
string

OAuth 2.0 grant type.

scope
string

The scope of the access request.

client_id
string

The client ID.

client_secret
string

The client secret.

Response

200
application/json
Successful response
access_token
string

The access token to be used for authentication with 30 minutes expire.

token_type
string

The token type.

Example:

"bearer"