action callfire_get_billing_plan_usage { label: "Find plan usage" description: "Searches for the data of a billing plan usage for the user. Returns the data of a billing plan usage for the current month. For authentication use api credentials." provider: callfire method: GET path: "/me/billing/plan-usage" encoding: json output: { type: "object" description: "Contains statistics of billing plan usage" properties: { intervalEnd: { type: "integer" format: "int64" description: "End of usage period formatted in unix time milliseconds. Example: 1473781817000 for Sat, 05 Jan 1985 14:03:37 GMT" } intervalStart: { type: "integer" format: "int64" description: "Start of usage period formatted in unix time milliseconds. Example: 1473781817000 for Sat, 05 Jan 1985 14:03:37 GMT" } remainingPayAsYouGoCredits: { type: "number" description: "Remaining pay as you go credits are rounded to nearest whole value" } remainingPlanCredits: { type: "number" description: "Remaining credits are rounded to nearest whole value associated with a plan" } totalRemainingCredits: { type: "number" description: "Total number of remaining credits (remainingPlanCredits + remainingPayAsYouGoCredits)" } } } }