Appearance
Advanced orders
There are some products in Merchrocket that are a little special and we give the customer more freedom in the design. That's why we want to make it easier for you to understand them by providing examples and so that you can make use of these options.
Here you will find a list of products of these special products with the listed examples.
Heart puzzle
A heart puzzle consists of the puzzle itself and a metal box in which the puzzle pieces are stored. This metal box is provided with a sticker so that the number of pieces and the contents can be visualized.
We leave it up to the customer whether they want to design the sticker themselves or use Merchrocket's ready-made layout. If they use the layout provided by us, they only need to specify the print file for the puzzle. We will then also use this for the sticker. However, if he also wants to design the sticker himself, then we also expect a second print file.
Enclosed you will find two different calls that deal with these two cases.
Heart puzzle with default sticker
json
{
"externalId": "YOW-7792744444",
"shipping": "STANDARD",
"recipient": {
"name": "Alex Johnson",
"company": "Johnson Enterprises",
"address1": "123 Main Street",
"address2": "Suite 100",
"city": "San Francisco",
"stateCode": "CA",
"stateName": "California",
"countryCode": "US",
"countryName": "United States",
"zip": "94102",
"phone": "555-123-4567",
"email": "alex.johnson@example.com",
"taxNumber": "654321987"
},
"orderItems": [
{
"externalId": "PAY-4627174444",
"quantity": 3,
"name": "Heart Puzzle",
"retailPrice": "10.9",
"variantId": "779901c6-50cb-45a4-8734-baf67a7a79bf",
"placements": [
{
"type": "main",
"technique": "direct_print",
"layers": [
{
"url": "https://www.example.org/example.pdf",
"type": "file",
"position": {
"top": 0,
"left": 0,
"width": 253,
"height": 206
}
}
],
"placement_options": [
{
"name": "unlimited_color",
"value": true
}
]
}
]
}
]
}
Heart puzzle with your own sticker design
json
{
"externalId": "YOW-7792744444",
"shipping": "STANDARD",
"recipient": {
"name": "Alex Johnson",
"company": "Johnson Enterprises",
"address1": "123 Main Street",
"address2": "Suite 100",
"city": "San Francisco",
"stateCode": "CA",
"stateName": "California",
"countryCode": "US",
"countryName": "United States",
"zip": "94102",
"phone": "555-123-4567",
"email": "alex.johnson@example.com",
"taxNumber": "654321987"
},
"orderItems": [
{
"externalId": "PAY-4627174444",
"quantity": 3,
"name": "Heart Puzzle",
"retailPrice": "10.9",
"variantId": "779901c6-50cb-45a4-8734-baf67a7a79bf",
"placements": [
{
"type": "main",
"technique": "direct_print",
"layers": [
{
"url": "https://www.example.org/example.pdf",
"type": "file",
"position": {
"top": 0,
"left": 0,
"width": 253,
"height": 206
}
}
],
"placement_options": [
{
"name": "unlimited_color",
"value": true
}
]
},
{
"type": "sticker",
"technique": "direct_print",
"layers": [
{
"url": "https://www.example.org/sticker.pdf",
"type": "file",
"position": {
"top": 0,
"left": 0,
"width": 134,
"height": 68
}
}
],
"placement_options": [
{
"name": "unlimited_color",
"value": true
}
]
}
]
}
]
}
Endless calendar
The endless calendar is offered with a predefined calendar and in different colors so that the customer does not have to worry about this point. However, the color in which the calendar is to be produced must be specified when ordering. The different colors in which the calendar is offered and how you can access the options are explained here.
You can find out how to transfer the options (color of the calendar) to the system when placing an order in the call below.
Endless calendar in blue
json
{
"externalId": "YOW-7792744444",
"shipping": "STANDARD",
"recipient": {
"name": "Alex Johnson",
"company": "Johnson Enterprises",
"address1": "123 Main Street",
"address2": "Suite 100",
"city": "San Francisco",
"stateCode": "CA",
"stateName": "California",
"countryCode": "US",
"countryName": "United States",
"zip": "94102",
"phone": "555-123-4567",
"email": "alex.johnson@example.com",
"taxNumber": "654321987"
},
"orderItems": [
{
"externalId": "PAY-4627320000",
"quantity": 2,
"name": "Endless calender",
"retailPrice": "29.9",
"variantId": "29872d4a-3a3e-4454-a855-91019d28d261",
"placements": [
{
"type": "main",
"layers": [
{
"url": "https://app.merchrocket.shop/placeholder?w=506&h=349&dpi=200&imgAlign=right,bottom&imgPadding=17.2&imgWidth=34&theme=dark&locale=de_DE",
"type": "file",
"layerOptions": []
}
],
"technique": "direct_print",
"placementOptions": []
}
],
"options": [ {"id": "color_scheme", "value": "light_blue"} ]
}
]
}