AvaCloud
Authentication

Create Token to call AvaCloud API

Create Token to call AvaCloud API

POST
/v1/token

Request Body

application/jsonRequired

Client credentials to exchange for an AvaCloud token

client_idRequiredstring
client_secretRequiredstring
curl -X POST "https://example.com/v1/token" \
  -H "Content-Type: application/json" \
  -d '{
    "client_id": "string",
    "client_secret": "string"
  }'

OK

{
  "access_token": "string",
  "expires_in": 0,
  "token_type": "string"
}