Troubleshooting
This section describes possible solutions to the issues that you might experience when using the Repository Settings API.
HTTP error codes
The Repository Settings API uses the following error codes:
Error code | Description |
---|---|
400 Bad Request | The request is incorrect. Make sure the request body follows the schema. |
401 Unauthorized | The authentication credentials are missing or invalid. Check if your access token is not expired. |
403 Forbidden | You are not authorized to view or modify the requested resource. Make sure you are in the right access group. |
404 Not found | The requested resource does not exist. |
503 Service Unavailable | The service is temporarily unavailable. Try again after a few minutes. You can also use the health check endpoint to learn more. |
Response times out
When a response times out, the service might be temporarily unavailable. Try again after a few minutes.
Health check endpoint
To verify the current state of the service, use the health check endpoint:
GET {baseUrl}/management/health
Sample response:
{
"status": "UP",
"groups": ["liveness", "readiness"]
}
Was this page helpful?