GET /voice/healthcheck
voice health check endpoint.
This endpoint will return a simple json including service status and API version.
Responses
-
OK.
-
This response means that server could not understand the request due to invalid syntax.
-
Authentication is needed to get requested response. This is similar to 403, but in this case, authentication is possible.
-
Client does not have access rights to the content so server is rejecting to give proper response.
-
The request method is known by the server but has been disabled and cannot be used.
-
The user has sent too many requests in a given amount of time ("rate limiting").
-
The server has encountered a situation it doesn't know how to handle.
GET
/voice/healthcheck
curl \
-X GET https://api.amerandish.com/v1/voice/healthcheck \
-H "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
"status": "Running",
"message": "OK.",
"version": "1.0.5"
}
Response examples (200)
{
"status": "Running",
"message": "string",
"version": "string"
}
Response examples (400)
{
"code": 400,
"message": "Bad Request. Invalid JSON object."
}
Response examples (400)
{
"status": "string",
"detail": "string",
"title": "string",
"type": "string"
}
Response examples (401)
{
"code": 401,
"message": "Unautherized. Invalid Authorization Token."
}
Response examples (401)
{
"status": "string",
"detail": "string",
"title": "string",
"type": "string"
}
Response examples (403)
{
"code": 403,
"message": "Forbidden. Do not have access right to resource."
}
Response examples (403)
{
"status": "string",
"detail": "string",
"title": "string",
"type": "string"
}
Response examples (405)
{
"code": 405,
"message": "Method Not Allowed."
}
Response examples (405)
{
"status": "string",
"detail": "string",
"title": "string",
"type": "string"
}
Response examples (429)
{
"code": 429,
"message": "Too Many Requests. Your request is blocked due to exceeding rate limiting."
}
Response examples (429)
{
"status": "string",
"detail": "string",
"title": "string",
"type": "string"
}
Response examples (500)
{
"code": 500,
"message": "Internal Server Error. Please retry later."
}
Response examples (500)
{
"status": "string",
"detail": "string",
"title": "string",
"type": "string"
}