action jumpseller_post_products_id_digital_products_json { label: "Create a new Product DigitalProduct." provider: jumpseller method: POST path: "/products/{id}/digital_products.json" encoding: json input: { type: "object" properties: { digital_product: { type: "object" properties: { filename: { type: "string" description: "Filename of the digital product (with file extensison)" } url: { type: "string" description: "Public accessible URL with the desired file contents. (LIMIT: 100MB)" } } } } } output: { type: "object" properties: { digital_product: { type: "object" properties: { expiration_seconds: { type: "integer" format: "int32" description: "Time left in seconds before the current private URL expires" } id: { type: "integer" format: "int32" description: "Unique identifier of the digital product" } url: { type: "string" description: "Private URL of the digital product" } } } } } }