Overview Details
Base URL
The Management API base URL is constructed by appending /apiops to your Apinizer Manager application URL:
{management_console_url}/apiops/
Example
- Manager URL:
https://demo.apinizer.com - API Base URL:
https://demo.apinizer.com/apiops/
Authentication
All endpoints (except the test endpoint) require authentication using a Personal API Access Token. The token must be included in the Authorization header:
Authorization: Bearer YOUR_TOKEN
See Authentication for details on obtaining a token.
API Versioning
The current API version is v1. All endpoints are under the /apiops/ path.
Response Format
Success Response
Most endpoints return a standard success response:
{
"status": "SUCCESS",
"resultList": [...],
"resultCount": 1
}
Error Response
Management API error responses use this format:
{
"status": "FAILURE",
"resultMessage": "Human-readable error message"
}
The token endpoint (POST /apiops/auth/token) uses OAuth-style error and error_description fields instead.
See Error Handling for details on error codes and handling.