action jumpseller_get_products_id_options_option_id_values_json { label: "Retrieve all Product Option Values." provider: jumpseller method: GET path: "/products/{id}/options/{option_id}/values.json" encoding: json input: { type: "object" properties: { id: { type: "integer" format: "int32" } option_id: { type: "integer" format: "int32" } } required: ["id", "option_id"] additionalProperties: false } output: { type: "array" items: { type: "object" properties: { value: { type: "object" properties: { id: { type: "integer" format: "int32" description: "Unique identifier of the product option value" } name: { type: "string" description: "Name of the product option value" } position: { type: "integer" format: "int32" description: "Position of the product option value" } product_option: { type: "object" properties: { option: { type: "object" properties: { id: { type: "integer" format: "int32" description: "Unique identifier of the product option" } name: { type: "string" description: "Name of the product option" } option_type: { type: "string" description: "Type of the product option" enum: ["option", "input", "text", "file"] } position: { type: "integer" format: "int32" description: "Position of the product option" } values: { type: "array" items: { type: "object" additionalProperties: true } } } } } } variants: { type: "array" items: { type: "object" properties: { variant: { type: "object" properties: { id: { type: "integer" format: "int32" description: "Unique identifier of the product" } image: { type: "object" properties: { id: { type: "integer" format: "int32" description: "Unique identifier of the image" } position: { type: "integer" format: "int32" description: "Position of the image" } url: { type: "string" description: "Complete URL of the image" } } } options: { type: "array" items: { type: "object" properties: { name: { type: "object" additionalProperties: true } product_option_id: { type: "object" additionalProperties: true } product_option_position: { type: "object" additionalProperties: true } product_option_value_id: { type: "object" additionalProperties: true } product_value_position: { type: "object" additionalProperties: true } value: { type: "object" additionalProperties: true } } } } price: { type: "number" format: "float" description: "Price of the product" } sku: { type: "string" description: "Stock Keeping Unit of the Product's Variant" } stock: { type: "integer" format: "int32" description: "Quantity in stock for the Product's Variant" } stock_unlimited: { type: "boolean" description: "True if the Product's Variant has unlimited stock" } } } } } } } } } } } }