action api2cart_cart_script_delete { label: "CartScriptDelete" description: "Remove script from the storefront" provider: api2cart method: DELETE path: "/cart.script.delete.json" encoding: json input: { type: "object" properties: { id: { type: "string" } store_id: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" properties: { result: { type: "object" properties: { deleted: { type: "boolean" } } } return_code: { type: "integer" } return_message: { type: "string" } } } }