action openchannel_get_apps { label: "Returns a paginated list of APPROVED or SUSPENDED apps" description: "- Results are paginated and the default is value is 1000 if no limit is provided\n- If no query is specified, returns all APPROVED or SUSPENDED apps within the marketplace\n" provider: openchannel method: GET path: "/apps" encoding: json input: { type: "object" properties: { isOwner: { type: "boolean" } limit: { type: "integer" } pageNumber: { type: "integer" } query: { type: "string" } sort: { type: "string" } userId: { type: "string" } } additionalProperties: false } output: { type: "object" additionalProperties: true } }