Get PayGo Account Billable Usage Info (Version 1, Alpha)
GET/accounts/{account_id}/paygo-usage-info
Returns high-level usage information for the account, including coverage, and subscription metadata.
Security
API Token
The preferred authorization scheme for interacting with the Cloudflare API. Create a token.
Example:
API Email + API Key
The previous authorization scheme for interacting with the Cloudflare API, used in conjunction with a Global API key.
Example:
The previous authorization scheme for interacting with the Cloudflare API. When possible, use API tokens instead of Global API keys.
Example:
Accepted Permissions (at least one required)
Get PayGo Account Billable Usage Info (Version 1, Alpha)
curl https://api.cloudflare.com/client/v4/accounts/$ACCOUNT_ID/paygo-usage-info \
-H "Authorization: Bearer $CLOUDFLARE_API_TOKEN"{
"errors": [
{
"message": "message",
"code": 0
}
],
"messages": [
{
"message": "message",
"code": 0
}
],
"result": {
"covered": true,
"subscriptions": [
{
"id": "3F3CD4CQ6N7FXO7IK6NVFJBOYA",
"billing_cycle_anchor_timestamp": "2023-01-01T00:00:00Z",
"start_timestamp": "2023-01-01T00:00:00Z",
"end_timestamp": "2023-12-31T23:59:59Z"
}
]
},
"success": true
}Returns Examples
{
"errors": [
{
"message": "message",
"code": 0
}
],
"messages": [
{
"message": "message",
"code": 0
}
],
"result": {
"covered": true,
"subscriptions": [
{
"id": "3F3CD4CQ6N7FXO7IK6NVFJBOYA",
"billing_cycle_anchor_timestamp": "2023-01-01T00:00:00Z",
"start_timestamp": "2023-01-01T00:00:00Z",
"end_timestamp": "2023-12-31T23:59:59Z"
}
]
},
"success": true
}