action shipengine_create_warehouse { label: "Create Warehouse" description: "Create a warehouse location that you can use to create shipping items by simply passing in the generated warehouse id.\nIf the return address is not supplied in the request body then it is assumed that the origin address is the return address as well\n" provider: shipengine method: POST path: "/v1/warehouses" encoding: json input: { type: "object" description: "A create warehouse request body" required: ["name", "origin_address"] additionalProperties: false } output: { type: "object" description: "A create warehouse response body" required: ["created_at", "name", "origin_address", "return_address", "warehouse_id"] additionalProperties: false } }