Base URL
All API requests should be made to:Authentication
The Pretectum API uses token-based authentication. Before making API requests, you need to obtain an access token using your client credentials.Get Access Token
Learn how to authenticate and obtain an access token
How Authentication Works
- Obtain Credentials: Contact your Pretectum tenant administrator to receive your
client_idandclient_secret. - Request Token: Use the Token endpoint to exchange your credentials for an access token.
- Include Token: Add the access token to the
Authorizationheader of your API requests.
Available Endpoints
Token
Obtain an access token for API authentication
Search Data Objects
Search across your master data objects
Rate Limiting
API requests are subject to rate limiting. If you exceed the rate limit, you will receive a429 Too Many Requests response. Please implement appropriate retry logic with exponential backoff.
Error Handling
The API returns standard HTTP status codes to indicate success or failure:| Status Code | Description |
|---|---|
200 | Success |
400 | Bad Request - Invalid parameters |
401 | Unauthorized - Invalid or missing token |
403 | Forbidden - Insufficient permissions |
404 | Not Found - Resource does not exist |
429 | Too Many Requests - Rate limit exceeded |
500 | Internal Server Error |
