action billingo_get_online_szamla_status { label: "Retrieve a document Online Számla status" description: "Retrieves the details of an existing document status." provider: billingo method: GET path: "/documents/{id}/online-szamla" encoding: json input: { type: "object" properties: { id: { type: "integer" } } required: ["id"] additionalProperties: false } output: { type: "object" properties: { messages: { type: "array" items: { type: "object" properties: { human_readable_message: { type: "string" } validation_error_code: { type: "string" } validation_result_code: { type: "string" } } } } status: { type: "string" } transaction_id: { type: "string" } } } }