Prerequisites
Before you begin, make sure you have:- A SKOR API
client_id - A SKOR API
client_secret - The SKOR Modular API base URL for your environment
Choose a base URL
- Production
- Sandbox
https://api.skortorent.com/api/v11
Generate an access token
Send a token request to Generate Access Token using HTTP Basic Authentication. Use your The response returns a one-hour token for authenticated API requests.
client_id as the username and your client_secret as the password.- Production
- Sandbox
2
Store the token securely
Treat the token as a secret. Do not expose it in client-side code, logs, or public repositories.
3
Call protected endpoints
Send the token as a bearer token in the
Authorization header. This example calls Get All Tenants.- Production
- Sandbox