POST
/
connect
/
token
curl --request POST \
  --url https://accounts.world.luccasoftware.com/connect/token \
  --header 'Content-Type: application/x-www-form-urlencoded' \
  --data 'client_id=<string>' \
  --data 'client_secret=<string>' \
  --data 'scope=[
  "<string>"
]' \
  --data grant_type=client_credentials
{
  "access_token": "<string>",
  "token_type": "Bearer",
  "expires_in": 1800
}

About authentication

Read the documentation to learn more about authentication.

Body

application/x-www-form-urlencoded

Response

200 - application/json
OK

The response is of type object.