action openchannel_get_transactions { label: "Returns a paginated list of transactions" description: "- Results are paginated and the default is value is 100 if no limit is provided\n" provider: openchannel method: GET path: "/transactions" encoding: json input: { type: "object" properties: { limit: { type: "integer" } pageNumber: { type: "integer" } query: { type: "string" } sort: { type: "string" } } additionalProperties: false } output: { type: "object" additionalProperties: true } }