action rebilly_get_search { label: "Search merchant data" description: "Search merchant's data to return resources such as customers, invoices, orders, transactions.\n" provider: rebilly method: GET path: "/search" encoding: json input: { type: "object" properties: { q: { type: "string" } } additionalProperties: false } output: { type: "array" items: { type: "object" properties: { customers: { type: "array" description: "List of returned customers." items: { type: "object" } } invoices: { type: "array" description: "List of returned invoices." items: { type: "object" } } orders: { type: "array" description: "List of returned orders." items: { type: "object" } } searched: { type: "array" description: "Names of searched resources, even if they returned nothing." items: { type: "string" } } transactions: { type: "array" description: "List of returned transactions." items: { type: "object" } } } } } }