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

Response

200
application/json

Successful response

The response is of type object.