action openchannel_get_apps_text_search { label: "Searches through the text of fields to find APPROVED or SUSPENDED apps" description: "- Results are returned for the market provided within the basic authentication credentials\n" provider: openchannel method: GET path: "/apps/textSearch" encoding: json input: { type: "object" properties: { fields: { type: "string" } isOwned: { type: "boolean" } limit: { type: "integer" } pageNumber: { type: "integer" } query: { type: "string" } text: { type: "string" } userId: { type: "string" } } required: ["fields", "text"] additionalProperties: false } output: { type: "object" additionalProperties: true } }