POST
/
v1
/
oauth
/
token
Get access token
curl --request POST \
  --url https://api.kajabi.com/v1/oauth/token \
  --header 'Content-Type: application/x-www-form-urlencoded' \
  --data 'username=<string>' \
  --data 'password=<string>' \
  --data 'client_id=<string>' \
  --data 'client_secret=<string>' \
  --data 'grant_type=<string>' \
  --data 'scope=<string>' \
  --data 'refresh_token=<string>'
{
  "access_token": "<string>",
  "refresh_token": "<string>",
  "token_type": "<string>",
  "expires_in": 123
}

Body

application/x-www-form-urlencoded
username
string
password
string
client_id
string
client_secret
string
grant_type
string
scope
string
refresh_token
string

Response

Authentication succeeded

access_token
string
refresh_token
string
token_type
string
expires_in
integer