Product Specification
Gelato products are specified via the Product Object in the Submit Order webhook.
The object is encapsulating all the details necessary to understand the product requested, in form of a Product Model and a list of attributes specified in
the form of a <key>-<value>
pair. Please see the example in the code block.
{
"product": {
"modelUid": "photobook_hard_cover_product",
"desc": "Photobook Hard cover product",
"attributes": [
{
"name": "PaperFormat",
"value": "pb-large",
"properties": [
{
"name": "Size1Mm",
"value": "205.00"
}
]
}
]
}
}
You can find examples of valid product objects in the code section of the Submit Order.
Additional details about the valid Product Models and the valid Attributes and Values for each Product Model will be provided to you by the Gelato team as part of the onboarding process.