action api2cart_attribute_update { label: "AttributeUpdate" description: "Update attribute data" provider: api2cart method: POST path: "/attribute.update.json" encoding: json input: { type: "object" properties: { id: { type: "string" } lang_id: { type: "string" } name: { type: "string" } store_id: { type: "string" } } required: ["id", "name"] additionalProperties: false } output: { type: "object" properties: { result: { type: "object" properties: { updated: { type: "boolean" } } } return_code: { type: "integer" } return_message: { type: "string" } } } }