Personal API Tokens
Create long-lived tokens to use the RevOrbit API from scripts, integrations, and AI assistants.
Personal API tokens let you call the RevOrbit REST API from scripts, integrations, and AI assistants without handling your password or a short-lived login session. A token acts as you, inside the organization it was created in, and keeps working until it expires or you revoke it.
Create a Token
Tokens are created from your profile. The full token value is shown exactly once — copy it somewhere safe (a password manager or your integration's secret store) before closing the dialog.
Using a Token
Send the token as a Bearer token in the Authorization header on any API request, exactly as you would a login session token. Tokens start with rvo_ so you can recognize them in configs and logs.
curl -H \"Authorization: Bearer rvo_...\" https://crm.revorbit.com/api/leadsRead-only vs Read & Write
A read-only token can list and view data but is rejected (HTTP 403) on every request that creates, updates, or deletes anything. Use read-only tokens for dashboards, reporting, and anything that only needs to look at your CRM. A read & write token can do what you can do in the app.
Managing and Revoking Tokens
The API Tokens tab lists your active tokens with their name, prefix, access level, last-used time, and expiry — but never the token value itself. You can hold up to 10 active tokens per organization.