PostifyPostify Docs

Get plan usage

The workspace's effective plan tier and every plan meter's consumption for the current period — including `api_requests`, the meter every /v1 call consumes.

GET
/v1/usage

The workspace's effective plan tier and every plan meter's consumption for the current period — including api_requests, the meter every /v1 call consumes.

Authorization

AuthorizationBearer <token>

Organization API key as a Bearer token (postify_live_…).

In: header

Response Body

application/json

application/problem+json

application/problem+json

application/problem+json

application/problem+json

curl -X GET "https://example.com/v1/usage"
{  "plan": "string",  "meters": [    {      "key": "posts_per_month",      "used": -9007199254740991,      "limit": -9007199254740991,      "remaining": -9007199254740991,      "period_starts_at": "2019-08-24T14:15:22Z",      "period_ends_at": "2019-08-24T14:15:22Z"    }  ]}