Aspose.Cells Cloud Health Check
Contents
[
Hide
]
Check the health status of Aspose.Cells Cloud services.
Check Cloud Service Health
Web API
GET https://api.aspose.cloud/v4.0/cells/status/check
Request Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| Authorization | header | Yes | Bearer token for authentication (Authorization: Bearer <token>). |
| detail | query | No | Set to true to include detailed component information. |
| Accept | header | No | Desired response format, default is application/json. |
Response
The service returns a JSON payload when the request succeeds.
{
"status": "OK",
"service": "Cells",
"timestamp": "{{timestamp}}",
"components": {
"api": "Operational",
"storage": "Operational",
"database": "Operational"
}
}
HTTP status codes
| Code | Meaning | Description |
|---|---|---|
| 200 | OK | The service is healthy; see the JSON example above. |
| 401 | Unauthorized | Invalid or missing authentication token. |
| 503 | Service Unavailable | The service is currently unhealthy or under maintenance. |
| 4xx | Client error | Incorrect request parameters or malformed request. |
| 5xx | Server error | Unexpected server failure; retry later. |
How to Use the Aspose.Cells Cloud Status API with SDKs
OpenAPI Specification
OpenAPI Specification defines a publicly accessible programming interface and lets you carry out REST interactions directly from a web browser.
Use Aspose.Cells Cloud SDKs
Using the SDK is the best way to accelerate development. The SDK handles the underlying details, allowing you to implement a cloud health check for Cells with minimal code.
Please check out the GitHub repository for a complete list of Aspose.Cells Cloud SDKs.
Below are sample snippets that demonstrate how to call the health‑check endpoint with the most common SDKs.