action rebilly_post_invoice_issuance { label: "Issue an invoice" description: "Issue an invoice with specified identifier string. It must be in `draft` status.\n" provider: rebilly method: POST path: "/invoices/{id}/issue" encoding: json input: { type: "object" properties: { dueTime: { type: "string" format: "date-time" description: "Invoice due time. Will be set same as `issuedTime` if `null` or omitted." } issuedTime: { type: "string" format: "date-time" description: "Invoice issued time. Will be issued immediately if `null` or omitted." } } } output: { type: "object" } }