Skip to main content

Retrieve Billing Status

GET https://infrahub-api.nexgencloud.com/v1/billing/alive

Retrieves the billing status of your account to ensure that your billing is active. An active billing status ensures that you will not experience any disruptions in service.


Parameters


No parameters.


Attributes


message string

A message indicating the billing status of your account. A response of alive indicates that your billing is active. If you receive any other response, please contact support at support@hyperstack.cloud.


Example request
curl -X GET "https://infrahub-api.nexgencloud.com/v1/billing/alive" \
-H "accept: application/json"\
-H "api_key: YOUR API KEY"
Response
{
"message": "alive"
}

Returns


A successful response returns a message of alive indicating that your billing status is active. Otherwise, an error has occurred. If you receive any other response, please contact support at support@hyperstack.cloud.


Back to top