action api2cart_account_supported_platforms { label: "AccountSupportedPlatforms" description: "Get list of supported platforms" provider: api2cart method: GET path: "/account.supported_platforms.json" encoding: json output: { type: "object" properties: { result: { type: "object" properties: { supported_platforms: { type: "array" items: { type: "object" properties: { cart_id: { type: "string" } cart_method: { type: "string" } cart_name: { type: "string" } cart_versions: { type: "string" } params: { type: "object" properties: { additional: { type: "array" items: { type: "object" properties: { description: { type: "string" } name: { type: "string" } } } } required: { type: "array" items: { type: "array" items: { type: "object" properties: { description: { type: "object" additionalProperties: true } name: { type: "object" additionalProperties: true } } } } } } } } } } } } return_code: { type: "integer" } return_message: { type: "string" } } } }