Skip to main content

Troubleshooting

This section describes possible solutions to the issues that you might experience when using the Storage Access API.

HTTP error codes

The Storage Access API uses the following error codes:

Error codeDescription
400 Bad RequestThe request is incorrect. Make sure the request body follows the schema.
401 UnauthorizedThe authentication credentials are missing or invalid. Check if your access token isn't expired.
403 ForbiddenYou're not authorized to view or modify the requested resource.
404 Not foundThe requested resource doesn't exist.

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"]
}