Download OpenAPI specification:Download
The Auth API provides access to other Optoro APIs using the OAuth 2.0 client credentials flow. Optoro's Client Success team will provide the credentials used when requesting an access token. The access token returned from the oauth/tokens endpoint will be used in subsequent requests to Optoro APIs.
Returns an OAuth 2.0 access token and related metadata. Tokens should be used in subsequent requests to Optoro APIs.
An OAuth 2.0 bearer token and related metadata.
Malformed request. Check structure of JSON payload.
Invalid credentials used to obtain an access token.
The requested resource could not be found.
The request could not not be processed. Ensure parameter values are valid.
Server error. Retry request using an exponential backoff.
{- "grant_type": "string",
- "client_id": "string",
- "client_secret": "string"
}
{- "access_token": "G0ybScDl_7CA3tWVou",
- "token_type": "Bearer",
- "expires_in": 90000,
- "scope": "read write",
- "created_at": 1656518368
}