action unicourt_get_billing_cycles { label: "Get all the previous 12 billing cycles." description: "An endpoint to obtain information on the previous 12 billing cycles." provider: unicourt method: GET path: "/billingCycles" encoding: json output: { type: "object" required: ["billingCycleArray", "object"] properties: { billingCycleArray: { type: "array" description: "Array of previous 12 Billing Cycles." items: { type: "string" format: "date" } } object: { type: "string" description: "Name of the object." } } } }