action brandlovers_get_orders { label: "Returns orders details" description: "Retuns a list of orders associated with this seller. The list is ordered by dateCreated." provider: brandlovers method: GET path: "/orders" encoding: json input: { type: "object" properties: { authorization: { type: "string" } limit: { type: "string" } offset: { type: "string" } } required: ["authorization"] additionalProperties: false } output: { type: "object" additionalProperties: true } }