action beezup_get_billing_periods { label: "Get billing periods conditions" provider: beezup method: GET path: "/v2/user/customer/billingPeriods" encoding: json input: { type: "object" properties: { "If-None-Match": { type: "string" } } additionalProperties: false } output: { type: "object" required: ["billingPeriods", "links"] properties: { billingPeriods: { type: "array" description: "The billing period list" items: { type: "object" required: ["billingPeriodInMonth", "discountPercentage"] properties: { billingPeriodInMonth: { type: "integer" format: "int32" description: "The billing period in month" } discountPercentage: { type: "number" format: "double" description: "The discount percentage related to this billing period" } } } } links: { type: "object" properties: { self: { type: "object" } } } } } }