Requests
When interacting with the Service API, requests should typically be made using the GET method, unless otherwise specified for a particular service. Each request must include a valid Authorization header to authenticate the request.
If the Authorization header is missing or invalid, the API will return a 403 Forbidden response, indicating that access is denied.
Responses
The Service API responds with data in both XML and JSON formats, and all response data is encoded using the UTF-8 character set.
If a request is made for an unknown service, the system will return a 404 Not Found response. Conversely, if a known service is requested but the provided authentication credentials do not grant access to that service, a 403 Forbidden response will be returned. This ensures secure and proper access to the services available through the API.