action jumpseller_post_products_id_attachments_json { label: "Create a new Product Attachment." provider: jumpseller method: POST path: "/products/{id}/attachments.json" encoding: json input: { type: "object" properties: { attachment: { type: "object" properties: { filename: { type: "string" description: "Filename of the attachment (with file extensison)" } url: { type: "string" description: "Public accessible URL with the desired file contents. (LIMIT: 100MB)" } } } } } 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" } } } } } }