Authentication
Vorg API use OAuth 2.0 access tokens to access resources. If you’re not already familiar with the specification, reading it may help you better understand how to get access tokens to use with the Vorg API.
The Vorg API uses two types of access tokens:
User access token. This access token is obtained by authenticating the user via Vorg ID. and is used to access all APIs that require user interaction (With all APIs except Cloud API).
curl "https://api.vvvorg.com/" \
-H "Authoriztion: bearer <user access token>"App access token. An access token that is obtained in the app settings and is used for the Cloud API.
curl "https://cloud-api.vvvorg.com/" \
-H "App-token: <app access token>"Vorg ID also uses Basic authorization to obtain user access token.
curl "https://api.vvvorg.com/oauth2/token/" \
-H "Basic: base64_encode(<client_id>:<client_secret>)"Last updated
Was this helpful?