action jumpseller_get_products_id_attachments_attachment_id_json { label: "Retrieve a single Product Attachment." provider: jumpseller method: GET path: "/products/{id}/attachments/{attachment_id}.json" encoding: json input: { type: "object" properties: { attachment_id: { type: "integer" format: "int32" } } required: ["attachment_id"] additionalProperties: false } output: { 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" } } } } } }