action billingo_list_document_block { label: "List all document blocks" description: "Returns a list of your document blocks. The document blocks are returned sorted by creation date, with the most recent document blocks appearing first." provider: billingo method: GET path: "/document-blocks" encoding: json input: { type: "object" properties: { page: { type: "integer" } per_page: { type: "integer" } } additionalProperties: false } output: { type: "object" description: "A object with a data property that contains an array of up to limit document blocks. Each entry in the array is a separate document block object. If no more document block are available, the resulting array will be empty." properties: { current_page: { type: "integer" } data: { type: "array" items: { type: "object" properties: { custom_field1: { type: "string" } custom_field2: { type: "string" } id: { type: "integer" } name: { type: "string" } prefix: { type: "string" } } } } last_page: { type: "integer" } next_page_url: { type: "string" } per_page: { type: "integer" } prev_page_url: { type: "string" } total: { type: "integer" } } } }