action api2cart_cart_plugin_list { label: "CartPluginList" description: "Get list of installed plugins" provider: api2cart method: GET path: "/cart.plugin.list.json" encoding: json input: { type: "object" properties: { count: { type: "integer" } start: { type: "integer" } store_id: { type: "string" } store_key: { type: "string" } } additionalProperties: false } output: { type: "object" properties: { result: { type: "object" properties: { all_plugins: { type: "integer" } plugins: { type: "array" items: { type: "object" properties: { additional_fields: { type: "object" } all_plugins: { type: "integer" } custom_fields: { type: "object" } plugins: { type: "array" items: { type: "object" properties: { active: { type: "boolean" } additional_fields: { type: "object" } custom_fields: { type: "object" } name: { type: "string" } } } } } } } } } return_code: { type: "integer" } return_message: { type: "string" } } } }