Locoia API Authentication - Personal Access Token
Authentication with our API of Locoia itself
In order to create a personal access token the following endpoint needs to be used:
post
https://api.locoia.com
/v1/personal-access-tokens
Create personal access token
The token itself is only visible right after creating a personal access token, after that it is impossible to retrieve it from the API.
One can regenerate a token with by sending the following
POST
request:post
https://api.locoia.com
/v1/personal-access-tokens/{{ token_id }}/regenerate
Regenerate personal access token
You can list all token with
get
https://api.locoia.com
/v1/personal-access-tokens
Get personal access tokens
The following scopes are available:
Scope Name | Entites |
---|---|
automation |
|
company |
|
connector_auth |
|
connectors |
|
dashboard |
|
embed |
|
All scopes have the following access levels:
Scope Extension | Operations | Example |
---|---|---|
None (leave empty) | CRUD - Create, Read, Update, Delete | connector_auth - the token can create, read, update, and delete all Connector Auths to which the user who created the token has access to |
:manage | CRU - Create, Read, Update | connector_auth:manage - the user can do all of the above, except for deleting |
:view | R - Read | connector_auth:view - the user can only read the Connector Auths |
To authenticate with the token, simply specify it in the Authorization header like this:
Authorization: Bearer {{ token }}
or setup a Connector Auth for Locoia within the Locoia app and then use the token there.Last modified 5mo ago