action shipengine_add_funds_to_carrier { label: "Add Funds To Carrier" description: "Add Funds To A Carrier" provider: shipengine method: PUT path: "/v1/carriers/{carrier_id}/add_funds" encoding: json input: { type: "object" description: "An add funds to carrier request body" additionalProperties: false } output: { type: "object" description: "The current balance of the requested carrier account" required: ["balance"] properties: { balance: { description: "The current balance of the account" type: "object" } } additionalProperties: false } }