action jumpseller_get_products_id_digital_products_json { label: "Retrieve all Product DigitalProducts." provider: jumpseller method: GET path: "/products/{id}/digital_products.json" encoding: json input: { type: "object" properties: { id: { type: "integer" format: "int32" } } required: ["id"] additionalProperties: false } output: { type: "array" items: { 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" } } } } } } }