Authentication

Nuvio API uses token-based authentication, allowing users to authenticate API requests by inputting their tokens into the HTTP authorization bearer token header.

All API requests must be authenticated and made through HTTPS. Any request that doesn't include a Bearer Token will return an error.

Example:

curl https://app.nuvio.io/v1/{method} -H
"Authorization: Bearer YOUR_TOKEN"

Get your Access Token

You can generate an API access token from Nuvio Settings -> Company Settings -> Developers tab at any time.

Scopes

API access tokens serve within the granted scope only. You can select the API scopes while creating your API access token on Nuvio Dashboard.

For example, to add a new income or expense to Nuvio via API, the token must have the WRITE scope. Check the Scopes page to learn more which scope grants access to which resources / endpoints.

Last updated