action jumpseller_get_products_id_attachments_json { label: "Retrieve all Product Attachments." provider: jumpseller method: GET path: "/products/{id}/attachments.json" encoding: json input: { type: "object" properties: { id: { type: "integer" format: "int32" } } required: ["id"] additionalProperties: false } output: { type: "array" items: { type: "object" properties: { attachment: { type: "object" properties: { id: { type: "integer" format: "int32" description: "Unique identifier of the attachment" } url: { type: "string" description: "Private URL of the attachment" } } } } } } }