Obtain Access Token
Kariz uses an access token to control access to our API via OAuth 2.0 Password Grant. Use this endpoint to retrieve an access token.
You will need valid user and application credentials. If you do not have an account, schedule a demo to gain access. Use this token in the Authorization header of subsequent calls.
Body
The type of OAuth grant being used.
password
Your developer username in Kariz. This can be found in your account. It's the credential you use to login.
"john@nike.com"
Your developer password in Kariz. This can be found in your account. It's the credential you use to login.
"secretpassword"
The client id for your application. This can be found in your account.
"client123"
The client secret for your application. This can be found in your account.
"clientsecret123"
Response
The token that can be used to authenticate API requests.
"ya29.a0AfH6SMDtYZB_...your_access_token..."
The type of the token.
"bearer"
The number of seconds until the token expires. By default the token expires every 90 days.
3600
The scope(s) associated with the token.
"read write"