<aside>
This API supports Bearer token authentication, using either an API Token or an OAuth2 access token.
To access protected endpoints, you need to include your unique token in the Authorization
header of your HTTP requests:
“Authorization” : “Bearer <your API token value | YourOAuth2TokenValue>”
</aside>
You can create API tokens in your SEEN Platform account by navigating to:
Settings → API → Create API Key
You can create OAuth2 clients by navigating to:
Settings → OAuth2 → Create OAuth2 Client
After creating your OAuth2 Client, you can obtain your an access token with the following schema:
https://next.seen.io/oauth2/token
POST
Content-Type: application/x-www-form-urlencoded
Key | Value | Comment |
---|---|---|
grant_type | client_credentials | Required |
client_id | <client_id> | Required |
client_secret | <client_secret> | Required |
scope | requested scopes | Space separated |