action shipengine_list_scheduled_pickups { label: "List Scheduled Pickups" description: "List all pickups that have been scheduled for this carrier" provider: shipengine method: GET path: "/v1/pickups" encoding: json input: { type: "object" properties: { carrier_id: { type: "string" description: "A string that uniquely identifies a ShipEngine resource, such as a carrier, label, shipment, etc." } created_at_end: { type: "string" format: "date-time" } created_at_start: { type: "string" format: "date-time" } page: { type: "integer" format: "int32" } page_size: { type: "integer" format: "int32" } warehouse_id: { type: "string" description: "A string that uniquely identifies a ShipEngine resource, such as a carrier, label, shipment, etc." } } additionalProperties: false } output: { type: "object" } }