action brandlovers_get_orders_status_partially_sent { label: "Returns a list of orders partially fullfiled" description: "Returns a list of orders that contain one (or more) items that where not shipped. This will list the entire order as well the items with peding shipment. Use this service to track orders that need to be fullfiled." provider: brandlovers method: GET path: "/orders/status/partiallySent" encoding: json input: { type: "object" properties: { authorization: { type: "string" } limit: { type: "string" } offset: { type: "string" } } required: ["authorization"] additionalProperties: false } output: { type: "object" additionalProperties: true } }