v1
latestOpenAPI 3.0.12026-08-064278250.7 KBauthentication
Authenticate users
Authenticate the user before making other API calls. The token is valid for 24 hours.
post/oauth/token
Request body
Example request
{
"client_id": "2qDgzSrZxnUCs4jqmfdEP5MVkEmA3Uak",
"client_secret": "9c9Dabz5nQT65LXfYt_61wxb9UssT7tpzTM-gVB4RJZB9gKDf1_TjO6o3eLcBaba",
"audience": "https://secure.coro.net/api",
"grant_type": "client_credentials"
}Response
Success
Example response
{
"access_token": "eyJz93a...k4laUWw",
"token_type": "Bearer",
"expires_in": 86400
}