Introduction
Platforme API enables any e-commerce website to support digital customisation, personalisation, dynamic pricing, product visualisation and production order managing.
Concepts
Before start using Platforme API, there are some important concepts to be conscious of. If you are not familiarized, you recommend you to read the Dev Portal's Concepts section.
Errors
The API returns standard HTTP success or error status codes. For errors, the response includes extra information about what went wrong encoded in the response as JSON.
Status Code | |
---|---|
200 | The request was successful. |
400 | Bad request - Due to an apparent client error (ie: malformed request syntax, invalid input, etc) |
401 | Unauthorized - Similar to 403 Forbidden, but specifically for use when authentication is required and has failed or has not yet been provided. |
403 | Forbidden - The user might not have the necessary permissions for a resource. |
404 | Not Found - The requested resource could not be found. |
500 | Internal Server Error. |
CORS
Platforme API supports cross-origin HTTP requests (aka CORS), meaning that one can call API resources using Javascript from any browser. A note of caution: it’s important to remember that one should never publicly expose API keys or credentials - CORS is mainly useful with unauthenticated endpoints, and there're an handful of endpoints intended for server-to-server scenarios.
Authentication
There are two ways to include authentication in our API requests:
- RIPE Session ID (recommended)
- RIPE Key
RIPE Session ID
RIPE Session ID will allow authenticated RIPE requests but to get a session id we need a Platforme token.
Obtaining a Platforme token
Getting a Platforme token can be done using the browser.
When using the browser, login into Platforme ID and click the tokens button and then "generate" at the top, a new page will load and display your generated Platforme token.
Redeeming a Platforme token (optional)
Optionally we can redeem the token with Platforme ID API to verify that the token is valid and obtain information about the token's account.
Example Request
curl "https://id.platforme.com/api/tokens/redeem?token=token"
Example Response
{
"acl": {
"type": 3,
"acl": [
"account.acl",
"account.me",
"account.show",
"ripe-core-sandbox.*",
"tech-website.ideas",
"tech-website.ideas.create",
"tech-website.pages.deployments",
"tech-website.pages.faq",
"tech-website.pages.glossary",
"tech-website.pages.home",
"tech-website.pages.library",
"tech-website.pages.presentations",
"tech-website.pages.products",
"tech-website.releases",
"tech-website.reps",
"tech-website.requests",
"tech-website.requests.create",
"tech-website.workshops",
"user"
],
"tokens": [
"account.acl",
"account.me",
"account.show",
"ripe-core-sandbox.*",
"tech-website.ideas",
"tech-website.ideas.create",
"tech-website.pages.deployments",
"tech-website.pages.faq",
"tech-website.pages.glossary",
"tech-website.pages.home",
"tech-website.pages.library",
"tech-website.pages.presentations",
"tech-website.pages.products",
"tech-website.releases",
"tech-website.reps",
"tech-website.requests",
"tech-website.requests.create",
"tech-website.workshops",
"user"
]
},
"account": {
"username": "dummy@platforme.com",
"email": "dummy@platforme.com",
"meta": {
"ripe-core-prod": {
"brand_t": [
"dummy"
]
},
"justification": "We need a dummy account for documentation purposes",
"name": "Dummy",
"requester": "joao@platforme.com",
"list": true,
"label": "Viewer (Sandbox)"
}
}
}
HTTP Request
GET https://id.platforme.com/api/tokens/redeem?token=<token>
Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
token | yes | text | null |
The Platforme ID API token. |
Now that we have our Platforme ID Token, we will be using it to obtain a RIPE session id.
Obtaining a RIPE Session ID
In order to obtain our session id we simply need to make a request to RIPE API.
Example Request
curl "https://ripe-core-sbx.platforme.com/api/signin_pid?token=token"
Example Response
{
"sid": "79c6f76bc27e3c426818501f9fae69b2e15e2845ae159934647ddd5f7e77cb86",
"session_id": "79c6f76bc27e3c426818501f9fae69b2e15e2845ae159934647ddd5f7e77cb86",
"username": "dummy@platforme.com",
"name": "dummy@platforme.com",
"email": "dummy@platforme.com",
"tokens": []
}
HTTP Request
GET https://ripe-core-sbx.platforme.com/api/signin_pid?token=<token>
Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
token | yes | text | null |
The Platforme ID API token. |
After obtaining the RIPE session_id
, it should be included as a parameter, provided as the value of "sid" parameter.
RIPE Key
The RIPE Key is only internally provided as an access key. It should not be used by everyone, thus, if you don't have one, please authenticate by RIPE Session ID.
The RIPE Key should be included in the request headers, provided as the value of X-Secret-Key
.
Render Endpoints
Compose
Example Request
curl "https://ripe-core-sbx.platforme.com/api/compose? \
brand=swear& \
model=vyner& \
frame=0& \
p=lining:calf_lining:white& \
p=front:nappa:grey& \
p=side:nappa:navy& \
p=sole:rubber:yellow& \
p=laces:nylon:burnt_orange& \
p=logo:metal:gold& \
p=hardware:metal:gold& \
p=shadow:default:default& \
format=png& \
background=f5f5f5"
Example Response
Example Request
curl "https://ripe-core-sbx.platforme.com/api/compose? \
brand=swear& \
model=vyner& \
frame=top& \
p=lining:calf_lining:white& \
p=front:nappa:grey& \
p=side:nappa:navy& \
p=sole:rubber:yellow& \
p=laces:nylon:burnt_orange& \
p=logo:metal:gold& \
p=hardware:metal:gold& \
initials_profile=gold& \
initials=SW"
Example Response
This endpoint is used to render a frame of a given customization.
HTTP Request
GET https://ripe-core-sbx.platforme.com/api/compose
Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
brand | no | text | null |
The brand's model. |
model | no | text | null |
The model to compose. |
variant | no | text | null |
The variant (or sub-variant) of the specified model . |
product_id | no | numeric | null |
The product's unique identification (ID). |
p | no | text | null |
The configuration of the model, set this parameter for each triplet (part:material:color ). If it is not defined then the default parts are used. |
frame | no | text | 0 |
The frame of the model to be presented. |
cache | no | boolean | true |
If a cached version of the frame should be used if available. |
format | no | text | png |
The format of the image. Many formats are supported, like png , jpeg , webp , or webpl . |
size | no | numeric | 1000 |
The size of the image in pixels. This value applies to both its width and height. |
width | no | numeric | 1000 |
The width of the image in pixels, overrides the size value. |
height | no | numeric | 1000 |
The height of the image in pixels, overrides the size value . |
rotation | no | numeric | null |
The angle in degrees of the rotation to apply on the model. |
crop | no | boolean | false |
If true then the outer blank parts of the image will be removed. This operation changes the size of the image. |
bounding_box | no | numeric list | null |
Two comma separated values for width and height to apply a resize operation on the image. |
algorithm | no | text | source_over |
The blending algorithm to be used. Supports source_over , multiplicative , disjoint_over and disjoint_under . |
background | no | text | #000000 |
The hex value of the background color to be used. If the format is png , webp or sgi then the default background is transparent. |
initials_profile | no | list | null |
The name of the profile to be used. A profile what what defines a premade configuration in a specific product. The configuration can set the values such as the font type, color and size, the initials position and rotation. This supports the use of namespacing. |
initials_x | no | number | null |
Overrides the initials_profile 's position on the x axis. |
initials_y | no | number | null |
Overrides the initials_profile 's position on the y axis. |
initials_width | no | number | null |
Overrides the initials_profile 's width. |
initials_height | no | number | null |
Overrides the initials_profile 's height. |
initials_viewport | no | list | null |
Overrides the initials_profile 's viewport. Viewport is a window (specified by [x, y, width, height] ) that defines a region to be shown with a zoom. It is used to showcase the initials. |
initials_color | no | text | 000000 |
Overrides the initials_profile 's color to be applied to the initials. |
initials_opacity | no | number | null |
Overrides the initials_profile 's opacity to be applied to the initials. This value ranges from 0 to 1. |
initials_align | no | text | null |
Overrides the initials_profile 's orientation of the initials to be applied. This field can be left , right or center . |
initials_vertical | no | text | null |
Overrides the initials_profile 's vertical alignment on the initials. This field can be top , bottom or middle . |
initials_embossing | no | text | null |
Overrides the initials_profile 's embossing type of the initials. The available options vary with each model. |
initials_rotation | no | number | null |
Overrides the initials_profile 's rotation angle, in degrees, to be applied to the initials. |
initials_pattern | no | text | null |
Overrides the initials_profile 's initials pattern, that defines a regular expression to validate the initials. |
initials_exclusion | no | text | null |
Overrides the initials_profile 's initials exclusion. This is a list that defines which parts are excluded from the custumization. |
initials_image_rotation | no | number | null |
Overrides the initials_profile 's rotation angle, in degrees, to be applied to image. |
font_family | no | text | null |
Overrides the initials_profile 's font to be applied on the initials. |
font_weight | no | text | null |
Overrides the initials_profile 's font weight to be applied on the initials. |
font_size | no | text | null |
Overrides the initials_profile 's font size to be applied on the initials. |
font_spacing | no | text | null |
Overrides the initials_profile 's spacing between each letter. |
font_trim | no | boolean | null |
Overrides the initials_profile 's font trim, which defines wether the extra spaces are ignored or not. |
shadow | no | boolean | true |
Overrides the initials_profile 's shadow, which defines if the initials have a shadow. |
shadow_color | no | text | ffffff |
Overrides the initials_profile 's color of the shadow to be used. |
shadow_offset | no | text | null |
Overrides the initials_profile 's offset to be applied on the shadow. |
options | no | text | null |
The composition options, set this parameter for each tuplet (option:value ). Supports quality , dpi , locale and country . |
Video
Example Request
curl "https://ripe-core-sbx.platforme.com/api/video? \
brand=swear& \
model=vyner& \
p=lining:calf_lining:white& \
p=front:nappa:grey& \
p=side:nappa:navy& \
p=sole:rubber:yellow& \
p=laces:nylon:burnt_orange& \
p=logo:metal:gold& \
p=hardware:metal:gold& \
p=shadow:default:default
Example Response
HTTP Request
GET https://ripe-core-sbx.platforme.com/api/video
Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
brand | no | text | null |
The brand's model. |
model | no | text | null |
The model to compose. |
version | no | numeric | null |
The version of the specified model . |
p | no | text | null |
The configuration of the model, set this parameter for each triplet (part:material:color ). |
name | no | text | null |
The name of the video of the model. |
Video Thumbnail
Example Request
curl "https://ripe-core-sbx.platforme.com/api/video/thumbnail? \
brand=swear& \
model=vyner& \
p=lining:calf_lining:white& \
p=front:nappa:grey& \
p=side:nappa:navy& \
p=sole:rubber:yellow& \
p=laces:nylon:burnt_orange& \
p=logo:metal:gold& \
p=hardware:metal:gold& \
p=shadow:default:default
Example Response
HTTP Request
GET https://ripe-core-sbx.platforme.com/api/video/thumbnail
Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
brand | no | text | null |
The brand's model. |
model | no | text | null |
The model to compose. |
version | no | numeric | null |
The version of the specified model . |
p | no | text | null |
The configuration of the model, set this parameter for each triplet (part:material:color ). |
name | no | text | null |
The name of the video of the model. |
Mask
Example Request
curl "https://ripe-core-sbx.platforme.com/api/mask?brand=swear&model=vyner&part=side"
Example Response
This endpoint returns a masked version of the model, where the parts have a black overlay. It can be used to highlight a specific part.
HTTP Request
GET https://ripe-core-sbx.platforme.com/api/mask
Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
model | yes | text | The model to compose. | |
brand | no | text | null |
The brand's model. |
part | no | text | null |
The part to be masked. If not defined then all masks are shown. |
frame | no | text | 0 |
The frame of the model to be presented. |
format | no | text | png |
The format of the image, one of png , jpeg , or webp . |
size | no | numeric | model size | The size of the image in pixels. This value applies to both its width and height. Defaults to the model size in its specification. |
Swatches
curl "https://ripe-core-sbx.platforme.com/api/swatch/swear/nappa/red.png"
This endpoint gets the swatch of a material on a particular color.
HTTP Request
GET https://ripe-core-sbx.platforme.com/api/swatch/<text:brand>/<text:material>/<text:color>.png
Path Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
brand | yes | text | The brand's name that the material belongs to. | |
material | yes | text | The desired material to render the swatch. | |
color | yes | text | The color of the material to render the swatch. |
GET Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
model | no | text | null |
The model's name that the material belongs to. |
version | no | number | latest | The model's build's version. |
part | no | text | null |
The part the material belongs to. |
retina | no | boolean | false |
If true, will render the swatch on retina resolution (2x the source resolution). |
variant | no | text | null |
The model's variant. |
Config Endpoints
Info
The Info endpoint returns the customization information for the queryable context.
Using this API one can resolve a customization by:
product_id
dku
sku
within adomain
- the base customization of a
model
's variant
Example Request
curl "https://ripe-core-sbx.platforme.com/api/config/info?\
brand=swear&\
model=vyner&\
p=lining:calf_lining:white&\
p=front:nappa:grey&\
p=side:nappa:navy&\
p=sole:rubber:yellow&\
p=laces:nylon:burnt_orange&\
p=logo:metal:gold&\
p=hardware:metal:gold&\
p=shadow:default:default"
Example Response
{
"brand": "swear",
"model": "vyner",
"version": "186",
"product_id": null,
"variant": null,
"parts": {
"lining": {
"material": "calf_lining",
"color": "white"
},
"front": {
"material": "nappa",
"color": "grey"
},
"side": {
"material": "nappa",
"color": "navy"
},
"sole": {
"material": "rubber",
"color": "yellow"
},
"laces": {
"material": "nylon",
"color": "burnt_orange"
},
"logo": {
"material": "metal",
"color": "gold"
},
"hardware": {
"material": "metal",
"color": "gold"
},
"shadow": {
"material": "default",
"color": "default"
}
},
"hash": "520683e3be7c71fbe71fba7116610b39",
"dku": "swear.vyner.186.3:5.0:1.0:3.0:3.4:6.0:6.4:0:1.5:0:0",
"query": "brand=swear&model=vyner&version=186&p=front:nappa:grey&p=hardware:metal:gold&p=laces:nylon:burnt_orange&p=lining:calf_lining:white&p=logo:metal:gold&p=shadow:default:default&p=side:nappa:navy&p=sole:rubber:yellow"
}
HTTP Request
GET https://ripe-core-sbx.platforme.com/api/config/info
Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
brand | no | text | null |
The model's brand. |
model | no | text | null |
The model's name. |
version | no | numeric | latest | The version for the specified model. |
variant | no | text | null |
The variant (or sub-variant) of the specified model. |
initials | no | text | null |
The initials value used to personalize the model. |
engraving | no | text | null |
The properties of the personalization, with the format property_name1:property_type1.property_name2:property_type2 (recommended) or property_name1.property_name2 . |
initials_extra | no | dictionary | null |
An object representing personalization (initials and engraving) for each personalization group. |
p | no | list of text | null |
The configuration of the model, described as a set of triplets in the form of part:material:color . |
size | no | numeric | null |
The model's size. |
gender | no | text | null |
The model's gender. |
meta | no | text | null |
The model's metadata. |
product_id | no | numeric | null |
The product's unique identification (ID) assigned to a particular configuration. |
sku | no | text | null |
The Stock Keeping Unit (SKU) assigned to a particular configuration. |
dku | no | text | null |
The Dynamic Keeping Unit (DKU) that represents a particular configuration. |
domain | no | text | brand | The SKU domain (falls back to brand value). |
guess | no | boolean | null |
A flag normally used to guess the brand and version if those parameters are not provided. |
params | no | boolean | null |
The extra meta information associated with the model. |
Price
Example Request
curl "https://ripe-core-sbx.platforme.com/api/config/price?\
brand=swear&\
model=vyner&\
p=side:nappa:white&\
p=hardware:metal:silver"
Example Response
{
"components": {
"side": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "EUR",
"hs_code": 6403999065,
"notes": [
"Nappa Leather"
],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": "EU-EUR",
"cites": false
},
"hardware": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "EUR",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": "EU-EUR",
"cites": false
}
},
"total": {
"price_final": 358.01,
"price_taxes": 331.67,
"vat": 0.0,
"ddp": 26.34,
"ddp_percent": 7.9426272,
"vat_rate": 0.0,
"price": 331.67,
"currency": "EUR",
"country": "US",
"hs_codes": [
6403999065
],
"hs_code_priority": 1,
"shipping": 0.0,
"notes": [
"Nappa Leather"
],
"diag": {
"no_round": {
"price_final": 358.01,
"price_taxes": 331.67,
"price": 331.67,
"vat": 0.0,
"ddp": 26.34
},
"patch": true,
"round_value": true,
"is_vat": false,
"is_ddp": true,
"is_european": false,
"is_rounded": false,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": "EU-EUR"
},
"cites": false
}
}
The price information of a customized model according to all provided parameters, such as the presence of initials, each part material or even the client's country code. Besides the total product price, each component's price is also calculated.
HTTP Request
GET https://ripe-core-sbx.platforme.com/api/config/price
Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
brand | no | text | null |
The model's brand. |
model | no | text | null |
The model's name. |
variant | no | text | null |
The variant (or sub-variant) of the specified model. |
version | no | numeric | latest | The version for the specified model. |
cites | no | boolean | null |
The flag that specifies if the price should have the CITES (Convention on International Trade in Endangered Species) |
product_id | no | numeric | null |
The product's unique identification (ID). |
currency | no | text | EUR |
The ISO 4217 currency code in which the price shall be calculated with. |
country | no | text | US |
The ISO 3166-2 code of the country to which the product is going to be purchased. |
initials | no | text | null |
The initials value used to personalize the model. |
letters | no | text | null |
The initials value used to personalize the model. Similar to the initials parameter. |
engraving | no | text | null |
The properties of the personalization, with the format property_name1:property_type1.property_name2:property_type2 (recommended) or property_name1.property_name2 . |
embossing | no | text | null |
The properties of the personalization, with the format property_name1:property_type1.property_name2:property_type2 (recommended) or property_name1.property_name2 . Similar to the engraving parameter. |
p | no | list of text | null |
The configuration of the model, described as a set of triplets in the form of part:material:color . |
Prices
Example Request
curl "https://ripe-core-sbx.platforme.com/api/config/prices?\
brand=swear&\
model=vyner&\
p0=side:nappa:white&\
p1=hardware:metal:silver&\
initials0=AA&\
engraving0=metal_gold:font"
Example Response
[
{
"components": {
"side": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "EUR",
"hs_code": 6403999065,
"notes": [
"Nappa Leather"
],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": "EU-EUR",
"cites": false
},
"engraving": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "EUR",
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": "EU-EUR"
}
},
"total": {
"price_final": 358.01,
"price_taxes": 331.67,
"vat": 0.0,
"ddp": 26.34,
"ddp_percent": 7.9426272,
"vat_rate": 0.0,
"price": 331.67,
"currency": "EUR",
"country": "US",
"hs_codes": [
6403999065,
null
],
"hs_code_priority": -1,
"shipping": 0.0,
"notes": [
"Nappa Leather"
],
"diag": {
"no_round": {
"price_final": 358.01,
"price_taxes": 331.67,
"price": 331.67,
"vat": 0.0,
"ddp": 26.34
},
"patch": true,
"round_value": true,
"is_vat": false,
"is_ddp": true,
"is_european": false,
"is_rounded": false,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": "EU-EUR"
},
"cites": false
}
},
{
"components": {
"hardware": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "EUR",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": "EU-EUR",
"cites": false
}
},
"total": {
"price_final": 169.17,
"price_taxes": 165.83,
"vat": 0.0,
"ddp": 3.34,
"ddp_percent": 2.0128,
"vat_rate": 0.0,
"price": 165.83,
"currency": "EUR",
"country": "US",
"hs_codes": [
6403999065
],
"hs_code_priority": 1,
"shipping": 0.0,
"notes": [],
"diag": {
"no_round": {
"price_final": 169.17,
"price_taxes": 165.83,
"price": 165.83,
"vat": 0.0,
"ddp": 3.34
},
"patch": true,
"round_value": true,
"is_vat": false,
"is_ddp": true,
"is_european": false,
"is_rounded": false,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": "EU-EUR"
},
"cites": false
}
}
]
The price information for each part of a customized model according to all provided parameters, such as the presence of initials, each part material or even the client's country code. The total product price is returned for each part of the model, instead of the total price of the product, as in the endpoint Price.
HTTP Request
GET https://ripe-core-sbx.platforme.com/api/config/prices
Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
brand | no | text | null |
The model's brand. |
model | no | text | null |
The model's name. |
variant | no | text | null |
The variant (or sub-variant) of the specified model. |
version | no | numeric | latest | The version for the specified model. |
cites | no | boolean | null |
The flag that specifies if the price should have the CITES (Convention on International Trade in Endangered Species) |
product_id | no | numeric | null |
The product's unique identification (ID). |
currency | no | text | EUR |
The ISO 4217 currency code in which the price shall be calculated with. |
country | no | text | US |
The ISO 3166-2 code of the country to which the product is going to be purchased. |
initials |
no | text | null |
The initials value used to personalize the model. There can be several initials parameters, each parameter must have an index, for example initials0 , which will match with the respective engraving and p with the same index. |
letters |
no | text | null |
The initials value used to personalize the model. Similar to the initials parameter. |
engraving |
no | text | null |
The properties of the personalization, with the format property_name1:property_type1.property_name2:property_type2 (recommended) or property_name1.property_name2 . There can be several engraving parameters, each parameter must have an index, for example engraving0 , which will match with the respective initials and p with the same index. |
embossing |
no | text | null |
The properties of the personalization, with the format property_name1:property_type1.property_name2:property_type2 (recommended) or property_name1.property_name2 . Similar to the engraving parameter. |
p |
no | list of text | null |
The configuration of the model, described as a set of triplets in the form of part:material:color . There can be several p parameters, each parameter must have an index, for example p0 , which will match with the respective initials and engraving with the same index. |
Availability
Example Request
curl "https://ripe-core-sbx.platforme.com/api/config/availability?\
brand=swear&\
model=vyner&\
product_id=11221602&\
p=front:nappa:white&\
p=side:nappa:white&\
p=hardware:metal:silver&\
p=laces:nylon:white&\
p=lining:calf_lining:white&\
p=sole:rubber:white&\
p=shadow:default:default"
Example Response
{
"components": {
"front": {
"delivery": 12,
"quantity": 1,
"rule_id": 27166,
"rule_count": 5,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "EUR",
"hs_code": 6403999065,
"notes": [
"Nappa Leather"
],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": "EU-EUR",
"cites": false
},
"side": {
"delivery": 12,
"quantity": 1,
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "EUR",
"hs_code": 6403999065,
"notes": [
"Nappa Leather"
],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": "EU-EUR",
"cites": false
},
"hardware": {
"delivery": 12,
"quantity": 1,
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "EUR",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": "EU-EUR",
"cites": false
},
"laces": {
"delivery": 12,
"quantity": 1,
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "EUR",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": "EU-EUR",
"cites": false
},
"lining": {
"delivery": 12,
"quantity": 1,
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "EUR",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": "EU-EUR",
"cites": false
},
"sole": {
"delivery": 12,
"quantity": 1,
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "EUR",
"hs_code": 6403999065,
"notes": [
"Rubber"
],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": "EU-EUR",
"cites": false
},
"shadow": {
"delivery": 12,
"quantity": 1,
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "EUR",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": "EU-EUR",
"cites": false
}
},
"total": {
"delivery": 12,
"quantity": 1,
"price_final": 1377.36,
"price_taxes": 1160.83,
"vat": 0.0,
"ddp": 216.53,
"ddp_percent": 18.6528544,
"vat_rate": 0.0,
"price": 1160.83,
"currency": "EUR",
"country": "US",
"hs_codes": [
6403999065
],
"hs_code_priority": 1,
"shipping": 0.0,
"notes": [
"Rubber",
"Nappa Leather"
],
"diag": {
"no_round": {
"price_final": 1377.36,
"price_taxes": 1160.83,
"price": 1160.83,
"vat": 0.0,
"ddp": 216.53
},
"patch": true,
"round_value": true,
"is_vat": false,
"is_ddp": true,
"is_european": false,
"is_rounded": false,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": "EU-EUR"
},
"cites": false
},
"info": {
"brand": "swear",
"model": "vyner",
"product_id": 12212972,
"parts": {
"front": {
"material": "nappa",
"color": "white"
},
"side": {
"material": "nappa",
"color": "white"
},
"hardware": {
"material": "metal",
"color": "silver"
},
"laces": {
"material": "nylon",
"color": "white"
},
"lining": {
"material": "calf_lining",
"color": "white"
},
"sole": {
"material": "rubber",
"color": "white"
},
"shadow": {
"material": "default",
"color": "default"
}
},
"hash": "63477738dec39f87397f18b65df2f58f"
}
}
Get the stock availability of a given model according to its configuration and availability rules. For instance, check if a customized model is available for a given country/flag.
Meaning if a country/flag is specified the availability will be calculated accordingly: for example, some exotic materials might not be allowed under a country's law or when the flag is set to an arbitrary value, ie vegan
.
The response also list the availability of each component passed as parameter, since there might be cases where some of them are not available.
The pricing
parameter should be set to false whether it is not desirable to get any pricing information on the response.
HTTP Request
GET https://ripe-core-sbx.platforme.com/api/config/availability
Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
brand | no | text | null |
The model's brand. |
model | no | text | null |
The model's name. |
variant | no | text | null |
The variant (or sub-variant) of the specified model. |
version | no | numeric | latest | The version for the specified model. |
product_id | no | numeric | null |
The product's unique identification (ID). |
country | no | text | US |
The ISO 3166-2 code of the country to which the product is going to be purchased. |
flag | no | text | null |
The flag value, which is used to identify arbitrary contexts (ie: seasonal promo, special event, among others) |
initials | no | text | null |
The initials value used to personalize the model. |
letters | no | text | null |
The initials value used to personalize the model. Similar to the initials parameter. |
engraving | no | text | null |
The properties of the personalization, with the format property_name1:property_type1.property_name2:property_type2 (recommended) or property_name1.property_name2 . |
embossing | no | text | null |
The properties of the personalization, with the format property_name1:property_type1.property_name2:property_type2 (recommended) or property_name1.property_name2 . Similar to the engraving parameter. |
pricing | no | boolean | true |
Defines if the pricing information appears on the response. |
validate | no | boolean | false |
If the product configuration is to be validated. |
p | no | list of text | null |
The configuration of the model, described as a set of triplets in the form of part:material:color . |
SKU
A SKU (Stock Keeping Unity) is a code assigned to a product to identify the price, product options and the manufacturer.
This endpoint resolves a customization defined by its query part to a mapped SKU string.
The mapping rules that define this mapping process are defined at the Platforme's back-end.
Example Request
curl "https://ripe-core-sbx.platforme.com/api/config/sku?\
brand=swear&\
model=vyner&\
p=front:nappa:white&\
p=hardware:metal:silver&\
p=laces:nylon:white&\
p=lining:calf_lining:white&\
p=logo:metal:silver&\
p=shadow:default:default&\
p=side:nappa:white&\
p=sole:rubber:white"
Example Response
{
"brand": "swear",
"model": "vyner",
"product_id": null,
"variant": null,
"parts": {
"front": {
"material": "nappa",
"color": "white"
},
"hardware": {
"material": "metal",
"color": "silver"
},
"laces": {
"material": "nylon",
"color": "white"
},
"lining": {
"material": "calf_lining",
"color": "white"
},
"logo": {
"material": "metal",
"color": "silver"
},
"shadow": {
"material": "default",
"color": "default"
},
"side": {
"material": "nappa",
"color": "white"
},
"sole": {
"material": "rubber",
"color": "white"
}
},
"initials": null,
"engraving": null,
"initials_extra": null,
"size": null,
"gender": null,
"sku": "teste2"
}
HTTP Request
GET https://ripe-core-sbx.platforme.com/api/config/sku
Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
brand | no | text | null |
The model's brand. |
model | no | text | null |
The model's name. |
variant | no | text | null |
The variant (or sub-variant) of the specified model. |
initials | no | text | null |
The initials value used to personalize the model. |
engraving | no | text | null |
The properties of the personalization, with the format property_name1:property_type1.property_name2:property_type2 (recommended) or property_name1.property_name2 . |
initials_extra | no | text | null |
The initials and properties of the personalization, with the format group_name1:initials_1:property_type1.group_name2:initials_2:property_type2 . |
product_id | no | numeric | null |
The product's unique identification (ID). |
size | no | numeric | null |
The product's size. |
gender | no | text | null |
The model's gender. |
domain | no | text | brand | The SKU domain (falls back to brand value). |
p | no | list of text | null |
The configuration of the model, described as a set of triplets in the form of part:material:color . |
Resolve
Example Request
curl "https://ripe-core-sbx.platforme.com/api/config/resolve/271828"
Example Response
{
"brand": "swear",
"model": "vyner",
"variant": null,
"description": "SWEAR Vyner",
"observations": null,
"gender": "male",
"product_id": 271828,
"parts": null,
"extras_m": {},
"meta": {}
}
Get the configuration of a product identified by its unique product ID.
HTTP Request
GET https://ripe-core-sbx.platforme.com/api/config/resolve/<int:product_id>
Path Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
product_id | yes | numeric | The product's unique identification (ID). |
Defaults
Example Request
curl "https://ripe-core-sbx.platforme.com/api/config/defaults/vyner"
Example Response
{
"model": "vyner",
"parts": {
"lining": {
"material": "calf_lining",
"color": "white",
"face": "top"
},
"front": {
"material": "nappa",
"color": "white",
"face": "side"
},
"side": {
"material": "nappa",
"color": "white",
"face": "side",
"frame": 0
},
"sole": {
"material": "rubber",
"color": "white",
"face": "side"
},
"laces": {
"material": "nylon",
"color": "white",
"face": "top"
},
"patch": {
"hidden": true,
"optional": true
},
"eyelets": {
"material": "metal",
"color": "silver",
"face": "side",
"frame": 0
},
"metal_toe_cap": {
"optional": true,
"face": "top"
},
"shadow": {
"hidden": true,
"material": "default",
"color": "default"
}
}
}
Get the default parts for the model give.
HTTP Request
GET https://ripe-core-sbx.platforme.com/api/config/defaults/<text:model>
Path Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
model | yes | text | The model's name. |
Resources
Info
Field | Type | Description |
---|---|---|
brand | text | Product's brand. |
name | text | Product's name. |
variant | text | Product's variant. |
parts | dictionary | Specific customization (part, material, color). |
hash | text | Config's hash. |
Price
Field | Type | Description |
---|---|---|
total | dictionary | Total pricing information (see Price Total). |
components | dictionary | Pricing information per customization component (see Price Component). |
Price Total
Field | Type | Description |
---|---|---|
price | number | Base price result. |
price_final | number | Base price + VAT + DDP. |
price_taxes | number | Base price + VAT. |
vat | number | VAT value. |
vat_rate | number | VAT rate. |
ddp | number | DDP value. |
ddp_percent | number | DDP percentage. |
currency | text | Currency used for pricing calculation (ISO 4217 ). |
country | text | Country used for pricing calculation (ISO 3166-2 ). |
shipping | number | Shipping value. |
hs_codes | list of numbers | Complete set of HS codes. |
hs_code_priority | number | The HS code priority. |
diag | dictionary | Complementary diagnosis information. |
notes | dictionary | Complementary information. |
Price Component
Field | Type | Description |
---|---|---|
price | number | Price value (could be rounded). |
price_original | number | Base price. |
price_taxes | number | Base price + vat. |
fixed_price | boolean | Is fixed price. |
vat_included | boolean | Is vat included. |
vat | number | VAT value. |
vat_rate | number | VAT rate. |
ddp_included | boolean | Is ddp included. |
hs_code | number | HS code value. |
hs_code_priority | number | HS code priority. |
round_price | boolean | Is the price rounded. |
currency | text | Currency used for pricing calculation (ISO 4217 ). |
exchanged | boolean | Is the price exchanged. |
notes | dictionary | Complementary information. |
Availability
Field | Type | Description |
---|---|---|
brand | text | Product's brand. |
name | text | Product's name. |
variant | text | Product's variant. |
product_id | number | Product's id. |
parts | dictionary | Specific customization (part, material, color). |
hash | text | Customization's hash. |
total | dictionary | Total pricing information (see Availability Total). |
components | dictionary | Pricing information per customization component (see Availability Component). |
Availability Total
Field | Type | Description |
---|---|---|
price | number | Base price result. |
price_final | number | Base price + vat + ddp. |
price_taxes | number | Base price + vat. |
vat | number | VAT value. |
vat_rate | number | VAT rate. |
ddp | number | DDP value. |
ddp_percent | number | DDP percentage. |
currency | text | Currency used for pricing calculation (ISO 4217 ). |
country | text | Country used for pricing calculation (ISO 3166-2 ). |
shipping | number | Shipping value. |
hs_codes | list of numbers | Complete set of HS codes. |
hs_code_priority | number | The HS code priority. |
diag | dictionary | Complementary diagnosis information. |
notes | dictionary | Complementary information. |
Availability Component
Field | Type | Description |
---|---|---|
price | number | Price value (could be rounded). |
price_original | number | Base price. |
price_taxes | number | Base price + VAT. |
fixed_price | boolean | Is fixed price. |
vat_included | boolean | Is vat included. |
vat | number | VAT value. |
vat_rate | number | VAT rate. |
ddp_included | boolean | Is DDP included. |
hs_code | number | HS code value. |
hs_code_priority | number | HS code priority. |
round_price | boolean | Is the price rounded. |
currency | text | Currency used for pricing calculation (ISO 4217 ). |
exchanged | boolean | Is the price exchanged. |
notes | dictionary | Complementary information. |
quantity | number | Number of raw material in stock. |
SKU
Field | Type | Description |
---|---|---|
brand | text | Product's brand. |
name | text | Product's name. |
variant | text | Product's variant. |
product_id | number | Product's id. |
parts | dictionary | Specific customization (part, material, color). |
sku | text | SKU value. |
SKU Endpoints
List
The list endpoint returns the existing SKUs according to the given parameters. If no parameters are given, a maximum of 10 SKUs will be returned.
Query support can be consulted here.
Example Request
curl "https://ripe-core-sbx.platforme.com/api/skus?filters[]=domain:eq:dummy" \
-H "X-Secret-Key: $RIPE_KEY"
Example Response
[
{
"_id": "5e84bcfc85d32604ca51a363",
"id": 153976,
"identifier": "6d1a5bab-acc3-4f8c-a7c8-03cdb7ce152a",
"domain": "dummy",
"spec": {
"brand": "dummy",
"model": "dummy",
"parts": {
"piping": {
"material": "leather_dmy",
"color": "black"
},
"side": {
"material": "leather_dmy",
"color": "black"
},
"top0_bottom": {
"material": "leather_dmy",
"color": "black"
},
"shadow": {
"material": "default",
"color": "default"
}
}
},
"enabled": false,
"description": null,
"meta": {},
"brand_t": null,
"retailer_t": null,
"vendor_t": null,
"hash": "5cd82b0b122e1678cf8994fda9b03659",
"created": 1585757436,
"modified": 1630670807
},
{
"_id": "5dfcad058727f6df6545228f",
"id": 114894,
"identifier": "fd458150-2804-4a02-9840-26c9c1ba65b7",
"domain": "dummy",
"spec": {
"brand": "dummy",
"model": "dummy",
"parts": {
"piping": {
"material": "leather_dmy",
"color": "black"
},
"side": {
"material": "leather_dmy",
"color": "black"
},
"top0_bottom": {
"material": "leather_dmy",
"color": "black"
},
"shadow": {
"material": "default",
"color": "default"
}
}
},
"enabled": false,
"description": null,
"meta": {},
"brand_t": null,
"retailer_t": null,
"vendor_t": null,
"hash": "5cd82b0b122e1678cf8994fda9b03659",
"created": 1576840453,
"modified": 1630670807
},
{
"_id": "5dfba8783d01d2a1e545215f",
"id": 114837,
"identifier": "7529c424-2276-46dd-90a5-fb74efbe7554",
"domain": "dummy",
"spec": {
"brand": "dummy",
"model": "dummy",
"parts": {
"piping": {
"material": "leather_dmy",
"color": "black"
},
"side": {
"material": "leather_dmy",
"color": "black"
},
"top0_bottom": {
"material": "leather_dmy",
"color": "black"
},
"shadow": {
"material": "default",
"color": "default"
}
}
},
"enabled": false,
"description": null,
"meta": {},
"brand_t": null,
"retailer_t": null,
"vendor_t": null,
"hash": "5cd82b0b122e1678cf8994fda9b03659",
"created": 1576773752,
"modified": 1630670807
},
{
"_id": "5dfba88547a0976b21452398",
"id": 114838,
"identifier": "c030f298-69fa-4db2-abce-a51619e6240d",
"domain": "dummy",
"spec": {
"brand": "dummy",
"model": "dummy",
"parts": {
"piping": {
"material": "leather_dmy",
"color": "black"
},
"side": {
"material": "leather_dmy",
"color": "black"
},
"top0_bottom": {
"material": "leather_dmy",
"color": "black"
},
"shadow": {
"material": "default",
"color": "default"
}
}
},
"enabled": false,
"description": null,
"meta": {},
"brand_t": null,
"retailer_t": null,
"vendor_t": null,
"hash": "5cd82b0b122e1678cf8994fda9b03659",
"created": 1576773765,
"modified": 1630670807
},
{
"_id": "5dfca84a4e8056fcc1452446",
"id": 114888,
"identifier": "c968aaff-8505-437f-b290-2413e08ac528",
"domain": "dummy",
"spec": {
"brand": "dummy",
"model": "dummy",
"parts": {
"piping": {
"material": "leather_dmy",
"color": "black"
},
"side": {
"material": "leather_dmy",
"color": "black"
},
"top0_bottom": {
"material": "leather_dmy",
"color": "black"
},
"shadow": {
"material": "default",
"color": "default"
}
}
},
"enabled": false,
"description": null,
"meta": {},
"brand_t": null,
"retailer_t": null,
"vendor_t": null,
"hash": "5cd82b0b122e1678cf8994fda9b03659",
"created": 1576839242,
"modified": 1630670807
},
{
"_id": "5e84bcdb821e60837751a65c",
"id": 153973,
"identifier": "87d2e034-7a32-44cf-b8f6-0d6403c82d06",
"domain": "dummy",
"spec": {
"brand": "dummy",
"model": "dummy",
"parts": {
"piping": {
"material": "leather_dmy",
"color": "black"
},
"side": {
"material": "leather_dmy",
"color": "black"
},
"top0_bottom": {
"material": "leather_dmy",
"color": "black"
},
"shadow": {
"material": "default",
"color": "default"
}
}
},
"enabled": false,
"description": null,
"meta": {},
"brand_t": null,
"retailer_t": null,
"vendor_t": null,
"hash": "5cd82b0b122e1678cf8994fda9b03659",
"created": 1585757403,
"modified": 1630670807
},
{
"_id": "5dfbabc88727f6df654521fd",
"id": 114842,
"identifier": "e1c51305-439d-4395-b531-5e87c83d42ba",
"domain": "dummy",
"spec": {
"brand": "dummy",
"model": "dummy",
"parts": {
"piping": {
"material": "leather_dmy",
"color": "black"
},
"side": {
"material": "leather_dmy",
"color": "black"
},
"top0_bottom": {
"material": "leather_dmy",
"color": "black"
},
"shadow": {
"material": "default",
"color": "default"
}
}
},
"enabled": false,
"description": null,
"meta": {},
"brand_t": null,
"retailer_t": null,
"vendor_t": null,
"hash": "5cd82b0b122e1678cf8994fda9b03659",
"created": 1576774600,
"modified": 1630670807
},
{
"_id": "5e84be0385d32604ca51a374",
"id": 153983,
"identifier": "98f4450d-2b5c-4d53-821a-02b9b1ff28f2",
"domain": "dummy",
"spec": {
"brand": "dummy",
"model": "dummy",
"parts": {
"piping": {
"material": "leather_dmy",
"color": "black"
},
"side": {
"material": "leather_dmy",
"color": "black"
},
"top0_bottom": {
"material": "leather_dmy",
"color": "black"
},
"shadow": {
"material": "default",
"color": "default"
}
}
},
"enabled": false,
"description": null,
"meta": {},
"brand_t": null,
"retailer_t": null,
"vendor_t": null,
"hash": "5cd82b0b122e1678cf8994fda9b03659",
"created": 1585757699,
"modified": 1630670807
},
{
"_id": "5e84be12821e60837751a674",
"id": 153984,
"identifier": "4879d988-b114-4a5f-995a-3a223b1af08b",
"domain": "dummy",
"spec": {
"brand": "dummy",
"model": "dummy",
"parts": {
"piping": {
"material": "leather_dmy",
"color": "black"
},
"side": {
"material": "leather_dmy",
"color": "black"
},
"top0_bottom": {
"material": "leather_dmy",
"color": "black"
},
"shadow": {
"material": "default",
"color": "default"
}
}
},
"enabled": false,
"description": null,
"meta": {},
"brand_t": null,
"retailer_t": null,
"vendor_t": null,
"hash": "5cd82b0b122e1678cf8994fda9b03659",
"created": 1585757714,
"modified": 1630670807
},
{
"_id": "5dfba8693d01d2a1e545215d",
"id": 114834,
"identifier": "625ae7d7-94f9-46d7-83d7-7d625b34cd67",
"domain": "dummy",
"spec": {
"brand": "dummy",
"model": "dummy",
"parts": {
"piping": {
"material": "leather_dmy",
"color": "black"
},
"side": {
"material": "leather_dmy",
"color": "black"
},
"top0_bottom": {
"material": "leather_dmy",
"color": "black"
},
"shadow": {
"material": "default",
"color": "default"
}
}
},
"enabled": false,
"description": null,
"meta": {},
"brand_t": null,
"retailer_t": null,
"vendor_t": null,
"hash": "5cd82b0b122e1678cf8994fda9b03659",
"created": 1576773737,
"modified": 1630670807
}
]
HTTP Request
GET https://ripe-core-sbx.platforme.com/api/skus
Header Fields
Field | Mandatory | Type | Default | Description |
---|---|---|---|---|
X-Secret-Key | yes | text | The X-Secret-Key to authenticate the request. |
Parameters
This request receives 2 parameters: filter_operator
and filters
. If filters
is defined but not filter_operator
, its default value will be $and
.
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
filter_operator | no | text | $and |
The logic operator that unites all the options given in filters . |
filters | no | text | null |
The filters that will be applied to the SKUs query. Must have the structure <parameter>:<operator>:<value> . More than one filter can be given to the query, and their application together is based on the filter_operator given. |
sid | no | text | The RIPE Session ID to authenticate the request. |
Filter Operator Values
Value | Description |
---|---|
$and | The results given must comply with all the filters. |
$or | The results given must comply with at least on of the filters. |
Filters Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
identifier | no | text | null |
The SKU string that identifies an unique specification inside a certain domain. |
hash | no | text | null |
The hash value that is used to reverse resolve the SKU value. |
domain | no | text | null |
The string value used to separate resolution of SKUs so that no collisions occur between identifiers from different domains. |
Create
Creates a mapping between SKU within a domain to a customization.
This API functions on an upsert basis, meaning that either creates or on the basis of preceding existance updates.
Example Request
curl "https://ripe-core-sbx.platforme.com/api/skus" \
-H "Content-Type: application/json" \
-H "X-Secret-Key: $RIPE_KEY" \
-d '{
"domain": "swear",
"identifier": "3a7df9c3-f9eb-42fd-a699-12f98be1666c",
"spec": {
"brand": "swear",
"model": "vyner",
"parts": {
"lining": {
"color": "white",
"material": "calf_lining"
},
"sole": {
"color": "red",
"material": "rubber"
},
"hardware": {
"color": "silver",
"material": "metal"
},
"laces": {
"color": "white",
"material": "nylon"
},
"front": {
"color": "white",
"material": "nappa"
},
"logo": {
"color": "silver",
"material": "metal"
},
"shadow": {
"color": "default",
"material": "default"
},
"side": {
"color": "white",
"material": "nappa"
}
}
}
}'
Example Response
{
"_id": "6598259ced44d3f74baaf83a",
"id": 273342,
"domain": "swear",
"identifier": "3a7df9c3-f9eb-42fd-a699-12f98be1666c",
"spec": {
"brand": "swear",
"model": "vyner",
"parts": {
"lining": {
"color": "white",
"material": "calf_lining"
},
"sole": {
"color": "red",
"material": "rubber"
},
"hardware": {
"color": "silver",
"material": "metal"
},
"laces": {
"color": "white",
"material": "nylon"
},
"front": {
"color": "white",
"material": "nappa"
},
"logo": {
"color": "silver",
"material": "metal"
},
"shadow": {
"color": "default",
"material": "default"
},
"side": {
"color": "white",
"material": "nappa"
}
}
},
"enabled": true,
"description": null,
"meta": {},
"brand_t": null,
"retailer_t": null,
"vendor_t": null,
"hash": "1251eade274c0d89e4410a7082d2766f",
"created": 1704469916,
"modified": 1704469916
}
HTTP Request
POST https://ripe-core-sbx.platforme.com/api/skus
Header Fields
Field | Mandatory | Type | Default | Description |
---|---|---|---|---|
X-Secret-Key | yes | text | The X-Secret-Key to authenticate the request. |
Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
sid | no | text | The RIPE Session ID to authenticate the request. |
POST Body
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
identifier | yes | text | The model's brand. | |
domain | yes | text | The model's name. | |
spec | yes | text | The object describing the product. See Specification. |
Show
Returns the SKU with the given ID. If the SKU does not exist, returns a Not Found Exception (404) error.
Example Request
curl "https://ripe-core-sbx.platforme.com/api/skus/1" \
-H "X-Secret-Key: $RIPE_KEY"
Example Response
{
"_id": "6598259ced44d3f74baaf83d",
"id": 273343,
"domain": "dummy",
"identifier": "3a7df9c3-f9eb-42fd-a699-12f98be1666c",
"spec": {
"brand": "dummy",
"model": "cube",
"parts": {
"lining": {
"color": "white",
"material": "calf_lining"
},
"sole": {
"color": "red",
"material": "rubber"
},
"hardware": {
"color": "silver",
"material": "metal"
},
"laces": {
"color": "white",
"material": "nylon"
},
"front": {
"color": "white",
"material": "nappa"
},
"logo": {
"color": "silver",
"material": "metal"
},
"shadow": {
"color": "default",
"material": "default"
},
"side": {
"color": "white",
"material": "nappa"
}
}
},
"enabled": true,
"description": null,
"meta": {},
"brand_t": null,
"retailer_t": null,
"vendor_t": null,
"hash": "fd066f9810ad2817df83d0989ac817b6",
"created": 1704469916,
"modified": 1704469916
}
HTTP Request
GET https://ripe-core-sbx.platforme.com/api/skus/<number:id>
Header Fields
Field | Mandatory | Type | Default | Description |
---|---|---|---|---|
X-Secret-Key | yes | text | The X-Secret-Key to authenticate the request. |
PATH Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
id | yes | numeric | The SKU's ID. | |
sid | no | text | The RIPE Session ID to authenticate the request. |
Update
Updates the SKU with the given ID. If the SKU does not exist, returns a Not Found Exception (404) error.
Example Request
curl -s -X PUT \
"https://ripe-core-sbx.platforme.com/api/skus/1" \
-H "Content-Type: application/json" \
-H "X-Secret-Key: $RIPE_KEY" \
-d '{
"domain": "dummy",
"identifier": "3a7df9c3-f9eb-42fd-a699-12f98be1666c_2",
"spec": {
"brand": "dummy",
"model": "cube",
"parts": {
"lining": {
"color": "white",
"material": "calf_lining"
},
"sole": {
"color": "red",
"material": "rubber"
},
"hardware": {
"color": "silver",
"material": "metal"
},
"laces": {
"color": "white",
"material": "nylon"
},
"front": {
"color": "white",
"material": "nappa"
},
"logo": {
"color": "silver",
"material": "metal"
},
"shadow": {
"color": "default",
"material": "default"
},
"side": {
"color": "white",
"material": "nappa"
}
}
}
}'
Example Response
{
"_id": "6598259ded44d3f74baaf840",
"id": 273344,
"domain": "dummy",
"identifier": "3a7df9c3-f9eb-42fd-a699-12f98be1666c_2",
"spec": {
"brand": "dummy",
"model": "dummy",
"parts": {}
},
"enabled": true,
"description": null,
"meta": {},
"brand_t": null,
"retailer_t": null,
"vendor_t": null,
"hash": "e7590f921a2e22dfc049a8b0201d181b",
"created": 1704469917,
"modified": 1704469917
}
HTTP Request
PUT https://ripe-core-sbx.platforme.com/api/skus/<number:id>
Header Fields
Field | Mandatory | Type | Default | Description |
---|---|---|---|---|
X-Secret-Key | yes | text | The X-Secret-Key to authenticate the request. |
PATH Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
id | yes | numeric | The SKU's ID. | |
sid | no | text | The RIPE Session ID to authenticate the request. |
POST Body
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
identifier | yes | text | The model's brand. | |
domain | yes | text | The model's name. | |
spec | yes | text | The object describing the product (brand, model, variant, parts, initials, engraving, etc.) |
Delete
Deletes the SKU with the given ID. If the SKU does not exist, returns a Not Found Exception (404) error.
Example Request
curl -s -X DELETE "https://ripe-core-sbx.platforme.com/api/skus/1" \
-H "X-Secret-Key: $RIPE_KEY"
Example Response
{
"result": "success"
}
HTTP Request
DELETE https://ripe-core-sbx.platforme.com/api/skus/<number:id>
Header Fields
Field | Mandatory | Type | Default | Description |
---|---|---|---|---|
X-Secret-Key | yes | text | The X-Secret-Key to authenticate the request. |
PATH Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
id | yes | numeric | The SKU's ID. | |
sid | no | text | The RIPE Session ID to authenticate the request. |
Resources
SKU
Field | Type | Description |
---|---|---|
identifier | text | The SKU string that should identify an unique specification inside a certain domain. |
domain | text | The string value used to separate resolution of SKUs so that no collisions occur between identifiers. |
spec | dictionary | The object describing the product (brand, model, variant, parts, initials, engraving, etc.). |
Locale Endpoints
Locale
This endpoint is used to get the corresponding text of one value defined on a locale.
Example Request
curl "https://ripe-core-sbx.platforme.com/api/locale/calf_hair?&locale=es_es"
Example Response
{
"value": "calf_hair",
"value_l": "calf_hair",
"locale": "es_es"
}
HTTP Request
GET https://ripe-core-sbx.platforme.com/api/locale/<value>
Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
value | yes | text | The value which one wants to get the locale of. | |
locale | no | text | en-us |
The locale which one wants to get the value from. |
context | no | text | null |
The context at which the locale is bounded to. |
Locale Values
This endpoint is used to get the corresponding text of one or more values defined on a locale.
Example Request
curl "https://ripe-core-sbx.platforme.com/api/locale? \
values=scales.it:clothing& \
locale=it_it"
Example Response
{
"values": [
"scales.it:clothing"
],
"values_l": [
"IT"
],
"locale": "it_it"
}
HTTP Request
GET https://ripe-core-sbx.platforme.com/api/locale
Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
values | yes | list of text | The values which one wants to get the locale of. | |
locale | no | text | en-us |
The locale which one wants to get the value from. |
context | no | text | null |
The locale's context scope. |
Locale Bundle
This endpoint is used to get the complete locale bundle of a specific context.
Example Request
curl "https://ripe-core-sbx.platforme.com/api/locale/bundle? \
context=sandbox& \
locale=en_us"
Example Response
{
"customise": "customize",
"body": "Body",
"lining": "Lining",
"veau_epsom_hrm": "Veau Epsom",
"veau_swift_hrm": "Veau Swift",
"abricot": "Abricot",
"bleu_indigo": "Bleu Indigo",
"bleu_electrique": "Bleu Electrique",
"rouge_grenat": "Rouge Grenat"
}
HTTP Request
GET https://ripe-core-sbx.platforme.com/api/locale/bundle
Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
context | no | text | null |
The context at which the locale is bounded to. |
locale | no | text | en-us |
The locale which one wants to get the bundle from. |
Resources
Locale
Field | Type | Description |
---|---|---|
locale | text | The locale identifier following the format language-country , respectively in ISO 639-1 and ISO 3166-2 formats. |
value | text | The value requested to get the locale of. |
value_l | text | The localized value. |
Locale values
Field | Type | Description |
---|---|---|
locale | text | The locale identifier following the format language-country , respectively in ISO 639-1 and ISO 3166-2 formats. |
values | text | The list of values requested to get the locale of. |
values_l | text | The list of localized values. |
Brand Endpoints
A brand normally identifies the vendor of a given model. One brand may have many models associated with it. Platforme API allows access to the information of the already existing brands, such as their logo and models. The models information originates from their respective builds.
Logo
Example Request
curl "https://ripe-core-sbx.platforme.com/api/brands/swear/logo.png?size=large"
Example Response
This endpoint gets the brand's logo.
HTTP Request
GET https://ripe-core-sbx.platforme.com/api/brands/<text:brand>/logo.<text:format>
Path Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
brand | yes | text | The respective brand's name. | |
format | yes | text | The format of the image, (e.g. png , jpg , svg , etc.) |
GET Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
version | no | number | latest | Brand's version. |
size | no | text | medium | Logo's size, one of small , medium or large . |
variant | no | text | medium | Logo's variant, can be a size or something else (e.g. small , large , blue , etc.) |
Font
Example Request
curl "https://ripe-core-sbx.platforme.com/api/brands/swear/fonts/SwearGold.fnt"\
-H "X-Secret-Key: $RIPE_KEY"
curl "https://ripe-core-sbx.platforme.com/api/brands/swear/fonts/SwearGold"\
-H "X-Secret-Key: $RIPE_KEY"
The above command returns a font file.
This endpoint returns the font file with the requested or default format.
HTTP Request
GET https://ripe-core-sbx.platforme.com/api/brands/<text:vendor>/fonts/<text:font>
GET https://ripe-core-sbx.platforme.com/api/brands/<text:vendor>/fonts/<text:font>.<text:format>
Path Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
vendor | yes | text | The vendor's name. | |
font | yes | text | The font's name (must only contain letters and numbers). | |
format | no | text | font's format | The font's format (fnt , ttf ). |
GET Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
version | no | text | latest | Build's version. |
weight | no | text | null |
Font's weight (Regular , Bold ). |
Textures
Example Request
curl "https://ripe-core-sbx.platforme.com/api/brands/swear/texture_maps/pattern/base.png"
Example Response
The above command returns a image file
This endpoint returns the texture image file with the requested or default format.
HTTP Request
GET https://ripe-core-sbx.platforme.com/api/brands/<text:brand>/texture_maps/<text:map>/<text:name>.<text:format>
PATH Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
brand | yes | text | The brand's name. | |
map | yes | text | The map type, (e.g. pattern , displacement , metallic , normal , roughness ) |
|
name | yes | text | The texture's name. | |
format | yes | text | png |
The format of the image, (e.g. png , jpg , etc.) |
Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
version | no | number | latest | Build's version. |
Mesh
Example Request
curl "https://ripe-core-sbx.platforme.com/api/brands/swear/models/vyner/mesh"
Example Response
The above command returns a mesh file
This endpoint returns the model's mesh.
HTTP Request
GET https://ripe-core-sbx.platforme.com/api/brands/<text:brand>/models/<text:model>/mesh
PATH Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
brand | yes | text | The brand's name. | |
model | yes | text | The models's name. |
Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
version | no | number | latest | Build's version. |
variant | no | text | medium | Logo's variant, one of small , medium or large . |
Config and Spec
Example Request
curl "https://ripe-core-sbx.platforme.com/api/brands/swear/models/vyner/config"
curl "https://ripe-core-sbx.platforme.com/api/brands/swear/models/vyner/spec"
Example Response
{
"name": "vyner",
"brand": "swear",
"version": "186",
"parts": [
{
"name": "front",
"materials": [
{
"name": "nappa",
"colors": [
"white",
"black",
"navy",
"red",
"beige",
"forest_green",
"dark_cherry",
"blush",
"grey",
"taupe"
]
},
{
"name": "suede",
"colors": [
"white",
"black",
"navy",
"red",
"beige",
"forest_green",
"grey",
"taupe"
]
},
{
"name": "hairy_calf",
"colors": [
"white",
"black",
"navy",
"red",
"leopard",
"camouflage"
]
},
{
"name": "python",
"colors": [
"white",
"black",
"natural",
"silver",
"gold",
"neon_white",
"grey",
"nude"
]
},
{
"name": "crocodile",
"colors": [
"white",
"black",
"navy",
"red",
"chestnut",
"nude",
"silver"
]
},
{
"name": "grain_metallic",
"colors": [
"purple",
"emerald",
"gold",
"silver"
]
}
]
},
{
"name": "side",
"materials": [
{
"name": "nappa",
"colors": [
"white",
"black",
"navy",
"red",
"beige",
"forest_green",
"dark_cherry",
"blush",
"grey",
"taupe"
]
},
{
"name": "suede",
"colors": [
"white",
"black",
"navy",
"red",
"beige",
"forest_green",
"grey",
"taupe"
]
},
{
"name": "metallic",
"colors": [
"silver",
"gold",
"copper",
"navy",
"fuchsia"
]
},
{
"name": "hairy_calf",
"colors": [
"white",
"black",
"navy",
"red",
"leopard",
"camouflage"
]
},
{
"name": "python",
"colors": [
"white",
"black",
"natural",
"silver",
"gold",
"neon_white",
"grey",
"nude"
]
},
{
"name": "crocodile",
"colors": [
"white",
"black",
"navy",
"red",
"chestnut",
"nude",
"silver"
]
},
{
"name": "grain_metallic",
"colors": [
"purple",
"emerald",
"gold",
"silver"
]
}
]
},
{
"name": "lining",
"materials": [
{
"name": "calf_lining",
"colors": [
"white",
"black",
"tan",
"beige"
]
}
]
},
{
"name": "laces",
"materials": [
{
"name": "nylon",
"colors": [
"white",
"black",
"grey",
"navy",
"cobalt",
"red",
"fuchsia",
"taupe",
"copper_brown",
"forest_green",
"golden_yellow",
"burnt_orange",
"blush",
"dark_cherry"
]
}
]
},
{
"name": "sole",
"materials": [
{
"name": "rubber",
"colors": [
"white",
"black",
"grey",
"tan",
"yellow",
"pink",
"red"
]
}
]
},
{
"name": "hardware",
"materials": [
{
"name": "metal",
"colors": [
"silver",
"gold"
]
}
]
},
{
"name": "logo",
"materials": [
{
"name": "metal",
"colors": [
"silver",
"gold",
"copper"
]
}
]
},
{
"name": "shadow",
"materials": [
{
"name": "default",
"colors": [
"default"
]
}
]
}
],
"description": "vyner",
"title": "lace up round toe",
"style": "low",
"scale": {
"male": "it",
"female": "it",
"other": "it",
"all": "it"
},
"gender": "both",
"observations": "A contemporary take on the classic lace-up sneaker, the fully-customisable Vyner is all about comfort with its cushioned piping and padded collar. The low-top comes complete with a round toe and rubber sole, in addition to flat laces.",
"toe": "round",
"type": "very-large",
"size": [
1000,
1000
],
"tags": [
"generic",
"initials_type_zoom",
"initials_uppercase"
],
"sizes": {
"it:female": [
19,
21,
23,
25,
27,
29,
31
],
"it:male": [
25,
27,
29,
31,
33,
35,
37,
39,
41,
43,
45
]
},
"frames": 24,
"faces": [
"side",
"top"
],
"faces_m": {
"side": {
"frames": 24,
"thumbnail": true
},
"top": {
"frames": 1,
"thumbnail": true
}
},
"thumbnails": [
{
"name": "side-0",
"face": "side",
"frame": 0
},
{
"name": "top-0",
"face": "top",
"frame": 0
}
],
"hidden": [
"logo",
"shadow"
],
"blacklist": {
"rules": [
[
"",
"",
"terracotta"
],
[
"",
"veg_tan",
""
],
[
"",
"hairy_calf",
"beige"
],
[
"",
"ostrich",
""
],
[
"",
"python",
"blush"
],
[
"laces",
"",
"rose"
],
[
"laces",
"",
"chocolate"
],
[
"laces",
"",
"beige"
],
[
"laces",
"",
"neon_yellow"
],
[
"hardware",
"metal",
"copper"
]
],
"materials": {
"front": [
"metallic"
]
}
},
"sync": {
"hardware": [
"hardware",
"logo"
]
},
"defaults": {
"lining": {
"material": "calf_lining",
"color": "white",
"face": "top"
},
"front": {
"material": "nappa",
"color": "white",
"face": "side"
},
"side": {
"material": "nappa",
"color": "white",
"face": "side",
"frame": 0
},
"sole": {
"material": "rubber",
"color": "white",
"face": "side"
},
"laces": {
"material": "nylon",
"color": "white",
"face": "top"
},
"logo": {
"hidden": true,
"material": "metal",
"color": "silver"
},
"hardware": {
"material": "metal",
"color": "silver",
"face": "side",
"frame": 0
},
"shadow": {
"hidden": true,
"material": "default",
"color": "default"
}
},
"initials": {
"profile": "base",
"z_index": 4,
"properties": [
{
"name": "metal_copper",
"type": "font"
},
{
"name": "metal_gold",
"type": "font"
},
{
"name": "metal_silver",
"type": "font"
}
],
"$profiles": {
"base": {
"frame": "top",
"align": "center",
"image_rotation": 270,
"font_family": "SwearGold",
"font_weight": "Regular",
"font_spacing": -10,
"exclusion": [
"logo"
],
"position": [
449,
408
],
"rotation": 0
},
"style::metal_copper": {
"font_family": "SwearCopper"
},
"style::metal_gold": {
"font_family": "SwearGold"
},
"style::metal_silver": {
"font_family": "SwearSilver"
},
"viewport::large": {
"viewport": [
324,
283,
250,
250
]
},
"viewport::medium": {
"viewport": [
349,
308,
200,
200
]
},
"viewport::small": {
"viewport": [
399,
358,
100,
100
]
},
"metal_copper": {
"font_family": "SwearCopper"
},
"metal_gold": {
"font_family": "SwearGold"
},
"metal_silver": {
"font_family": "SwearSilver"
},
"large": {
"viewport": [
324,
283,
250,
250
]
},
"medium": {
"viewport": [
349,
308,
200,
200
]
},
"small": {
"viewport": [
399,
358,
100,
100
]
}
},
"$alias": {
"report": [
"viewport::medium"
],
"step::personalization": [
"viewport::large"
],
"step::size": [
"viewport::medium"
]
}
},
"initials_frame": {
"default": "top"
},
"z_index": {
"shadow": 1,
"lining": 2,
"front": 3,
"side": 5,
"sole": 6,
"laces": 7,
"logo": 8,
"hardware": 9,
"overlay": 30000
},
"version_s": "186",
"version_i": 186,
"branch": "master",
"compatibility": 1,
"order": {
"models": [
"air_revive",
"air_rev_nitro",
"air_rev_trigger",
"bond",
"crosby_v2",
"maddox",
"marshall",
"nori",
"redchurch",
"vyner",
"vyner_hitop",
"hoodie"
],
"parts": [
"front",
"front_panel",
"side",
"upper",
"body",
"ankle_side",
"piping",
"toe_cap",
"back_stay",
"stay",
"heel",
"elastic",
"collar",
"strap_tips",
"metal_toe_cap",
"eye_stay",
"metal_caps",
"lining",
"inside",
"inside_panel",
"outside",
"laces",
"tongue",
"heel_puller",
"swear_tape",
"rubber_strap",
"zip_puller",
"zip",
"straps",
"strap_tip",
"sole",
"outsole",
"hardware",
"logo",
"fringe_hardware",
"fringe",
"trimmings",
"upper1",
"upper2",
"ugly_tape",
"accents",
"eyestay0_side",
"heel0_trimmings",
"heel_tab",
"lace0_eyelet",
"mudguard",
"side0_tongue_detail",
"toe0_tongue",
"tongue_detail",
"tag_left",
"tag_right"
],
"materials": {
"front": [
"nappa",
"suede",
"metallic",
"veg_tan",
"hairy_calf",
"novelty",
"ostrich",
"python",
"crocodile"
],
"side": [
"nappa",
"suede",
"metallic",
"veg_tan",
"hairy_calf",
"novelty",
"ostrich",
"python",
"crocodile",
"nappa10_corso_como"
],
"inside": [
"nappa",
"suede",
"metallic",
"veg_tan",
"patent_leather",
"hairy_calf",
"novelty",
"ostrich",
"python",
"crocodile"
],
"inside_panel": [
"nappa",
"suede",
"metallic",
"veg_tan",
"hairy_calf",
"novelty",
"ostrich",
"python",
"crocodile"
],
"front_panel": [
"nappa",
"suede",
"metallic",
"veg_tan",
"patent_leather",
"hairy_calf",
"novelty",
"ostrich",
"python",
"crocodile"
],
"outside": [
"nappa",
"suede",
"metallic",
"veg_tan",
"hairy_calf",
"novelty",
"ostrich",
"python",
"crocodile"
],
"ankle_side": [
"nappa",
"suede",
"metallic",
"veg_tan",
"hairy_calf",
"novelty",
"ostrich",
"python",
"crocodile"
],
"back_stay": [
"nappa",
"suede",
"metallic",
"veg_tan",
"hairy_calf",
"novelty",
"ostrich",
"python",
"crocodile"
],
"stay": [
"nappa",
"suede",
"metallic",
"veg_tan",
"hairy_calf",
"novelty",
"ostrich",
"python",
"crocodile"
],
"eye_stay": [
"nappa",
"suede",
"metallic",
"veg_tan",
"patent_leather",
"hairy_calf",
"novelty",
"ostrich",
"python",
"crocodile"
],
"heel": [
"nappa",
"suede",
"metallic",
"veg_tan",
"hairy_calf",
"novelty",
"ostrich",
"python",
"crocodile"
],
"elastic": [
"elastic",
"elastic10_corso_como"
],
"hardware": [
"metal",
"nori_metal"
],
"fringe_hardware": [
"metal"
],
"fringe": [
"nappa",
"suede",
"metallic",
"hairy_calf",
"veg_tan"
],
"straps": [
"nappa",
"suede",
"metallic",
"veg_tan",
"hairy_calf",
"novelty",
"ostrich",
"python",
"crocodile"
],
"strap_tip": [
"metal"
],
"strap_tips": [
"metal"
],
"laces": [
"nylon",
"leather",
"nori_nylon",
"nori_reflective_textile"
],
"metal_caps": [
"metal"
],
"toe_cap": [
"nappa",
"suede",
"metallic",
"veg_tan",
"hairy_calf",
"novelty",
"ostrich",
"python",
"crocodile"
],
"lining": [
"calf_lining",
"calf_lining10_corso_como"
],
"sole": [
"rubber",
"rubber_wedge",
"nori_rubber"
],
"metal_toe_cap": [
"metal"
],
"collar": [
"nappa",
"suede",
"metallic",
"veg_tan",
"hairy_calf",
"novelty",
"ostrich",
"python",
"crocodile",
"wax_nubuck",
"wicker_nylon",
"gel_mesh"
],
"logo": [
"metal"
],
"tongue": [
"nappa",
"suede",
"metallic",
"veg_tan",
"patent_leather",
"hairy_calf",
"novelty",
"ostrich",
"python",
"crocodile"
],
"upper": [
"stretch_knit",
"stretch_nappa",
"mesh"
],
"upper1": [
"grain_metallic",
"nori_nylon_upper",
"grain_nappa",
"nappa",
"suede"
],
"upper2": [
"nori_rubber_upper",
"nappa",
"reflective",
"wax_nubuck"
],
"heel_puller": [
"polyester",
"rubber_heel"
],
"swear_tape": [
"polyester",
"rubber_heel"
],
"outsole": [
"rubber"
],
"rubber_strap": [
"rubber_strap"
],
"zip_puller": [
"polyester"
],
"zip": [
"nylon_tape"
],
"body": [
"photo"
],
"trimmings": [
"nori_reflective_textile",
"reflective0_grossgrain"
],
"ugly_tape": [
"rubberHeel"
],
"accents": [
"web_mesh",
"airtech_mesh"
],
"eyestay0_side": [
"nappa",
"suede",
"hairy_calf",
"python",
"crocodile",
"wax_nubuck"
],
"heel0_trimmings": [
"nappa",
"suede"
],
"heel_tab": [
"nappa",
"suede",
"hairy_calf",
"python",
"crocodile",
"wax_nubuck",
"grain_metallic"
],
"lace0_eyelet": [
"nylon0_plastic"
],
"mudguard": [
"nappa",
"suede",
"hairy_calf",
"grain_metallic",
"python",
"crocodile",
"wax_nubuck"
],
"side0_tongue_detail": [
"nappa",
"suede",
"hairy_calf",
"python",
"crocodile",
"wax_nubuck",
"hex_rubber",
"grain_metallic"
],
"toe0_tongue": [
"nappa",
"suede",
"hairy_calf",
"python",
"crocodile",
"wax_nubuck"
],
"tongue_detail": [
"gel_mesh"
],
"tag_left": [
"nappa_tag"
],
"tag_right": [
"nappa_tag"
]
},
"colors": {
"nappa": [
"white",
"black",
"navy",
"cobalt",
"red",
"fuchsia",
"chocolate",
"terracotta",
"beige",
"forest_green",
"khaki",
"neon_yellow",
"dark_cherry",
"blush",
"sky",
"grey",
"taupe",
"off_white"
],
"nappa10_corso_como": [
"black",
"white"
],
"grain_nappa": [
"grey"
],
"suede": [
"white",
"black",
"navy",
"cobalt",
"red",
"fuchsia",
"chocolate",
"terracotta",
"beige",
"forest_green",
"grey",
"taupe",
"orange",
"dark_grey",
"light_grey"
],
"metallic": [
"silver",
"gold",
"copper",
"navy",
"fuchsia"
],
"hairy_calf": [
"white",
"black",
"navy",
"red",
"terracotta",
"leopard",
"camouflage"
],
"ostrich": [
"white",
"black",
"tan",
"grey"
],
"gel_mesh": [
"black",
"off_white",
"red",
"white"
],
"python": [
"white",
"black",
"natural",
"silver",
"gold",
"neon_white",
"blush",
"grey",
"nude"
],
"crocodile": [
"white",
"black",
"navy",
"red",
"chestnut",
"nude",
"silver"
],
"elastic": [
"white",
"black",
"grey",
"navy",
"cobalt",
"red",
"fuchsia",
"rose",
"chocolate",
"tan",
"beige",
"mustard",
"forest_green",
"burnt_orange",
"silver",
"gold"
],
"elastic10_corso_como": [
"black",
"white"
],
"metal": [
"silver",
"gold",
"copper",
"navy",
"fuchsia",
"gunmetal"
],
"nylon": [
"white",
"black",
"grey",
"navy",
"cobalt",
"red",
"fuchsia",
"rose",
"chocolate",
"terracotta",
"taupe",
"copper_brown",
"beige",
"forest_green",
"golden_yellow",
"neon_yellow",
"burnt_orange",
"blush",
"dark_cherry",
"black0_grey",
"white0_grey",
"white0_red"
],
"nylon_tape": [
"black",
"black0_green",
"black0_orange",
"white"
],
"rubber": [
"white",
"black",
"grey",
"tan",
"silver",
"gold",
"yellow",
"clear_white",
"transparent",
"gum"
],
"rubber_wedge": [
"white",
"black",
"gum0_white",
"gum0_black",
"neon_orange",
"pink",
"blue",
"transparent0_white",
"transparent0_black"
],
"calf_lining": [
"white",
"black",
"tan",
"beige"
],
"calf_lining10_corso_como": [
"black",
"white"
],
"novelty": [
"black_mesh",
"cobalt_mesh",
"fuchsia_mesh",
"orange_mesh",
"neon_mesh",
"prism"
],
"leather": [
"black",
"beige",
"chocolate",
"cobalt",
"grey",
"red",
"terracotta",
"white"
],
"airtech_mesh": [
"neon_orange",
"neon_yellow",
"red",
"white"
],
"patent_leather": [
"white",
"black",
"grey",
"cobalt",
"red",
"chocolate",
"terracotta",
"beige"
],
"reflective0_grossgrain": [
"blue0_blue0_white",
"white0_black0_white",
"yellow0_yellow0_white"
],
"veg_tan": [
"raw"
],
"photo": [
"white",
"blue",
"black",
"orange",
"red",
"gold",
"pink",
"denim",
"multi",
"blue_grey",
"blue_reflective",
"green",
"grey_reflective",
"neon_pink",
"yellow_pink"
],
"nori_metal": [
"gold",
"silver"
],
"nori_reflective_textile": [
"black",
"navy",
"neon_pink",
"neon_yellow",
"red",
"white"
],
"nori_nylon": [
"black",
"blush",
"burnt_orange",
"golden_yellow",
"grey",
"navy",
"red",
"white"
],
"nori_rubber": [
"black",
"red",
"white",
"yellow"
],
"nori_nylon_upper": [
"black",
"navy",
"white"
],
"nori_rubber_upper": [
"black",
"navy",
"white"
],
"reflective": [
"grey"
],
"stretch_knit": [
"black",
"blue",
"green",
"white",
"grey",
"orange",
"red"
],
"polyester": [
"neon_orange",
"neon_pink",
"neon_yellow",
"off_white",
"blue",
"grey"
],
"reflective_textile": [
"neon_orange",
"neon_pink",
"neon_yellow",
"off_white",
"blue",
"grey"
],
"rubber_strap": [
"black",
"blue0_orange",
"transparent0_white",
"black0_white"
],
"rubber_heel": [
"black",
"black0_red",
"black0_white",
"blue",
"white0_black",
"neon_green0_black",
"neon_orange",
"pink"
],
"stretch_nappa": [
"black",
"white"
],
"mesh": [
"black",
"blue",
"neon_orange",
"neon_pink",
"neon_yellow",
"orange",
"pink"
],
"rubberHeel": [
"orange0_black"
],
"web_mesh": [
"white",
"black"
],
"wax_nubuck": [
"grey",
"black"
],
"wicker_nylon": [
"emerald",
"violet",
"white",
"black"
],
"nylon0_plastic": [
"black",
"white"
],
"hex_rubber": [
"emerald",
"violet",
"white",
"black"
],
"nappa_tag": [
"black"
],
"grain_metallic": [
"purple",
"emerald",
"gold",
"silver"
]
}
},
"initials_patch": {
"suede": {
"white": {
"material": "nappa",
"color": "white"
},
"black": {
"material": "nappa",
"color": "black"
},
"navy": {
"material": "nappa",
"color": "navy"
},
"cobalt": {
"material": "nappa",
"color": "cobalt"
},
"red": {
"material": "nappa",
"color": "red"
},
"fuchsia": {
"material": "nappa",
"color": "fuchsia"
},
"chocolate": {
"material": "nappa",
"color": "chocolate"
},
"terracotta": {
"material": "nappa",
"color": "terracotta"
},
"beige": {
"material": "nappa",
"color": "beige"
},
"forest_green": {
"material": "nappa",
"color": "forest_green"
}
},
"hairy_calf": {
"white": {
"material": "nappa",
"color": "white"
},
"black": {
"material": "nappa",
"color": "black"
},
"navy": {
"material": "nappa",
"color": "navy"
},
"cobalt": {
"material": "nappa",
"color": "cobalt"
},
"red": {
"material": "nappa",
"color": "red"
},
"fuchsia": {
"material": "nappa",
"color": "fuchsia"
},
"terracotta": {
"material": "nappa",
"color": "terracotta"
},
"tan": {
"material": "nappa",
"color": "beige"
},
"mustard": {
"material": "nappa",
"color": "mustard"
},
"burnt_orange": {
"material": "nappa",
"color": "burnt_orange"
},
"leopard": {
"material": "nappa",
"color": "beige"
},
"camouflage": {
"material": "nappa",
"color": "forest_green"
}
},
"ostrich": {
"white": {
"material": "nappa",
"color": "white"
},
"black": {
"material": "nappa",
"color": "black"
},
"tan": {
"material": "nappa",
"color": "terracotta"
},
"neon_yellow": {
"material": "nappa",
"color": "neon_yellow"
},
"grey": {
"material": "nappa",
"color": "grey"
}
},
"python": {
"white": {
"material": "nappa",
"color": "white"
},
"black": {
"material": "nappa",
"color": "black"
},
"natural": {
"material": "nappa",
"color": "off_white"
},
"silver": {
"material": "metallic",
"color": "silver"
},
"gold": {
"material": "metallic",
"color": "gold"
},
"neon_white": {
"material": "nappa",
"color": "off_white"
}
},
"crocodile": {
"white": {
"material": "nappa",
"color": "white"
},
"black": {
"material": "nappa",
"color": "black"
},
"navy": {
"material": "nappa",
"color": "navy"
},
"red": {
"material": "nappa",
"color": "red"
},
"tan": {
"material": "nappa",
"color": "terracotta"
},
"nude": {
"material": "nappa",
"color": "beige"
},
"silver": {
"material": "metallic",
"color": "silver"
},
"antique_gold": {
"material": "metallic",
"color": "gold"
}
}
},
"initials_patch_materials": [
"embossed"
],
"initials_dot_materials": [
"embossed"
],
"initials_pivot_part": "front",
"always_patch": false,
"alias": {},
"restrictions": [],
"meta": {},
"locales": [
"en_us",
"ar",
"da_dk",
"de_de",
"es_es",
"fr_fr",
"it_it",
"ja_jp",
"ko_kr",
"nl_nl",
"pt_br",
"ru_ru",
"sv_se",
"zh_cn"
]
}
Both endpoints return a configuration based on a specific brand and model. If a country/flag is specified then only the materials available to that country will be provided. For example, some exotic materials might not be allowed under a country's law or when the flag is set to an arbitrary value, ie vegan
.
HTTP Request
GET https://ripe-core-sbx.platforme.com/api/brands/<text:brand>/models/<text:model>/config
GET https://ripe-core-sbx.platforme.com/api/brands/<text:brand>/models/<text:model>/spec
PATH Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
brand | yes | text | The brand's name. | |
model | yes | text | The model's name. |
Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
version | no | number | latest | The build's version. |
country | no | text | null |
The ISO 3166-2 code of the country. |
flag | no | text | null |
The flag value. |
safe | no | text | true |
If the safe (sanitized) version of the model configuration should be retrieved (shows no confidential information). |
logic | no | text | true |
If the custom build logic should be run to manipulate the resulting model config according to specific domain rules. |
filter | no | text | true |
If the configuration should be filtered by the country and/or flag. |
Defaults
Example Request
curl "https://ripe-core-sbx.platforme.com/api/brands/swear/models/vyner/defaults"
Example Response
{
"model": "vyner",
"parts": {
"lining": {
"material": "calf_lining",
"color": "white",
"face": "top"
},
"front": {
"material": "nappa",
"color": "white",
"face": "side"
},
"side": {
"material": "nappa",
"color": "white",
"face": "side",
"frame": 0
},
"sole": {
"material": "rubber",
"color": "white",
"face": "side"
},
"laces": {
"material": "nylon",
"color": "white",
"face": "top"
},
"logo": {
"hidden": true,
"material": "metal",
"color": "silver"
},
"hardware": {
"material": "metal",
"color": "silver",
"face": "side",
"frame": 0
},
"shadow": {
"hidden": true,
"material": "default",
"color": "default"
}
}
}
This endpoint gets a the default customization of a specific brand and model. The default customization is the suggested customization to be used on the base product.
HTTP Request
GET https://ripe-core-sbx.platforme.com/api/brands/<text:brand>/models/<text:model>/defaults
PATH Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
brand | yes | text | The brand's name. | |
model | yes | text | The model's name. |
Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
version | no | number | latest | The build's version. |
Combinations
Example Request
curl "https://ripe-core-sbx.platforme.com/api/brands/swear/models/vyner/combinations"
Example Response
{
"brand": "swear",
"model": "vyner",
"combinations": [
[
"vyner",
"front",
"crocodile",
"black"
],
[
"vyner",
"front",
"crocodile",
"chestnut"
],
[
"vyner",
"front",
"crocodile",
"navy"
],
[
"vyner",
"front",
"crocodile",
"nude"
],
[
"vyner",
"front",
"crocodile",
"red"
],
[
"vyner",
"front",
"crocodile",
"silver"
],
[
"vyner",
"front",
"crocodile",
"white"
],
[
"vyner",
"front",
"grain_metallic",
"emerald"
],
[
"vyner",
"front",
"grain_metallic",
"gold"
],
[
"vyner",
"front",
"grain_metallic",
"purple"
],
[
"vyner",
"front",
"grain_metallic",
"silver"
],
[
"vyner",
"front",
"hairy_calf",
"black"
],
[
"vyner",
"front",
"hairy_calf",
"camouflage"
],
[
"vyner",
"front",
"hairy_calf",
"leopard"
],
[
"vyner",
"front",
"hairy_calf",
"navy"
],
[
"vyner",
"front",
"hairy_calf",
"red"
],
[
"vyner",
"front",
"hairy_calf",
"white"
],
[
"vyner",
"front",
"nappa",
"beige"
],
[
"vyner",
"front",
"nappa",
"black"
],
[
"vyner",
"front",
"nappa",
"blush"
],
[
"vyner",
"front",
"nappa",
"dark_cherry"
],
[
"vyner",
"front",
"nappa",
"forest_green"
],
[
"vyner",
"front",
"nappa",
"grey"
],
[
"vyner",
"front",
"nappa",
"navy"
],
[
"vyner",
"front",
"nappa",
"red"
],
[
"vyner",
"front",
"nappa",
"taupe"
],
[
"vyner",
"front",
"nappa",
"white"
],
[
"vyner",
"front",
"python",
"black"
],
[
"vyner",
"front",
"python",
"gold"
],
[
"vyner",
"front",
"python",
"grey"
],
[
"vyner",
"front",
"python",
"natural"
],
[
"vyner",
"front",
"python",
"neon_white"
],
[
"vyner",
"front",
"python",
"nude"
],
[
"vyner",
"front",
"python",
"silver"
],
[
"vyner",
"front",
"python",
"white"
],
[
"vyner",
"front",
"suede",
"beige"
],
[
"vyner",
"front",
"suede",
"black"
],
[
"vyner",
"front",
"suede",
"forest_green"
],
[
"vyner",
"front",
"suede",
"grey"
],
[
"vyner",
"front",
"suede",
"navy"
],
[
"vyner",
"front",
"suede",
"red"
],
[
"vyner",
"front",
"suede",
"taupe"
],
[
"vyner",
"front",
"suede",
"white"
],
[
"vyner",
"hardware",
"metal",
"gold"
],
[
"vyner",
"hardware",
"metal",
"silver"
],
[
"vyner",
"laces",
"nylon",
"black"
],
[
"vyner",
"laces",
"nylon",
"blush"
],
[
"vyner",
"laces",
"nylon",
"burnt_orange"
],
[
"vyner",
"laces",
"nylon",
"cobalt"
],
[
"vyner",
"laces",
"nylon",
"copper_brown"
],
[
"vyner",
"laces",
"nylon",
"dark_cherry"
],
[
"vyner",
"laces",
"nylon",
"forest_green"
],
[
"vyner",
"laces",
"nylon",
"fuchsia"
],
[
"vyner",
"laces",
"nylon",
"golden_yellow"
],
[
"vyner",
"laces",
"nylon",
"grey"
],
[
"vyner",
"laces",
"nylon",
"navy"
],
[
"vyner",
"laces",
"nylon",
"red"
],
[
"vyner",
"laces",
"nylon",
"taupe"
],
[
"vyner",
"laces",
"nylon",
"white"
],
[
"vyner",
"lining",
"calf_lining",
"beige"
],
[
"vyner",
"lining",
"calf_lining",
"black"
],
[
"vyner",
"lining",
"calf_lining",
"tan"
],
[
"vyner",
"lining",
"calf_lining",
"white"
],
[
"vyner",
"logo",
"metal",
"copper"
],
[
"vyner",
"logo",
"metal",
"gold"
],
[
"vyner",
"logo",
"metal",
"silver"
],
[
"vyner",
"side",
"crocodile",
"black"
],
[
"vyner",
"side",
"crocodile",
"chestnut"
],
[
"vyner",
"side",
"crocodile",
"navy"
],
[
"vyner",
"side",
"crocodile",
"nude"
],
[
"vyner",
"side",
"crocodile",
"red"
],
[
"vyner",
"side",
"crocodile",
"silver"
],
[
"vyner",
"side",
"crocodile",
"white"
],
[
"vyner",
"side",
"grain_metallic",
"emerald"
],
[
"vyner",
"side",
"grain_metallic",
"gold"
],
[
"vyner",
"side",
"grain_metallic",
"purple"
],
[
"vyner",
"side",
"grain_metallic",
"silver"
],
[
"vyner",
"side",
"hairy_calf",
"black"
],
[
"vyner",
"side",
"hairy_calf",
"camouflage"
],
[
"vyner",
"side",
"hairy_calf",
"leopard"
],
[
"vyner",
"side",
"hairy_calf",
"navy"
],
[
"vyner",
"side",
"hairy_calf",
"red"
],
[
"vyner",
"side",
"hairy_calf",
"white"
],
[
"vyner",
"side",
"metallic",
"copper"
],
[
"vyner",
"side",
"metallic",
"fuchsia"
],
[
"vyner",
"side",
"metallic",
"gold"
],
[
"vyner",
"side",
"metallic",
"navy"
],
[
"vyner",
"side",
"metallic",
"silver"
],
[
"vyner",
"side",
"nappa",
"beige"
],
[
"vyner",
"side",
"nappa",
"black"
],
[
"vyner",
"side",
"nappa",
"blush"
],
[
"vyner",
"side",
"nappa",
"dark_cherry"
],
[
"vyner",
"side",
"nappa",
"forest_green"
],
[
"vyner",
"side",
"nappa",
"grey"
],
[
"vyner",
"side",
"nappa",
"navy"
],
[
"vyner",
"side",
"nappa",
"red"
],
[
"vyner",
"side",
"nappa",
"taupe"
],
[
"vyner",
"side",
"nappa",
"white"
],
[
"vyner",
"side",
"python",
"black"
],
[
"vyner",
"side",
"python",
"gold"
],
[
"vyner",
"side",
"python",
"grey"
],
[
"vyner",
"side",
"python",
"natural"
],
[
"vyner",
"side",
"python",
"neon_white"
],
[
"vyner",
"side",
"python",
"nude"
],
[
"vyner",
"side",
"python",
"silver"
],
[
"vyner",
"side",
"python",
"white"
],
[
"vyner",
"side",
"suede",
"beige"
],
[
"vyner",
"side",
"suede",
"black"
],
[
"vyner",
"side",
"suede",
"forest_green"
],
[
"vyner",
"side",
"suede",
"grey"
],
[
"vyner",
"side",
"suede",
"navy"
],
[
"vyner",
"side",
"suede",
"red"
],
[
"vyner",
"side",
"suede",
"taupe"
],
[
"vyner",
"side",
"suede",
"white"
],
[
"vyner",
"sole",
"rubber",
"black"
],
[
"vyner",
"sole",
"rubber",
"grey"
],
[
"vyner",
"sole",
"rubber",
"pink"
],
[
"vyner",
"sole",
"rubber",
"red"
],
[
"vyner",
"sole",
"rubber",
"tan"
],
[
"vyner",
"sole",
"rubber",
"white"
],
[
"vyner",
"sole",
"rubber",
"yellow"
]
]
}
This endpoint returns all the possible combinations of material and color for each part of a specific brand and model. The combinations returned can take into account the availability rules for the specific model.
HTTP Request
GET https://ripe-core-sbx.platforme.com/api/brands/<text:brand>/models/<text:model>/combinations
PATH Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
brand | yes | text | The brand's name. | |
model | yes | text | The model's name. |
Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
version | no | number | latest | The build's version. |
resolve | no | boolean | true |
Resolves the alias mapping. |
sort | no | boolean | true |
Sorts the combinations. |
use_name | no | boolean | true |
Adds the model's name to each combination tuple. |
filter | no | boolean | true |
If the combinations should be filtered by the country and/or flag. |
country | no | text | null |
The availability rules country. |
flag | no | text | null |
The availability rules flag. |
Factory
Example Request
curl "https://ripe-core-sbx.platforme.com/api/brands/swear/models/vyner/factory"
Example Response
{
"brand": "swear",
"model": "vyner",
"factory": "flaj",
"production_time": 7
}
Gets the factory information where a specific model is made, specifically its name and the estimated production time in days.
HTTP Request
GET /api/brands/<text:brand>/models/<text:model>/factory
PATH Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
brand | yes | text | The brand's name. | |
model | yes | text | The model's name. |
Validate
Example Request
curl "https://ripe-core-sbx.platforme.com/api/brands/swear/models/vyner/validate?p=laces:nylon:white"
Example Response
{
"valid": false,
"issues": [
"Mandatory part 'lining' not defined",
"Mandatory part 'front' not defined",
"Mandatory part 'side' not defined",
"Mandatory part 'sole' not defined",
"Mandatory part 'logo' not defined",
"Mandatory part 'hardware' not defined",
"Mandatory part 'shadow' not defined"
]
}
This endpoint verifies a configuration based on a specific brand and model and returns a JSON with a key valid
set as true
. If a required part is missing or if the part:material:color
combination has invalid values, the request will return a JSON with the key valid
as false
and an array of issues
specifying what is wrong.
HTTP Request
GET https://ripe-core-sbx.platforme.com/api/brands/<text:brand>/models/<text:model>/validate
PATH Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
brand | yes | text | The brand's name. | |
model | yes | text | The model's name. |
Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
version | no | number | latest | The build's version. |
variant | no | text | null |
The model's variant. |
p | no | text | null |
The configuration of the model, described as a sequence of triplets in the form of part:material:color . |
initials | no | text | null |
The personalization initials text. |
engraving | no | text | null |
The personalization engraving properties. |
initials_extra | no | dictionary | null |
The personalization initials object, containing the initials text and engraving for each group. |
gender | no | text | null |
The gender of the customization, used to resolve the scale. |
size | no | number | null |
The size of the customization. |
Logic
Example Request
curl "https://ripe-core-sbx.platforme.com/api/brands/dummy/models/cube/logic"
Example Response
<Logic module for (dummy, cube) version unknown>
This endpoint returns the logic script of a specific brand and model. If a method name and its arguments are provided as parameters, the result of the method calling will be returned.
HTTP Request
GET https://ripe-core-sbx.platforme.com/api/brands/<text:brand>/models/<text:model>/logic
PATH Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
brand | yes | text | The brand's name. | |
model | yes | text | The model's name. |
Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
version | no | number | latest | The build's version. |
format | no | text | py |
The script extension, either py or js . |
method | no | text | null |
The name of the method present in the logic script. |
Logic Method
Example Request
curl -s -X POST "https://ripe-core-sbx.platforme.com/api/brands/swear/models/vyner/logic/groups"
Example Response
[
"main"
]
This endpoint returns the result of executing the method provided from the logic script. The arguments for the method can be passed through parameters or through the request body.
HTTP Request
POST https://ripe-core-sbx.platforme.com/api/brands/<text:brand>/models/<text:model>/logic
PATH Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
brand | yes | text | The brand's name. | |
model | yes | text | The model's name. |
POST Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
version | no | number | latest | The build's version. |
On Config
Example Request
curl -s -X POST \
"https://ripe-core-sbx.platforme.com/api/brands/dummy/models/cube/on_config" \
-d '{
"ctx": {
"parts": {}
},
"brand":"dummy",
"model":"cube"
}'
Example Response
{
"parts": {},
"messages": [],
"initials": {
"main": {
"initials": "",
"engraving": null
}
}
}
This endpoint returns the result of executing the method on_config
from the logic script. The arguments for the method are passed through the request body.
HTTP Request
POST https://ripe-core-sbx.platforme.com/api/brands/<text:brand>/models/<text:model>/on_config
PATH Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
brand | yes | text | The brand's name. | |
model | yes | text | The model's name. |
POST Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
version | no | number | latest | The build's version. |
POST Body
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
ctx | no | dictionary | null |
The context of the request. |
brand | no | text | null |
The brand value used as the method argument. |
model | no | text | null |
The model value used as the method argument. |
On Part
Example Request
curl -s -X POST \
"https://ripe-core-sbx.platforme.com/api/brands/dummy/models/cube/on_part" \
-d '{
"ctx": {
"parts": {
"top0_bottom": {
"material": "leather_cbe",
"color": "black"
},
"side": {
"material": "leather_cbe",
"color": "black"
}
}
},
"name":"side",
"value": {
"material": "leather_cbe",
"color": "black"
}
}'
Example Response
{
"parts": {
"top0_bottom": {
"material": "leather_cbe",
"color": "black"
},
"side": {
"material": "leather_cbe",
"color": "black"
}
},
"initials": {
"main": {
"initials": "",
"engraving": null
}
},
"messages": [
[
"config",
"top0_bottom - material forced to `leather_cbe`"
]
],
"choices": {}
}
This endpoint returns the result of executing the method on_part
from the logic script. The arguments for the method are passed through the request body.
HTTP Request
POST https://ripe-core-sbx.platforme.com/api/brands/<text:brand>/models/<text:model>/on_part
PATH Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
brand | yes | text | The brand's name. | |
model | yes | text | The model's name. |
Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
version | no | number | latest | The build's version. |
POST Body
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
ctx | no | dictionary | null |
The context of the request. |
name | no | text | null |
The part's name. |
value | no | dictionary | null |
The part's value (material and color). |
On Initials
Example Request
curl -s -X POST \
"https://ripe-core-sbx.platforme.com/api/brands/dummy/models/cube/on_initials" \
-d '{
"ctx": {
"initials": {
"main": {
"initials": "DOG",
"engraving": "grey:style"
}
}
},
"group":"main",
"initials": "DOG",
"engraving": "grey:style"
}'
Example Response
{
"initials": {
"main": {
"initials": "",
"engraving": null
}
},
"messages": [
[
"initials",
"Blacklisted word detected"
]
],
"choices": {}
}
This endpoint returns the result of executing the method on_initials
from the logic script. The arguments for the method are passed through the request body.
HTTP Request
POST https://ripe-core-sbx.platforme.com/api/brands/<text:brand>/models/<text:model>/on_initials
PATH Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
brand | yes | text | The brand's name. | |
model | yes | text | The model's name. |
Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
version | no | number | latest | The build's version. |
POST Body
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
ctx | no | dictionary | null |
The context of the request. |
group | no | text | null |
The initials' group. |
initials | no | text | null |
The initials' text. |
engraving | no | text | null |
The initials' engraving. |
Resources
Config
Field | Type | Description |
---|---|---|
brand | text | Build's brand. |
name | text | Model's name. |
description | text | Model description text. |
title | text | Model marketing name. |
style | text | Style (as an open string) of the model. |
scale | text | Scale available for the product. |
gender | text | The gender of the product, it can be "male", "female" or "both". |
observations | text | Complementary description text. |
tags | list | List of tags that define certain behaviors for the model. |
sizes | dictionary | The start, end, and step for each scale of each available gender. |
frames | number | The number of side frames, all other views are considered to have only one frame. |
faces | list of text | The available perspective of the model. |
faces_m | dictionary | The number of frames of each face and a boolean to define if there is a thumbnail or not. |
parts | dictionary | Describes all customization models part and correspondent materials and colors. |
defaults | dictionary | Default material and color for every part. |
hidden | list of text | The parts that can't be customized by the end user. |
order | dictionary | Defines the order in which the original parts, materials and colors should be presented in the layout. |
alias | dictionary | Defines visual alias for part, materials or colors, note that a fully qualified name may be used to reduce ambiguity. |
blacklist | dictionary | Prevent combinations of appearing. |
restrictions | list of dictionary | Prevents parts or pairs of material-color from appearing together, meaning that when one is present on the customization, the other won't appear in the UI for selection, special cases exist for a single element item where that combination is always excluded from the UI (hard restriction). |
sync | dictionary | The parts that must have the same material and color, when one is changed the others should also change to the same combination. |
z_index | list of text | Defines the part's priorities for drawing, this should ensure proper layering of the model (no hidden parts). |
Defaults
Field | Type | Description |
---|---|---|
model | text | Build's name. |
parts | dictionary | Default material and color for every part. |
Product Endpoints
Create
Example Request
curl -s -X POST \
"https://ripe-core-sbx.platforme.com/api/products" \
-H "Content-Type: application/json" \
-H "X-Secret-Key: $RIPE_KEY" \
-d '{
"brand":"swear",
"name":"vyner",
"gender":"Male",
"price_eur": 10.0,
"price_usd": 11.0,
"price_gbp": 12.0
}'
Example Response
{
"_id": "659825a5ed44d3f74baaf848",
"id": 272111,
"brand": "swear",
"name": "vyner",
"gender": "Male",
"price_eur": 10.0,
"price_usd": 11.0,
"price_gbp": 12.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": null,
"retailer_t": null,
"vendor_t": null,
"variant": null,
"observations": null,
"default_scale": null,
"ff_id": null,
"created": 1704469925,
"modified": 1704469925
}
This endpoint returns the created Product.
HTTP Request
POST https://ripe-core-sbx.platforme.com/api/products
POST Body
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
brand | yes | text | The brand associated with the product. | |
name | yes | text | The product's identifier. | |
variant | no | text | null |
The variant (or sub-variant) of the product that serves to specialize the type of the product. |
observations | no | text | null |
Description of the product. |
gender | yes | text | The gender of the product (one of Male , Female , Kids and Unknown ). |
|
price_eur | no | float | null |
The product's price, in euros EUR . |
price_usd | no | float | null |
The product's price, in dollars USD . |
price_gbp | no | float | null |
The product's price, in british pound GBP . |
default_scale | no | text | null |
The default scale to be used when processing the product's size. |
ff_id | no | number | null |
Identifier of the product. |
Config
Example Request
curl "https://ripe-core-sbx.platforme.com/api/products/swear/vyner/config"
Example Response
{
"name": "vyner",
"brand": "swear",
"version": "186",
"path": "/data/builds/swear/models/vyner",
"parts": [
{
"name": "front",
"materials": [
{
"name": "nappa",
"colors": [
"white",
"black",
"navy",
"red",
"terracotta",
"beige",
"forest_green",
"dark_cherry",
"blush",
"grey",
"taupe"
]
},
{
"name": "suede",
"colors": [
"white",
"black",
"navy",
"red",
"terracotta",
"beige",
"forest_green",
"grey",
"taupe"
]
},
{
"name": "veg_tan",
"colors": [
"raw"
]
},
{
"name": "hairy_calf",
"colors": [
"white",
"black",
"navy",
"red",
"terracotta",
"leopard",
"camouflage",
"beige"
]
},
{
"name": "ostrich",
"colors": [
"white",
"black",
"tan",
"grey"
]
},
{
"name": "python",
"colors": [
"white",
"black",
"natural",
"silver",
"gold",
"neon_white",
"blush",
"grey",
"nude"
]
},
{
"name": "crocodile",
"colors": [
"white",
"black",
"navy",
"red",
"chestnut",
"nude",
"silver"
]
},
{
"name": "grain_metallic",
"colors": [
"purple",
"emerald",
"gold",
"silver"
]
}
]
},
{
"name": "side",
"materials": [
{
"name": "nappa",
"colors": [
"white",
"black",
"navy",
"red",
"terracotta",
"beige",
"forest_green",
"dark_cherry",
"blush",
"grey",
"taupe"
]
},
{
"name": "suede",
"colors": [
"white",
"black",
"navy",
"red",
"terracotta",
"beige",
"forest_green",
"grey",
"taupe"
]
},
{
"name": "metallic",
"colors": [
"silver",
"gold",
"copper",
"navy",
"fuchsia"
]
},
{
"name": "veg_tan",
"colors": [
"raw"
]
},
{
"name": "hairy_calf",
"colors": [
"white",
"black",
"navy",
"red",
"terracotta",
"leopard",
"camouflage",
"beige"
]
},
{
"name": "ostrich",
"colors": [
"white",
"black",
"tan",
"grey"
]
},
{
"name": "python",
"colors": [
"white",
"black",
"natural",
"silver",
"gold",
"neon_white",
"blush",
"grey",
"nude"
]
},
{
"name": "crocodile",
"colors": [
"white",
"black",
"navy",
"red",
"chestnut",
"nude",
"silver"
]
},
{
"name": "grain_metallic",
"colors": [
"purple",
"emerald",
"gold",
"silver"
]
}
]
},
{
"name": "lining",
"materials": [
{
"name": "calf_lining",
"colors": [
"white",
"black",
"tan",
"beige"
]
}
]
},
{
"name": "laces",
"materials": [
{
"name": "nylon",
"colors": [
"white",
"black",
"grey",
"navy",
"cobalt",
"red",
"fuchsia",
"rose",
"chocolate",
"terracotta",
"taupe",
"copper_brown",
"beige",
"forest_green",
"golden_yellow",
"neon_yellow",
"burnt_orange",
"blush",
"dark_cherry"
]
}
]
},
{
"name": "sole",
"materials": [
{
"name": "rubber",
"colors": [
"white",
"black",
"grey",
"tan",
"yellow",
"pink",
"red"
]
}
]
},
{
"name": "hardware",
"materials": [
{
"name": "metal",
"colors": [
"silver",
"gold",
"copper"
]
}
]
},
{
"name": "logo",
"materials": [
{
"name": "metal",
"colors": [
"silver",
"gold",
"copper"
]
}
]
},
{
"name": "shadow",
"materials": [
{
"name": "default",
"colors": [
"default"
]
}
]
}
],
"description": "vyner",
"title": "lace up round toe",
"style": "low",
"scale": {
"male": "it",
"female": "it",
"other": "it",
"all": "it"
},
"gender": "both",
"observations": "A contemporary take on the classic lace-up sneaker, the fully-customisable Vyner is all about comfort with its cushioned piping and padded collar. The low-top comes complete with a round toe and rubber sole, in addition to flat laces.",
"toe": "round",
"type": "very-large",
"size": [
1000,
1000
],
"tags": [
"generic",
"initials_type_zoom",
"initials_uppercase"
],
"sizes": {
"it:female": [
19,
21,
23,
25,
27,
29,
31
],
"it:male": [
25,
27,
29,
31,
33,
35,
37,
39,
41,
43,
45
]
},
"frames": 24,
"faces": [
"side",
"top"
],
"faces_m": {
"side": {
"frames": 24,
"thumbnail": true
},
"top": {
"frames": 1,
"thumbnail": true
}
},
"thumbnails": [
{
"name": "side-0",
"face": "side",
"frame": 0
},
{
"name": "top-0",
"face": "top",
"frame": 0
}
],
"hidden": [
"logo",
"shadow"
],
"blacklist": null,
"sync": null,
"defaults": null,
"initials": {
"profile": "base",
"z_index": 4,
"properties": [
{
"name": "metal_copper",
"type": "font"
},
{
"name": "metal_gold",
"type": "font"
},
{
"name": "metal_silver",
"type": "font"
}
],
"$profiles": {
"base": {
"frame": "top",
"align": "center",
"image_rotation": 270,
"font_family": "SwearGold",
"font_weight": "Regular",
"font_spacing": -10,
"exclusion": [
"logo"
],
"position": [
449,
408
],
"rotation": 0
},
"style::metal_copper": {
"font_family": "SwearCopper"
},
"style::metal_gold": {
"font_family": "SwearGold"
},
"style::metal_silver": {
"font_family": "SwearSilver"
},
"viewport::large": {
"viewport": [
324,
283,
250,
250
]
},
"viewport::medium": {
"viewport": [
349,
308,
200,
200
]
},
"viewport::small": {
"viewport": [
399,
358,
100,
100
]
},
"metal_copper": {
"font_family": "SwearCopper"
},
"metal_gold": {
"font_family": "SwearGold"
},
"metal_silver": {
"font_family": "SwearSilver"
},
"large": {
"viewport": [
324,
283,
250,
250
]
},
"medium": {
"viewport": [
349,
308,
200,
200
]
},
"small": {
"viewport": [
399,
358,
100,
100
]
}
},
"$alias": {
"report": [
"viewport::medium"
],
"step::personalization": [
"viewport::large"
],
"step::size": [
"viewport::medium"
]
}
},
"initials_frame": null,
"z_index": {
"shadow": 1,
"lining": 2,
"front": 3,
"side": 5,
"sole": 6,
"laces": 7,
"logo": 8,
"hardware": 9,
"overlay": 30000
},
"$info": {
"branch": "master",
"build": 186,
"build_fqn": "186",
"build_s": "186",
"config": {
"blend_shadow": {
"maltby": {
"fringe_shadow": "fringe"
}
},
"no_alpha_composite": [
"blue0_orange",
"clear_white",
"transparent0_white",
"white"
],
"opacity_shadow": {
"default": {
"alpha_divisor": 1,
"blur_radius": 1
},
"fringe_shadow": {
"alpha_divisor": 2,
"blur_radius": 3.5
}
},
"priorities": {
"accents": 3,
"collar": 8,
"elastic": 6,
"eyestay0_side": 9,
"fringe": 10000,
"fringe_hardware": 10001,
"front": 3,
"hardware": 7,
"heel0_trimmings": 5,
"heel_tab": 10,
"lace0_eyelet": 11,
"laces": 6,
"metal_caps": 10000,
"metal_toe_cap": 10000,
"mudguard": 7,
"outsole": 10002,
"overlay": 30000,
"rubber_strap": 10000,
"shadow": 1,
"side": 4,
"side0_tongue_detail": 4,
"sole": 12,
"strap_tip": 10000,
"strap_tips": 10000,
"tag_left": 13,
"tag_right": 13,
"toe0_tongue": 6,
"toe_cap": 20000,
"trimmings": 4,
"upper": 2,
"upper1": 2,
"upper2": 3,
"zip": 3
},
"repositions": {
"air_rev_nitro": "auto",
"air_rev_trigger": "auto",
"air_rev_xtra": "auto",
"air_revive": "auto",
"bond": 164,
"carnaby": 78,
"crosby": "auto",
"crosby_p": "auto",
"crosby_v2": "auto",
"element_black": "auto",
"element_blue_grey": "auto",
"element_blue_reflective": "auto",
"element_green": "auto",
"element_grey_reflective": "auto",
"element_neon_pink": "auto",
"element_red": "auto",
"element_yellow_pink": "auto",
"gypsy_denim": "auto",
"gypsy_multi": "auto",
"maltby": 78,
"redchurch": 78,
"regent": 140
},
"shadows": [
"fringe_shadow",
"patch",
"shadow"
],
"skip_colorize": [
"fringe_shadow",
"masks",
"overlay"
],
"skip_repositions": [
"overlay",
"top"
],
"skip_verify_defaults": [
"initials",
"masks",
"overlay",
"static",
"swatches"
],
"specific_colorize": {
"air_rev_nitro": {
"collar": "nappa",
"eyestay0_side": "nappa",
"heel0_trimmings": "nappa",
"heel_tab": "nappa",
"mudguard": "nappa",
"side0_tongue_detail": "nappa",
"toe0_tongue": "nappa"
},
"bond": {
"front": "nappa",
"heel": "nappa",
"side": "nappa",
"straps": "nappa"
},
"conduit": {
"front": "nappa",
"side": "nappa"
},
"dean2": {
"collar": "nappa",
"front": "nappa",
"side": "nappa"
},
"dean54": {
"front": "nappa",
"piping": "nappa",
"side": "nappa",
"toe_cap": "nappa"
},
"hoxton": {
"back_stay": "nappa",
"front": "nappa",
"side": "nappa"
},
"kingsland": {
"collar": "nappa",
"front": "nappa",
"side": "nappa"
},
"maddox": {
"front": "nappa",
"side": "nappa"
},
"maltby": {
"fringe": "nappa",
"front": "nappa",
"side": "nappa"
},
"marshall": {
"eye_stay": "nappa",
"front": "nappa",
"front_panel": "nappa",
"inside": "nappa",
"inside_panel": "nappa",
"outside": "nappa",
"tongue": "nappa"
},
"redchurch": {
"front": "nappa"
},
"regent": {
"ankle_side": "nappa",
"front": "nappa",
"heel": "nappa",
"side": "nappa",
"stay": "nappa"
},
"vyner": {
"front": "nappa",
"side": "nappa"
}
},
"static_dirs": [
"overlay"
],
"vendor": "swear"
},
"description": "Adding monogram beige and block parts in all colors",
"details": {
"aliyun_bucket": "",
"alpha_composite": true,
"collect": true,
"colorize": true,
"compress": true,
"description": "Adding monogram beige and block parts in all colors",
"dropbox_folder": "/deploy",
"models": [
"air_rev_nitro",
"air_rev_trigger",
"air_rev_xtra",
"air_revive",
"bond",
"carnaby",
"carnaby_will",
"conduit",
"crosby",
"crosby_p",
"crosby_v2",
"dean",
"dean2",
"dean54",
"element_black",
"element_blue_grey",
"element_blue_reflective",
"element_green",
"element_grey_reflective",
"element_neon_pink",
"element_red",
"element_yellow_pink",
"gypsy_denim",
"gypsy_multi",
"hoodie",
"hoxton",
"kingsland",
"maddox",
"maddox10cc",
"maddox_glitter",
"maltby",
"marshall",
"nori",
"redchurch",
"regent",
"ridge_runner",
"uglyww",
"vyner",
"vyner_glitter",
"vyner_hitop",
"vyner_hitop_glitter"
],
"publish": true,
"reposition": true,
"resave": true,
"source_commit": "53cbd06780a53ea8623dd5d00a200797c0a7867b",
"source_url": "http://gogs.platforme.com/platforme/builds.git",
"start_time": 1659606810.297122,
"strict": true,
"uid": "a1fbc3673666fc24a4f6b192b2da1be1dfcee001",
"upload": true,
"upload_branch": "master",
"upload_branch_n": "master",
"user": "da",
"user_email": "da@platforme.com",
"user_full": "da <da@platforme.com>"
},
"duration": 1721.8983755111694,
"extension": "zip",
"file_id": "id:P-yUG8Qxd2AAAAAAAAAX3g",
"file_name": "swear.186.zip",
"file_size": 6455908544,
"file_url": "https://www.dropbox.com/s/gr9qo4gqd7xjpza/swear.186.zip?dl=0",
"files": [
"./initials",
"./master.json",
"./models",
"./static",
"./swatches",
"./info.json"
],
"installed": 1670411958,
"packager": 2,
"sources": [
"dropbox"
],
"tags": [
"dropbox",
"global",
"us",
"usa"
],
"timestamp": 1659608532,
"user": "da <da@platforme.com>",
"vendor": "swear"
},
"$mtime": 1670411912.7246819,
"version_s": "186",
"version_i": 186,
"branch": "master",
"compatibility": 1,
"order": null,
"initials_patch": {
"suede": {
"white": {
"material": "nappa",
"color": "white"
},
"black": {
"material": "nappa",
"color": "black"
},
"navy": {
"material": "nappa",
"color": "navy"
},
"cobalt": {
"material": "nappa",
"color": "cobalt"
},
"red": {
"material": "nappa",
"color": "red"
},
"fuchsia": {
"material": "nappa",
"color": "fuchsia"
},
"chocolate": {
"material": "nappa",
"color": "chocolate"
},
"terracotta": {
"material": "nappa",
"color": "terracotta"
},
"beige": {
"material": "nappa",
"color": "beige"
},
"forest_green": {
"material": "nappa",
"color": "forest_green"
}
},
"hairy_calf": {
"white": {
"material": "nappa",
"color": "white"
},
"black": {
"material": "nappa",
"color": "black"
},
"navy": {
"material": "nappa",
"color": "navy"
},
"cobalt": {
"material": "nappa",
"color": "cobalt"
},
"red": {
"material": "nappa",
"color": "red"
},
"fuchsia": {
"material": "nappa",
"color": "fuchsia"
},
"terracotta": {
"material": "nappa",
"color": "terracotta"
},
"tan": {
"material": "nappa",
"color": "beige"
},
"mustard": {
"material": "nappa",
"color": "mustard"
},
"burnt_orange": {
"material": "nappa",
"color": "burnt_orange"
},
"leopard": {
"material": "nappa",
"color": "beige"
},
"camouflage": {
"material": "nappa",
"color": "forest_green"
}
},
"ostrich": {
"white": {
"material": "nappa",
"color": "white"
},
"black": {
"material": "nappa",
"color": "black"
},
"tan": {
"material": "nappa",
"color": "terracotta"
},
"neon_yellow": {
"material": "nappa",
"color": "neon_yellow"
},
"grey": {
"material": "nappa",
"color": "grey"
}
},
"python": {
"white": {
"material": "nappa",
"color": "white"
},
"black": {
"material": "nappa",
"color": "black"
},
"natural": {
"material": "nappa",
"color": "off_white"
},
"silver": {
"material": "metallic",
"color": "silver"
},
"gold": {
"material": "metallic",
"color": "gold"
},
"neon_white": {
"material": "nappa",
"color": "off_white"
}
},
"crocodile": {
"white": {
"material": "nappa",
"color": "white"
},
"black": {
"material": "nappa",
"color": "black"
},
"navy": {
"material": "nappa",
"color": "navy"
},
"red": {
"material": "nappa",
"color": "red"
},
"tan": {
"material": "nappa",
"color": "terracotta"
},
"nude": {
"material": "nappa",
"color": "beige"
},
"silver": {
"material": "metallic",
"color": "silver"
},
"antique_gold": {
"material": "metallic",
"color": "gold"
}
}
},
"initials_patch_materials": [
"embossed"
],
"initials_dot_materials": [
"embossed"
],
"initials_pivot_part": "front",
"always_patch": false,
"alias": null,
"restrictions": [],
"meta": {},
"locales": [
"en_us",
"ar",
"da_dk",
"de_de",
"es_es",
"fr_fr",
"it_it",
"ja_jp",
"ko_kr",
"nl_nl",
"pt_br",
"ru_ru",
"sv_se",
"zh_cn"
],
"variant": null
}
This endpoint returns the configuration of a product with the given brand, model and variant.
HTTP Request
GET https://ripe-core-sbx.platforme.com/api/products/<text:brand>/<text:model>/config
PATH Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
brand | yes | text | Brand's name. | |
model | yes | text | Model's name. |
GET Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
variant | no | number | null |
The product's variant. |
Resources
Config
Field | Type | Description |
---|---|---|
brand | text | Build's brand. |
name | text | Build's name. |
description | text | Product description text. |
title | text | Product marketing name. |
style | text | Style (as an open string) of the model. |
scale | text | Scale available for the product. |
gender | text | The gender of the product, it can be "male", "female" or "both". |
observations | text | Complementary description text. |
tags | list | List of tags that define certain behaviours for the product. |
sizes | dictionary | The start, end, and step for each scale of each available gender. |
frames | number | The number of side frames, all other views are considered to have only one frame. |
faces | list of text | The available perspective of the product. |
faces_m | dictionary | The number of frames of each face and a boolean to define if there is a thumbnail or not. |
parts | dictionary | Describes all customization products part and correspondent materials and colors. |
defaults | dictionary | Default material and color for every part. |
hidden | list of text | The parts that can't be customized by the end user. |
order | dictionary | Defines the order in which the original parts, materials and colors should be presented in the layout. |
alias | dictionary | Defines visual alias for part, materials or colors, note that a fully qualified name may be used to reduce ambiguity. |
blacklist | dictionary | Prevent combinations of appearing. |
restrictions | list of dictionary | Prevents parts or pairs of material-color from appearing together, meaning that when one is present on the customization, the other won't appear in the UI for selection, special cases exist for a single element item where that combination is always excluded from the UI (hard restriction). |
sync | dictionary | the parts that must have the same material and color, when one is changed the others should also change to the same combination. |
z_index | list of text | Defines the part's priorities for drawing, this should ensure proper layering of the model (no hidden parts). |
Order Endpoints
An order includes general information about a product's transaction entry and processing. Platforme API allows access to that information from the already existing orders but also to import new orders to the system. Furthermore, production order reports may be generated.
List
The list endpoint returns the existing orders according to the given parameters. If no parameters are given, it will 10 orders the user has permissions to access. A user only has permission to access and modify data related to him, meaning that he can only access data from the brands he is responsible for.
Query support can be consulted here
Example Request
curl "https://ripe-core-sbx.platforme.com/api/orders?filters[]=shoe:eq:vyner" \
-H "X-Secret-Key: $RIPE_KEY"
Example Response
[
{
"_id": "5c7fe48e4ce4e700625c7213",
"id": 4692,
"number": 4692,
"enabled": true,
"description": null,
"created": 1551885454,
"modified": 1670425697,
"meta": {
"sku": "654a29e7-8cf9-4446-98f4-f7dff2f4dc54",
"notified": 1670425696
},
"key": "51ee733a131bc68d2112aca82626879ceda76de9",
"status": "production",
"production_status": "unset",
"production": "produce",
"gender": "female",
"currency": "USD",
"country": "US",
"price": 400.0,
"prices": {
"components": {
"lining": {
"rule_id": 14931,
"rule_count": 3,
"price_taxes": 0.0,
"vat": 0.0,
"vat_rate": 20.0,
"price": 0.0,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 0.0,
"vat_included": true,
"ddp_included": true,
"fixed_price": true,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"sole": {
"rule_id": 14933,
"rule_count": 3,
"price_taxes": 0.0,
"vat": 0.0,
"vat_rate": 20.0,
"price": 0.0,
"currency": "USD",
"hs_code": 6403999065,
"notes": [
"Rubber"
],
"hs_code_priority": 1,
"price_original": 0.0,
"vat_included": true,
"ddp_included": true,
"fixed_price": true,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"hardware": {
"rule_id": 14930,
"rule_count": 3,
"price_taxes": 0.0,
"vat": 0.0,
"vat_rate": 20.0,
"price": 0.0,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 0.0,
"vat_included": true,
"ddp_included": true,
"fixed_price": true,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"laces": {
"rule_id": 15123,
"rule_count": 2,
"price_taxes": 0.0,
"vat": 0.0,
"vat_rate": 20.0,
"price": 0.0,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 0.0,
"vat_included": true,
"ddp_included": true,
"fixed_price": true,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"front": {
"rule_id": 14912,
"rule_count": 4,
"price_taxes": 135.0,
"vat": 22.5,
"vat_rate": 20.0,
"price": 112.5,
"currency": "USD",
"hs_code": 6403999065,
"notes": [
"Nappa Leather"
],
"hs_code_priority": 1,
"price_original": 135.0,
"vat_included": true,
"ddp_included": true,
"fixed_price": true,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"logo": {
"rule_id": 15123,
"rule_count": 2,
"price_taxes": 0.0,
"vat": 0.0,
"vat_rate": 20.0,
"price": 0.0,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 0.0,
"vat_included": true,
"ddp_included": true,
"fixed_price": true,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"shadow": {
"rule_id": 15123,
"rule_count": 2,
"price_taxes": 0.0,
"vat": 0.0,
"vat_rate": 20.0,
"price": 0.0,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 0.0,
"vat_included": true,
"ddp_included": true,
"fixed_price": true,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"side": {
"rule_id": 14923,
"rule_count": 4,
"price_taxes": 265.0,
"vat": 44.17,
"vat_rate": 20.0,
"price": 220.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [
"Nappa Leather"
],
"hs_code_priority": 1,
"price_original": 265.0,
"vat_included": true,
"ddp_included": true,
"fixed_price": true,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"engraving": {
"rule_id": 15123,
"rule_count": 2,
"price_taxes": 0.0,
"vat": 0.0,
"vat_rate": 20.0,
"price": 0.0,
"currency": "USD",
"price_original": 0.0,
"vat_included": true,
"ddp_included": true,
"fixed_price": true,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null
}
},
"total": {
"price_final": 400.0,
"price_taxes": 400.0,
"vat": 0.0,
"ddp": 0.0,
"ddp_percent": 0.0,
"vat_rate": 0.0,
"price": 400.0,
"currency": "USD",
"country": "US",
"hs_codes": [
6403999065,
null
],
"hs_code_priority": -1,
"shipping": 0.0,
"notes": [
"Nappa Leather",
"Rubber"
],
"diag": {
"no_round": {
"price_final": 400.0,
"price_taxes": 400.0,
"price": 400.0,
"vat": 0.0,
"ddp": 0.0
},
"patch": true,
"round_value": true,
"is_vat": false,
"is_ddp": true,
"is_european": false,
"is_rounded": false,
"vat_included": true,
"ddp_included": true,
"fixed_price": true,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null
},
"cites": false
}
},
"brand": "swear",
"shoe": "vyner",
"shoe_query": "model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"shoe_url": "/config/customization?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"image_url": "/compose?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"minify_hash": "Mzk4NjU",
"image_hash": "Mzk4NjY",
"image_o_hash": "Mzk4Njc",
"top_hash": "Mzk4Njg",
"top_o_hash": "Mzk4Njk",
"bottom_hash": "Mzk4NzA",
"bottom_o_hash": "Mzk4NzE",
"back_hash": "Mzk4NzI",
"side_hash": "Mzk4NzM",
"structure": "{\"brand\": \"swear\", \"model\": \"vyner\", \"variant\": \"\", \"parts\": [{\"color\": \"white\", \"material\": \"nappa\", \"name\": \"front\", \"hidden\": false, \"optional\": false}, {\"color\": \"white\", \"material\": \"nappa\", \"name\": \"side\", \"hidden\": false, \"optional\": false}, {\"color\": \"white\", \"material\": \"calf_lining\", \"name\": \"lining\", \"hidden\": false, \"optional\": false}, {\"color\": \"white\", \"material\": \"nylon\", \"name\": \"laces\", \"hidden\": false, \"optional\": false}, {\"color\": \"white\", \"material\": \"rubber\", \"name\": \"sole\", \"hidden\": false, \"optional\": false}, {\"color\": \"silver\", \"material\": \"metal\", \"name\": \"hardware\", \"hidden\": false, \"optional\": false}, {\"color\": \"silver\", \"material\": \"metal\", \"name\": \"logo\", \"hidden\": true, \"optional\": false}, {\"color\": \"default\", \"material\": \"default\", \"name\": \"shadow\", \"hidden\": true, \"optional\": false}], \"parts_m\": {\"lining\": {\"color\": \"white\", \"material\": \"calf_lining\"}, \"sole\": {\"color\": \"white\", \"material\": \"rubber\"}, \"hardware\": {\"color\": \"silver\", \"material\": \"metal\"}, \"laces\": {\"color\": \"white\", \"material\": \"nylon\"}, \"front\": {\"color\": \"white\", \"material\": \"nappa\"}, \"logo\": {\"color\": \"silver\", \"material\": \"metal\"}, \"shadow\": {\"color\": \"default\", \"material\": \"default\"}, \"side\": {\"color\": \"white\", \"material\": \"nappa\"}}, \"gender\": \"female\", \"size\": 24, \"query\": \"model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default\", \"url\": \"/config/customization?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default\", \"image\": \"/compose?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default\", \"extras\": 0, \"engraving\": \"metal_silver:style\", \"initials\": \"AA\"}",
"ff_id": null,
"ff_shoe_id": 12212972,
"ff_order_id": "c7276d0f-b4d2-4300-b05c-4ad6f8e1eed3",
"delivery_time": 10,
"tracking_number": null,
"tracking_url": null,
"states": [
230914
],
"attachments": [],
"account": "docs@platforme.com",
"customer": null,
"ambassador": null,
"store": null,
"brand_t": "swear",
"retailer_t": null,
"status_index": 2,
"vendor_t": "FLAJ",
"factory": "FLAJ",
"notes": [],
"report_url_e": null,
"type": "build",
"variant": null,
"chat": null,
"invoicing_info": {},
"last_update_touches": [
"dva@platforme.com"
],
"last_updated": 1670425696,
"pickup_number": null,
"priority": null,
"proof_of_delivery_url": null,
"return_tracking_number": null,
"return_tracking_url": null,
"scale_s": null,
"shipping_info": {},
"states_names": [
"production"
],
"tag": null,
"transport": {},
"transport_ready": false,
"quantity": 1,
"domain": null,
"sku": null,
"retail_id": null,
"item_id": null,
"invoice": {},
"last_state_change": null,
"issues": [],
"number_s": "#004692",
"channel": "digital",
"delivery_d": 1552749454.0,
"scale": "it",
"size_scaled": 37.5,
"details": {
"brand": "swear",
"model": "vyner",
"variant": "",
"parts": [
{
"color": "white",
"material": "nappa",
"name": "front",
"hidden": false,
"optional": false
},
{
"color": "white",
"material": "nappa",
"name": "side",
"hidden": false,
"optional": false
},
{
"color": "white",
"material": "calf_lining",
"name": "lining",
"hidden": false,
"optional": false
},
{
"color": "white",
"material": "nylon",
"name": "laces",
"hidden": false,
"optional": false
},
{
"color": "white",
"material": "rubber",
"name": "sole",
"hidden": false,
"optional": false
},
{
"color": "silver",
"material": "metal",
"name": "hardware",
"hidden": false,
"optional": false
},
{
"color": "silver",
"material": "metal",
"name": "logo",
"hidden": true,
"optional": false
},
{
"color": "default",
"material": "default",
"name": "shadow",
"hidden": true,
"optional": false
}
],
"parts_m": {
"lining": {
"color": "white",
"material": "calf_lining"
},
"sole": {
"color": "white",
"material": "rubber"
},
"hardware": {
"color": "silver",
"material": "metal"
},
"laces": {
"color": "white",
"material": "nylon"
},
"front": {
"color": "white",
"material": "nappa"
},
"logo": {
"color": "silver",
"material": "metal"
},
"shadow": {
"color": "default",
"material": "default"
},
"side": {
"color": "white",
"material": "nappa"
}
},
"gender": "female",
"size": 24,
"query": "model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"url": "/config/customization?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"image": "/compose?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"extras": 0,
"engraving": "metal_silver:style",
"initials": "AA"
}
},
{
"_id": "5d124f7cc846b3fae05674ae",
"id": 5060,
"number": 5060,
"enabled": true,
"description": null,
"created": 1561481083,
"modified": 1654078565,
"meta": {
"sku": "824de319-5ef7-463b-84b9-cc534712d396",
"notified": 1561481084
},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": "FLAJ",
"key": "7529cb325759db0564c16bba2daa32035b71fee6",
"status": "created",
"status_index": 1,
"production_status": "unset",
"production": "produce",
"gender": "female",
"currency": "USD",
"country": "US",
"price": 400.0,
"prices": {
"components": {
"lining": {
"rule_id": 14931,
"rule_count": 3,
"price_taxes": 0.0,
"vat": 0.0,
"vat_rate": 20.0,
"price": 0.0,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 0.0,
"vat_included": true,
"ddp_included": true,
"fixed_price": true,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"sole": {
"rule_id": 14933,
"rule_count": 3,
"price_taxes": 0.0,
"vat": 0.0,
"vat_rate": 20.0,
"price": 0.0,
"currency": "USD",
"hs_code": 6403999065,
"notes": [
"Rubber"
],
"hs_code_priority": 1,
"price_original": 0.0,
"vat_included": true,
"ddp_included": true,
"fixed_price": true,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"hardware": {
"rule_id": 14930,
"rule_count": 3,
"price_taxes": 0.0,
"vat": 0.0,
"vat_rate": 20.0,
"price": 0.0,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 0.0,
"vat_included": true,
"ddp_included": true,
"fixed_price": true,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"laces": {
"rule_id": 15123,
"rule_count": 2,
"price_taxes": 0.0,
"vat": 0.0,
"vat_rate": 20.0,
"price": 0.0,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 0.0,
"vat_included": true,
"ddp_included": true,
"fixed_price": true,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"front": {
"rule_id": 14912,
"rule_count": 4,
"price_taxes": 135.0,
"vat": 22.5,
"vat_rate": 20.0,
"price": 112.5,
"currency": "USD",
"hs_code": 6403999065,
"notes": [
"Nappa Leather"
],
"hs_code_priority": 1,
"price_original": 135.0,
"vat_included": true,
"ddp_included": true,
"fixed_price": true,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"logo": {
"rule_id": 15123,
"rule_count": 2,
"price_taxes": 0.0,
"vat": 0.0,
"vat_rate": 20.0,
"price": 0.0,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 0.0,
"vat_included": true,
"ddp_included": true,
"fixed_price": true,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"shadow": {
"rule_id": 15123,
"rule_count": 2,
"price_taxes": 0.0,
"vat": 0.0,
"vat_rate": 20.0,
"price": 0.0,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 0.0,
"vat_included": true,
"ddp_included": true,
"fixed_price": true,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"side": {
"rule_id": 14923,
"rule_count": 4,
"price_taxes": 265.0,
"vat": 44.17,
"vat_rate": 20.0,
"price": 220.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [
"Nappa Leather"
],
"hs_code_priority": 1,
"price_original": 265.0,
"vat_included": true,
"ddp_included": true,
"fixed_price": true,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"engraving": {
"rule_id": 15123,
"rule_count": 2,
"price_taxes": 0.0,
"vat": 0.0,
"vat_rate": 20.0,
"price": 0.0,
"currency": "USD",
"price_original": 0.0,
"vat_included": true,
"ddp_included": true,
"fixed_price": true,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null
}
},
"total": {
"price_final": 400.0,
"price_taxes": 400.0,
"vat": 0.0,
"ddp": 0.0,
"ddp_percent": 0.0,
"vat_rate": 0.0,
"price": 400.0,
"currency": "USD",
"country": "US",
"hs_codes": [
6403999065,
null
],
"hs_code_priority": -1,
"shipping": 0.0,
"notes": [
"Rubber",
"Nappa Leather"
],
"diag": {
"no_round": {
"price_final": 400.0,
"price_taxes": 400.0,
"price": 400.0,
"vat": 0.0,
"ddp": 0.0
},
"patch": true,
"round_value": true,
"is_vat": false,
"is_ddp": true,
"is_european": false,
"is_rounded": false,
"vat_included": true,
"ddp_included": true,
"fixed_price": true,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null
},
"cites": false
}
},
"brand": "swear",
"shoe": "vyner",
"shoe_query": "model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"shoe_url": "/config/customization?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"image_url": "/compose?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"minify_hash": "Mzk4NjU",
"image_hash": "Mzk4NjY",
"image_o_hash": "Mzk4Njc",
"top_hash": "Mzk4Njg",
"top_o_hash": "Mzk4Njk",
"bottom_hash": "Mzk4NzA",
"bottom_o_hash": "Mzk4NzE",
"back_hash": "Mzk4NzI",
"side_hash": "Mzk4NzM",
"structure": "{\"brand\": \"swear\", \"model\": \"vyner\", \"variant\": \"\", \"parts\": [{\"color\": \"white\", \"material\": \"nappa\", \"name\": \"front\", \"hidden\": false, \"optional\": false}, {\"color\": \"white\", \"material\": \"nappa\", \"name\": \"side\", \"hidden\": false, \"optional\": false}, {\"color\": \"white\", \"material\": \"calf_lining\", \"name\": \"lining\", \"hidden\": false, \"optional\": false}, {\"color\": \"white\", \"material\": \"nylon\", \"name\": \"laces\", \"hidden\": false, \"optional\": false}, {\"color\": \"white\", \"material\": \"rubber\", \"name\": \"sole\", \"hidden\": false, \"optional\": false}, {\"color\": \"silver\", \"material\": \"metal\", \"name\": \"hardware\", \"hidden\": false, \"optional\": false}, {\"color\": \"silver\", \"material\": \"metal\", \"name\": \"logo\", \"hidden\": true, \"optional\": false}, {\"color\": \"default\", \"material\": \"default\", \"name\": \"shadow\", \"hidden\": true, \"optional\": false}], \"parts_m\": {\"lining\": {\"color\": \"white\", \"material\": \"calf_lining\"}, \"sole\": {\"color\": \"white\", \"material\": \"rubber\"}, \"hardware\": {\"color\": \"silver\", \"material\": \"metal\"}, \"laces\": {\"color\": \"white\", \"material\": \"nylon\"}, \"front\": {\"color\": \"white\", \"material\": \"nappa\"}, \"logo\": {\"color\": \"silver\", \"material\": \"metal\"}, \"shadow\": {\"color\": \"default\", \"material\": \"default\"}, \"side\": {\"color\": \"white\", \"material\": \"nappa\"}}, \"gender\": \"female\", \"size\": 25, \"query\": \"model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default\", \"url\": \"/config/customization?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default\", \"image\": \"/compose?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default\", \"extras\": 0, \"engraving\": \"metal_silver:style\", \"initials\": \"AA\", \"initials_extra\": {\"main\": {\"initials\": \"AA\", \"engraving\": \"metal_silver:style\"}}}",
"ff_id": null,
"ff_shoe_id": 12212972,
"ff_order_id": "71ddafd6-a788-4cf8-93b2-420c2d6bd2e3",
"delivery_time": 10,
"tracking_number": null,
"tracking_url": null,
"states": [
2186
],
"attachments": [],
"account": "docs@platforme.com",
"customer": null,
"ambassador": null,
"store": null,
"factory": "FLAJ",
"notes": [],
"report_url_e": null,
"type": "build",
"variant": null,
"chat": null,
"invoicing_info": {},
"last_update_touches": [],
"last_updated": null,
"pickup_number": null,
"priority": null,
"proof_of_delivery_url": null,
"return_tracking_number": null,
"return_tracking_url": null,
"scale_s": null,
"shipping_info": {},
"states_names": [],
"tag": null,
"transport": {},
"transport_ready": false,
"quantity": 1,
"domain": null,
"sku": null,
"retail_id": null,
"item_id": null,
"invoice": {},
"last_state_change": null,
"issues": [],
"number_s": "#005060",
"channel": "digital",
"delivery_d": 1562345083.0,
"scale": "it",
"size_scaled": 38.0,
"details": {
"brand": "swear",
"model": "vyner",
"variant": "",
"parts": [
{
"color": "white",
"material": "nappa",
"name": "front",
"hidden": false,
"optional": false
},
{
"color": "white",
"material": "nappa",
"name": "side",
"hidden": false,
"optional": false
},
{
"color": "white",
"material": "calf_lining",
"name": "lining",
"hidden": false,
"optional": false
},
{
"color": "white",
"material": "nylon",
"name": "laces",
"hidden": false,
"optional": false
},
{
"color": "white",
"material": "rubber",
"name": "sole",
"hidden": false,
"optional": false
},
{
"color": "silver",
"material": "metal",
"name": "hardware",
"hidden": false,
"optional": false
},
{
"color": "silver",
"material": "metal",
"name": "logo",
"hidden": true,
"optional": false
},
{
"color": "default",
"material": "default",
"name": "shadow",
"hidden": true,
"optional": false
}
],
"parts_m": {
"lining": {
"color": "white",
"material": "calf_lining"
},
"sole": {
"color": "white",
"material": "rubber"
},
"hardware": {
"color": "silver",
"material": "metal"
},
"laces": {
"color": "white",
"material": "nylon"
},
"front": {
"color": "white",
"material": "nappa"
},
"logo": {
"color": "silver",
"material": "metal"
},
"shadow": {
"color": "default",
"material": "default"
},
"side": {
"color": "white",
"material": "nappa"
}
},
"gender": "female",
"size": 25,
"query": "model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"url": "/config/customization?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"image": "/compose?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"extras": 0,
"engraving": "metal_silver:style",
"initials": "AA",
"initials_extra": {
"main": {
"initials": "AA",
"engraving": "metal_silver:style"
}
}
}
},
{
"_id": "5cf798cc8dfda5dfe7567378",
"id": 5014,
"number": 5014,
"enabled": true,
"description": null,
"created": 1559730380,
"modified": 1654078565,
"meta": {
"sku": "42c01b55-c9e4-4c9a-aea8-0fbe42c010f6",
"notified": 1559730380
},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": "FLAJ",
"key": "9b749204d321780bf8f4659fc8c1d25850411a38",
"status": "created",
"status_index": 1,
"production_status": "unset",
"production": "produce",
"gender": "female",
"currency": "USD",
"country": "US",
"price": 400.0,
"prices": {
"components": {
"lining": {
"rule_id": 14931,
"rule_count": 3,
"price_taxes": 0.0,
"vat": 0.0,
"vat_rate": 20.0,
"price": 0.0,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 0.0,
"vat_included": true,
"ddp_included": true,
"fixed_price": true,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"sole": {
"rule_id": 14933,
"rule_count": 3,
"price_taxes": 0.0,
"vat": 0.0,
"vat_rate": 20.0,
"price": 0.0,
"currency": "USD",
"hs_code": 6403999065,
"notes": [
"Rubber"
],
"hs_code_priority": 1,
"price_original": 0.0,
"vat_included": true,
"ddp_included": true,
"fixed_price": true,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"hardware": {
"rule_id": 14930,
"rule_count": 3,
"price_taxes": 0.0,
"vat": 0.0,
"vat_rate": 20.0,
"price": 0.0,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 0.0,
"vat_included": true,
"ddp_included": true,
"fixed_price": true,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"laces": {
"rule_id": 15123,
"rule_count": 2,
"price_taxes": 0.0,
"vat": 0.0,
"vat_rate": 20.0,
"price": 0.0,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 0.0,
"vat_included": true,
"ddp_included": true,
"fixed_price": true,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"front": {
"rule_id": 14912,
"rule_count": 4,
"price_taxes": 135.0,
"vat": 22.5,
"vat_rate": 20.0,
"price": 112.5,
"currency": "USD",
"hs_code": 6403999065,
"notes": [
"Nappa Leather"
],
"hs_code_priority": 1,
"price_original": 135.0,
"vat_included": true,
"ddp_included": true,
"fixed_price": true,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"logo": {
"rule_id": 15123,
"rule_count": 2,
"price_taxes": 0.0,
"vat": 0.0,
"vat_rate": 20.0,
"price": 0.0,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 0.0,
"vat_included": true,
"ddp_included": true,
"fixed_price": true,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"shadow": {
"rule_id": 15123,
"rule_count": 2,
"price_taxes": 0.0,
"vat": 0.0,
"vat_rate": 20.0,
"price": 0.0,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 0.0,
"vat_included": true,
"ddp_included": true,
"fixed_price": true,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"side": {
"rule_id": 14923,
"rule_count": 4,
"price_taxes": 265.0,
"vat": 44.17,
"vat_rate": 20.0,
"price": 220.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [
"Nappa Leather"
],
"hs_code_priority": 1,
"price_original": 265.0,
"vat_included": true,
"ddp_included": true,
"fixed_price": true,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"engraving": {
"rule_id": 15123,
"rule_count": 2,
"price_taxes": 0.0,
"vat": 0.0,
"vat_rate": 20.0,
"price": 0.0,
"currency": "USD",
"price_original": 0.0,
"vat_included": true,
"ddp_included": true,
"fixed_price": true,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null
}
},
"total": {
"price_final": 400.0,
"price_taxes": 400.0,
"vat": 0.0,
"ddp": 0.0,
"ddp_percent": 0.0,
"vat_rate": 0.0,
"price": 400.0,
"currency": "USD",
"country": "US",
"hs_codes": [
6403999065,
null
],
"hs_code_priority": -1,
"shipping": 0.0,
"notes": [
"Rubber",
"Nappa Leather"
],
"diag": {
"no_round": {
"price_final": 400.0,
"price_taxes": 400.0,
"price": 400.0,
"vat": 0.0,
"ddp": 0.0
},
"patch": true,
"round_value": true,
"is_vat": false,
"is_ddp": true,
"is_european": false,
"is_rounded": false,
"vat_included": true,
"ddp_included": true,
"fixed_price": true,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null
},
"cites": false
}
},
"brand": "swear",
"shoe": "vyner",
"shoe_query": "model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"shoe_url": "/config/customization?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"image_url": "/compose?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"minify_hash": "Mzk4NjU",
"image_hash": "Mzk4NjY",
"image_o_hash": "Mzk4Njc",
"top_hash": "Mzk4Njg",
"top_o_hash": "Mzk4Njk",
"bottom_hash": "Mzk4NzA",
"bottom_o_hash": "Mzk4NzE",
"back_hash": "Mzk4NzI",
"side_hash": "Mzk4NzM",
"structure": "{\"brand\": \"swear\", \"model\": \"vyner\", \"variant\": \"\", \"parts\": [{\"color\": \"white\", \"material\": \"nappa\", \"name\": \"front\", \"hidden\": false, \"optional\": false}, {\"color\": \"white\", \"material\": \"nappa\", \"name\": \"side\", \"hidden\": false, \"optional\": false}, {\"color\": \"white\", \"material\": \"calf_lining\", \"name\": \"lining\", \"hidden\": false, \"optional\": false}, {\"color\": \"white\", \"material\": \"nylon\", \"name\": \"laces\", \"hidden\": false, \"optional\": false}, {\"color\": \"white\", \"material\": \"rubber\", \"name\": \"sole\", \"hidden\": false, \"optional\": false}, {\"color\": \"silver\", \"material\": \"metal\", \"name\": \"hardware\", \"hidden\": false, \"optional\": false}, {\"color\": \"silver\", \"material\": \"metal\", \"name\": \"logo\", \"hidden\": true, \"optional\": false}, {\"color\": \"default\", \"material\": \"default\", \"name\": \"shadow\", \"hidden\": true, \"optional\": false}], \"parts_m\": {\"lining\": {\"color\": \"white\", \"material\": \"calf_lining\"}, \"sole\": {\"color\": \"white\", \"material\": \"rubber\"}, \"hardware\": {\"color\": \"silver\", \"material\": \"metal\"}, \"laces\": {\"color\": \"white\", \"material\": \"nylon\"}, \"front\": {\"color\": \"white\", \"material\": \"nappa\"}, \"logo\": {\"color\": \"silver\", \"material\": \"metal\"}, \"shadow\": {\"color\": \"default\", \"material\": \"default\"}, \"side\": {\"color\": \"white\", \"material\": \"nappa\"}}, \"gender\": \"female\", \"size\": 25, \"query\": \"model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default\", \"url\": \"/config/customization?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default\", \"image\": \"/compose?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default\", \"extras\": 0, \"engraving\": \"metal_silver:style\", \"initials\": \"AA\", \"initials_extra\": {\"main\": {\"initials\": \"AA\", \"engraving\": \"metal_silver:style\"}}}",
"ff_id": null,
"ff_shoe_id": 12212972,
"ff_order_id": "a8d2da57-a2fc-4da0-be01-184907ba4084",
"delivery_time": 10,
"tracking_number": null,
"tracking_url": null,
"states": [
2142
],
"attachments": [],
"account": "docs@platforme.com",
"customer": null,
"ambassador": null,
"store": null,
"factory": "FLAJ",
"notes": [],
"report_url_e": null,
"type": "build",
"variant": null,
"chat": null,
"invoicing_info": {},
"last_update_touches": [],
"last_updated": null,
"pickup_number": null,
"priority": null,
"proof_of_delivery_url": null,
"return_tracking_number": null,
"return_tracking_url": null,
"scale_s": null,
"shipping_info": {},
"states_names": [],
"tag": null,
"transport": {},
"transport_ready": false,
"quantity": 1,
"domain": null,
"sku": null,
"retail_id": null,
"item_id": null,
"invoice": {},
"last_state_change": null,
"issues": [],
"number_s": "#005014",
"channel": "digital",
"delivery_d": 1560594380.0,
"scale": "it",
"size_scaled": 38.0,
"details": {
"brand": "swear",
"model": "vyner",
"variant": "",
"parts": [
{
"color": "white",
"material": "nappa",
"name": "front",
"hidden": false,
"optional": false
},
{
"color": "white",
"material": "nappa",
"name": "side",
"hidden": false,
"optional": false
},
{
"color": "white",
"material": "calf_lining",
"name": "lining",
"hidden": false,
"optional": false
},
{
"color": "white",
"material": "nylon",
"name": "laces",
"hidden": false,
"optional": false
},
{
"color": "white",
"material": "rubber",
"name": "sole",
"hidden": false,
"optional": false
},
{
"color": "silver",
"material": "metal",
"name": "hardware",
"hidden": false,
"optional": false
},
{
"color": "silver",
"material": "metal",
"name": "logo",
"hidden": true,
"optional": false
},
{
"color": "default",
"material": "default",
"name": "shadow",
"hidden": true,
"optional": false
}
],
"parts_m": {
"lining": {
"color": "white",
"material": "calf_lining"
},
"sole": {
"color": "white",
"material": "rubber"
},
"hardware": {
"color": "silver",
"material": "metal"
},
"laces": {
"color": "white",
"material": "nylon"
},
"front": {
"color": "white",
"material": "nappa"
},
"logo": {
"color": "silver",
"material": "metal"
},
"shadow": {
"color": "default",
"material": "default"
},
"side": {
"color": "white",
"material": "nappa"
}
},
"gender": "female",
"size": 25,
"query": "model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"url": "/config/customization?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"image": "/compose?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"extras": 0,
"engraving": "metal_silver:style",
"initials": "AA",
"initials_extra": {
"main": {
"initials": "AA",
"engraving": "metal_silver:style"
}
}
}
},
{
"_id": "5e270081c4b8546c39d37083",
"id": 9238,
"number": 9238,
"enabled": true,
"description": null,
"created": 1579614337,
"modified": 1654078565,
"meta": {
"sku": "9aafb745-b5b9-4319-8772-057e52c8d46a"
},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": "FLAJ",
"key": "64ab967932131ec89b06a8d8775741b78a370dac",
"status": "created",
"status_index": 1,
"production_status": "unset",
"production": "produce",
"gender": "female",
"currency": "USD",
"country": "US",
"price": 260.0,
"prices": {
"components": {
"front": {
"rule_id": 18660,
"rule_count": 4,
"price_taxes": 10.0,
"vat": 1.87,
"vat_rate": 23.0,
"price": 8.13,
"currency": "USD",
"hs_code": 6403999065,
"notes": [
"Nappa Leather"
],
"hs_code_priority": 1,
"price_original": 10.0,
"vat_included": true,
"ddp_included": true,
"fixed_price": true,
"round_price": false,
"base_country": "PT",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"hardware": {
"rule_id": 18669,
"rule_count": 3,
"price_taxes": 20.0,
"vat": 3.74,
"vat_rate": 23.0,
"price": 16.26,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 20.0,
"vat_included": true,
"ddp_included": true,
"fixed_price": true,
"round_price": false,
"base_country": "PT",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"laces": {
"rule_id": 18673,
"rule_count": 3,
"price_taxes": 0.0,
"vat": 0.0,
"vat_rate": 23.0,
"price": 0.0,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 0.0,
"vat_included": true,
"ddp_included": true,
"fixed_price": true,
"round_price": false,
"base_country": "PT",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"lining": {
"rule_id": 18672,
"rule_count": 3,
"price_taxes": 20.0,
"vat": 3.74,
"vat_rate": 23.0,
"price": 16.26,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 20.0,
"vat_included": true,
"ddp_included": true,
"fixed_price": true,
"round_price": false,
"base_country": "PT",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"side": {
"rule_id": 18680,
"rule_count": 4,
"price_taxes": 20.0,
"vat": 3.74,
"vat_rate": 23.0,
"price": 16.26,
"currency": "USD",
"hs_code": 6403999065,
"notes": [
"Nappa Leather"
],
"hs_code_priority": 1,
"price_original": 20.0,
"vat_included": true,
"ddp_included": true,
"fixed_price": true,
"round_price": false,
"base_country": "PT",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"sole": {
"rule_id": 18670,
"rule_count": 3,
"price_taxes": 15.01,
"vat": 2.81,
"vat_rate": 23.0,
"price": 12.2,
"currency": "USD",
"hs_code": 6403999065,
"notes": [
"Rubber"
],
"hs_code_priority": 1,
"price_original": 15.0,
"vat_included": true,
"ddp_included": true,
"fixed_price": true,
"round_price": false,
"base_country": "PT",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"logo": {
"rule_id": 18690,
"rule_count": 2,
"price_taxes": 0.0,
"vat": 0.0,
"vat_rate": 23.0,
"price": 0.0,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 0.0,
"vat_included": true,
"ddp_included": true,
"fixed_price": true,
"round_price": false,
"base_country": "PT",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"shadow": {
"rule_id": 18671,
"rule_count": 3,
"price_taxes": 175.0,
"vat": 32.72,
"vat_rate": 23.0,
"price": 142.28,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 175.0,
"vat_included": true,
"ddp_included": true,
"fixed_price": true,
"round_price": false,
"base_country": "PT",
"base_currency": "EUR",
"exchanged": null,
"cites": false
}
},
"total": {
"price_final": 260.0,
"price_taxes": 260.0,
"vat": 0.0,
"ddp": 0.0,
"ddp_percent": 0.0,
"vat_rate": 0.0,
"price": 260.0,
"currency": "USD",
"country": "US",
"hs_codes": [
6403999065
],
"hs_code_priority": 1,
"shipping": 0.0,
"notes": [
"Rubber",
"Nappa Leather"
],
"diag": {
"no_round": {
"price_final": 260.0,
"price_taxes": 260.0,
"price": 260.0,
"vat": 0.0,
"ddp": 0.0
},
"patch": true,
"round_value": true,
"is_vat": false,
"is_ddp": true,
"is_european": false,
"is_rounded": false,
"vat_included": true,
"ddp_included": true,
"fixed_price": true,
"round_price": false,
"base_country": "PT",
"base_currency": "EUR",
"exchanged": null
},
"cites": false
}
},
"brand": "swear",
"shoe": "vyner",
"variant": null,
"shoe_query": "model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"shoe_url": "/config/customization?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"image_url": "/compose?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"minify_hash": "Mzk4NjU",
"image_hash": "Mzk4NjY",
"image_o_hash": "Mzk4Njc",
"top_hash": "Mzk4Njg",
"top_o_hash": "Mzk4Njk",
"bottom_hash": "Mzk4NzA",
"bottom_o_hash": "Mzk4NzE",
"back_hash": "Mzk4NzI",
"side_hash": "Mzk4NzM",
"structure": "{\"brand\": \"swear\", \"model\": \"vyner\", \"variant\": null, \"parts\": [{\"material\": \"nappa\", \"color\": \"white\", \"name\": \"front\", \"hidden\": false, \"optional\": false}, {\"material\": \"nappa\", \"color\": \"white\", \"name\": \"side\", \"hidden\": false, \"optional\": false}, {\"material\": \"calf_lining\", \"color\": \"white\", \"name\": \"lining\", \"hidden\": false, \"optional\": false}, {\"material\": \"nylon\", \"color\": \"white\", \"name\": \"laces\", \"hidden\": false, \"optional\": false}, {\"material\": \"rubber\", \"color\": \"white\", \"name\": \"sole\", \"hidden\": false, \"optional\": false}, {\"material\": \"metal\", \"color\": \"silver\", \"name\": \"hardware\", \"hidden\": false, \"optional\": false}, {\"material\": \"metal\", \"color\": \"silver\", \"name\": \"logo\", \"hidden\": true, \"optional\": false}, {\"material\": \"default\", \"color\": \"default\", \"name\": \"shadow\", \"hidden\": true, \"optional\": false}], \"parts_m\": {\"front\": {\"material\": \"nappa\", \"color\": \"white\"}, \"hardware\": {\"material\": \"metal\", \"color\": \"silver\"}, \"laces\": {\"material\": \"nylon\", \"color\": \"white\"}, \"lining\": {\"material\": \"calf_lining\", \"color\": \"white\"}, \"side\": {\"material\": \"nappa\", \"color\": \"white\"}, \"sole\": {\"material\": \"rubber\", \"color\": \"white\"}, \"logo\": {\"material\": \"metal\", \"color\": \"silver\"}, \"shadow\": {\"material\": \"default\", \"color\": \"default\"}}, \"gender\": \"female\", \"size\": 25, \"query\": \"model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default\", \"url\": \"/config/customization?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default\", \"image\": \"/compose?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default\", \"extras\": 0}",
"ff_id": null,
"ff_shoe_id": 12212972,
"ff_order_id": "936ee106-f154-4a86-9da1-0e99b5fb8abf",
"delivery_time": 10,
"tracking_number": null,
"tracking_url": null,
"notes": [],
"states": [
5282
],
"attachments": [],
"account": "docs@platforme.com",
"customer": null,
"ambassador": null,
"store": null,
"factory": "FLAJ",
"report_url_e": null,
"type": "build",
"chat": null,
"invoicing_info": {},
"last_update_touches": [],
"last_updated": null,
"pickup_number": null,
"priority": null,
"proof_of_delivery_url": null,
"return_tracking_number": null,
"return_tracking_url": null,
"scale_s": null,
"shipping_info": {},
"states_names": [],
"tag": null,
"transport": {},
"transport_ready": false,
"quantity": 1,
"domain": null,
"sku": null,
"retail_id": null,
"item_id": null,
"invoice": {},
"last_state_change": null,
"issues": [],
"number_s": "#009238",
"channel": "digital",
"delivery_d": 1580478337.0,
"scale": "it",
"size_scaled": 38.0,
"details": {
"brand": "swear",
"model": "vyner",
"variant": null,
"parts": [
{
"material": "nappa",
"color": "white",
"name": "front",
"hidden": false,
"optional": false
},
{
"material": "nappa",
"color": "white",
"name": "side",
"hidden": false,
"optional": false
},
{
"material": "calf_lining",
"color": "white",
"name": "lining",
"hidden": false,
"optional": false
},
{
"material": "nylon",
"color": "white",
"name": "laces",
"hidden": false,
"optional": false
},
{
"material": "rubber",
"color": "white",
"name": "sole",
"hidden": false,
"optional": false
},
{
"material": "metal",
"color": "silver",
"name": "hardware",
"hidden": false,
"optional": false
},
{
"material": "metal",
"color": "silver",
"name": "logo",
"hidden": true,
"optional": false
},
{
"material": "default",
"color": "default",
"name": "shadow",
"hidden": true,
"optional": false
}
],
"parts_m": {
"front": {
"material": "nappa",
"color": "white"
},
"hardware": {
"material": "metal",
"color": "silver"
},
"laces": {
"material": "nylon",
"color": "white"
},
"lining": {
"material": "calf_lining",
"color": "white"
},
"side": {
"material": "nappa",
"color": "white"
},
"sole": {
"material": "rubber",
"color": "white"
},
"logo": {
"material": "metal",
"color": "silver"
},
"shadow": {
"material": "default",
"color": "default"
}
},
"gender": "female",
"size": 25,
"query": "model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"url": "/config/customization?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"image": "/compose?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"extras": 0
}
},
{
"_id": "5cb5ade04ce4e7006b14a194",
"id": 4861,
"number": 4861,
"enabled": true,
"description": null,
"created": 1555410399,
"modified": 1654078565,
"meta": {
"sku": "d890de5c-fbe8-46e5-bbc9-62e15ae7a59d",
"notified": 1555410400
},
"key": "525ff4756cd6e0d965e034717f50b202d69727fd",
"status": "created",
"production_status": "unset",
"production": "produce",
"gender": "female",
"currency": "USD",
"country": "US",
"price": 400.0,
"prices": {
"components": {
"lining": {
"rule_id": 14931,
"rule_count": 3,
"price_taxes": 0.0,
"vat": 0.0,
"vat_rate": 20.0,
"price": 0.0,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 0.0,
"vat_included": true,
"ddp_included": true,
"fixed_price": true,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"sole": {
"rule_id": 14933,
"rule_count": 3,
"price_taxes": 0.0,
"vat": 0.0,
"vat_rate": 20.0,
"price": 0.0,
"currency": "USD",
"hs_code": 6403999065,
"notes": [
"Rubber"
],
"hs_code_priority": 1,
"price_original": 0.0,
"vat_included": true,
"ddp_included": true,
"fixed_price": true,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"hardware": {
"rule_id": 14930,
"rule_count": 3,
"price_taxes": 0.0,
"vat": 0.0,
"vat_rate": 20.0,
"price": 0.0,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 0.0,
"vat_included": true,
"ddp_included": true,
"fixed_price": true,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"laces": {
"rule_id": 15123,
"rule_count": 2,
"price_taxes": 0.0,
"vat": 0.0,
"vat_rate": 20.0,
"price": 0.0,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 0.0,
"vat_included": true,
"ddp_included": true,
"fixed_price": true,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"front": {
"rule_id": 14912,
"rule_count": 4,
"price_taxes": 135.0,
"vat": 22.5,
"vat_rate": 20.0,
"price": 112.5,
"currency": "USD",
"hs_code": 6403999065,
"notes": [
"Nappa Leather"
],
"hs_code_priority": 1,
"price_original": 135.0,
"vat_included": true,
"ddp_included": true,
"fixed_price": true,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"logo": {
"rule_id": 15123,
"rule_count": 2,
"price_taxes": 0.0,
"vat": 0.0,
"vat_rate": 20.0,
"price": 0.0,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 0.0,
"vat_included": true,
"ddp_included": true,
"fixed_price": true,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"shadow": {
"rule_id": 15123,
"rule_count": 2,
"price_taxes": 0.0,
"vat": 0.0,
"vat_rate": 20.0,
"price": 0.0,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 0.0,
"vat_included": true,
"ddp_included": true,
"fixed_price": true,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"side": {
"rule_id": 14923,
"rule_count": 4,
"price_taxes": 265.0,
"vat": 44.17,
"vat_rate": 20.0,
"price": 220.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [
"Nappa Leather"
],
"hs_code_priority": 1,
"price_original": 265.0,
"vat_included": true,
"ddp_included": true,
"fixed_price": true,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"engraving": {
"rule_id": 15123,
"rule_count": 2,
"price_taxes": 0.0,
"vat": 0.0,
"vat_rate": 20.0,
"price": 0.0,
"currency": "USD",
"price_original": 0.0,
"vat_included": true,
"ddp_included": true,
"fixed_price": true,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null
}
},
"total": {
"price_final": 400.0,
"price_taxes": 400.0,
"vat": 0.0,
"ddp": 0.0,
"ddp_percent": 0.0,
"vat_rate": 0.0,
"price": 400.0,
"currency": "USD",
"country": "US",
"hs_codes": [
6403999065,
null
],
"hs_code_priority": -1,
"shipping": 0.0,
"notes": [
"Rubber",
"Nappa Leather"
],
"diag": {
"no_round": {
"price_final": 400.0,
"price_taxes": 400.0,
"price": 400.0,
"vat": 0.0,
"ddp": 0.0
},
"patch": true,
"round_value": true,
"is_vat": false,
"is_ddp": true,
"is_european": false,
"is_rounded": false,
"vat_included": true,
"ddp_included": true,
"fixed_price": true,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null
},
"cites": false
}
},
"brand": "swear",
"shoe": "vyner",
"shoe_query": "model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"shoe_url": "/config/customization?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"image_url": "/compose?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"minify_hash": "Mzk4NjU",
"image_hash": "Mzk4NjY",
"image_o_hash": "Mzk4Njc",
"top_hash": "Mzk4Njg",
"top_o_hash": "Mzk4Njk",
"bottom_hash": "Mzk4NzA",
"bottom_o_hash": "Mzk4NzE",
"back_hash": "Mzk4NzI",
"side_hash": "Mzk4NzM",
"structure": "{\"brand\": \"swear\", \"model\": \"vyner\", \"variant\": \"\", \"parts\": [{\"color\": \"white\", \"material\": \"nappa\", \"name\": \"front\", \"hidden\": false, \"optional\": false}, {\"color\": \"white\", \"material\": \"nappa\", \"name\": \"side\", \"hidden\": false, \"optional\": false}, {\"color\": \"white\", \"material\": \"calf_lining\", \"name\": \"lining\", \"hidden\": false, \"optional\": false}, {\"color\": \"white\", \"material\": \"nylon\", \"name\": \"laces\", \"hidden\": false, \"optional\": false}, {\"color\": \"white\", \"material\": \"rubber\", \"name\": \"sole\", \"hidden\": false, \"optional\": false}, {\"color\": \"silver\", \"material\": \"metal\", \"name\": \"hardware\", \"hidden\": false, \"optional\": false}, {\"color\": \"silver\", \"material\": \"metal\", \"name\": \"logo\", \"hidden\": true, \"optional\": false}, {\"color\": \"default\", \"material\": \"default\", \"name\": \"shadow\", \"hidden\": true, \"optional\": false}], \"parts_m\": {\"lining\": {\"color\": \"white\", \"material\": \"calf_lining\"}, \"sole\": {\"color\": \"white\", \"material\": \"rubber\"}, \"hardware\": {\"color\": \"silver\", \"material\": \"metal\"}, \"laces\": {\"color\": \"white\", \"material\": \"nylon\"}, \"front\": {\"color\": \"white\", \"material\": \"nappa\"}, \"logo\": {\"color\": \"silver\", \"material\": \"metal\"}, \"shadow\": {\"color\": \"default\", \"material\": \"default\"}, \"side\": {\"color\": \"white\", \"material\": \"nappa\"}}, \"gender\": \"female\", \"size\": 24, \"query\": \"model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default\", \"url\": \"/config/customization?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default\", \"image\": \"/compose?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default\", \"extras\": 0, \"engraving\": \"metal_silver:style\", \"initials\": \"AA\"}",
"ff_id": null,
"ff_shoe_id": 12212972,
"ff_order_id": "2bd218f2-8d19-46b1-8ae0-f6fc081b4d31",
"delivery_time": 10,
"tracking_number": null,
"tracking_url": null,
"states": [],
"attachments": [],
"account": "docs@platforme.com",
"customer": null,
"ambassador": null,
"store": null,
"brand_t": "swear",
"retailer_t": null,
"status_index": 1,
"vendor_t": "FLAJ",
"factory": "FLAJ",
"notes": [],
"report_url_e": null,
"type": "build",
"variant": null,
"chat": null,
"invoicing_info": {},
"last_update_touches": [],
"last_updated": null,
"pickup_number": null,
"priority": null,
"proof_of_delivery_url": null,
"return_tracking_number": null,
"return_tracking_url": null,
"scale_s": null,
"shipping_info": {},
"states_names": [],
"tag": null,
"transport": {},
"transport_ready": false,
"quantity": 1,
"domain": null,
"sku": null,
"retail_id": null,
"item_id": null,
"invoice": {},
"last_state_change": null,
"issues": [],
"number_s": "#004861",
"channel": "digital",
"delivery_d": 1556274399.0,
"scale": "it",
"size_scaled": 37.5,
"details": {
"brand": "swear",
"model": "vyner",
"variant": "",
"parts": [
{
"color": "white",
"material": "nappa",
"name": "front",
"hidden": false,
"optional": false
},
{
"color": "white",
"material": "nappa",
"name": "side",
"hidden": false,
"optional": false
},
{
"color": "white",
"material": "calf_lining",
"name": "lining",
"hidden": false,
"optional": false
},
{
"color": "white",
"material": "nylon",
"name": "laces",
"hidden": false,
"optional": false
},
{
"color": "white",
"material": "rubber",
"name": "sole",
"hidden": false,
"optional": false
},
{
"color": "silver",
"material": "metal",
"name": "hardware",
"hidden": false,
"optional": false
},
{
"color": "silver",
"material": "metal",
"name": "logo",
"hidden": true,
"optional": false
},
{
"color": "default",
"material": "default",
"name": "shadow",
"hidden": true,
"optional": false
}
],
"parts_m": {
"lining": {
"color": "white",
"material": "calf_lining"
},
"sole": {
"color": "white",
"material": "rubber"
},
"hardware": {
"color": "silver",
"material": "metal"
},
"laces": {
"color": "white",
"material": "nylon"
},
"front": {
"color": "white",
"material": "nappa"
},
"logo": {
"color": "silver",
"material": "metal"
},
"shadow": {
"color": "default",
"material": "default"
},
"side": {
"color": "white",
"material": "nappa"
}
},
"gender": "female",
"size": 24,
"query": "model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"url": "/config/customization?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"image": "/compose?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"extras": 0,
"engraving": "metal_silver:style",
"initials": "AA"
}
},
{
"_id": "5d387bd22a8e4d3a1a6edd25",
"id": 5258,
"number": 5258,
"enabled": true,
"description": null,
"created": 1563982802,
"modified": 1654078565,
"meta": {
"sku": "0d2de4dd-de57-4d46-95d1-8b423850f1f3",
"notified": 1563982802
},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": "FLAJ",
"key": "de1d208856b8c233b53d326930b8c4529dc24775",
"status": "created",
"status_index": 1,
"production_status": "unset",
"production": "produce",
"gender": "female",
"currency": "USD",
"country": "US",
"price": 400.0,
"prices": {
"components": {
"lining": {
"rule_id": 14931,
"rule_count": 3,
"price_taxes": 0.0,
"vat": 0.0,
"vat_rate": 20.0,
"price": 0.0,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 0.0,
"vat_included": true,
"ddp_included": true,
"fixed_price": true,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"sole": {
"rule_id": 14933,
"rule_count": 3,
"price_taxes": 0.0,
"vat": 0.0,
"vat_rate": 20.0,
"price": 0.0,
"currency": "USD",
"hs_code": 6403999065,
"notes": [
"Rubber"
],
"hs_code_priority": 1,
"price_original": 0.0,
"vat_included": true,
"ddp_included": true,
"fixed_price": true,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"hardware": {
"rule_id": 14930,
"rule_count": 3,
"price_taxes": 0.0,
"vat": 0.0,
"vat_rate": 20.0,
"price": 0.0,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 0.0,
"vat_included": true,
"ddp_included": true,
"fixed_price": true,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"laces": {
"rule_id": 15123,
"rule_count": 2,
"price_taxes": 0.0,
"vat": 0.0,
"vat_rate": 20.0,
"price": 0.0,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 0.0,
"vat_included": true,
"ddp_included": true,
"fixed_price": true,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"front": {
"rule_id": 14912,
"rule_count": 4,
"price_taxes": 135.0,
"vat": 22.5,
"vat_rate": 20.0,
"price": 112.5,
"currency": "USD",
"hs_code": 6403999065,
"notes": [
"Nappa Leather"
],
"hs_code_priority": 1,
"price_original": 135.0,
"vat_included": true,
"ddp_included": true,
"fixed_price": true,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"logo": {
"rule_id": 15123,
"rule_count": 2,
"price_taxes": 0.0,
"vat": 0.0,
"vat_rate": 20.0,
"price": 0.0,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 0.0,
"vat_included": true,
"ddp_included": true,
"fixed_price": true,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"shadow": {
"rule_id": 15123,
"rule_count": 2,
"price_taxes": 0.0,
"vat": 0.0,
"vat_rate": 20.0,
"price": 0.0,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 0.0,
"vat_included": true,
"ddp_included": true,
"fixed_price": true,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"side": {
"rule_id": 14923,
"rule_count": 4,
"price_taxes": 265.0,
"vat": 44.17,
"vat_rate": 20.0,
"price": 220.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [
"Nappa Leather"
],
"hs_code_priority": 1,
"price_original": 265.0,
"vat_included": true,
"ddp_included": true,
"fixed_price": true,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"engraving": {
"rule_id": 15123,
"rule_count": 2,
"price_taxes": 0.0,
"vat": 0.0,
"vat_rate": 20.0,
"price": 0.0,
"currency": "USD",
"price_original": 0.0,
"vat_included": true,
"ddp_included": true,
"fixed_price": true,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null
}
},
"total": {
"price_final": 400.0,
"price_taxes": 400.0,
"vat": 0.0,
"ddp": 0.0,
"ddp_percent": 0.0,
"vat_rate": 0.0,
"price": 400.0,
"currency": "USD",
"country": "US",
"hs_codes": [
6403999065,
null
],
"hs_code_priority": -1,
"shipping": 0.0,
"notes": [
"Rubber",
"Nappa Leather"
],
"diag": {
"no_round": {
"price_final": 400.0,
"price_taxes": 400.0,
"price": 400.0,
"vat": 0.0,
"ddp": 0.0
},
"patch": true,
"round_value": true,
"is_vat": false,
"is_ddp": true,
"is_european": false,
"is_rounded": false,
"vat_included": true,
"ddp_included": true,
"fixed_price": true,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null
},
"cites": false
}
},
"brand": "swear",
"shoe": "vyner",
"variant": "",
"shoe_query": "model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"shoe_url": "/config/customization?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"image_url": "/compose?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"minify_hash": "Mzk4NjU",
"image_hash": "Mzk4NjY",
"image_o_hash": "Mzk4Njc",
"top_hash": "Mzk4Njg",
"top_o_hash": "Mzk4Njk",
"bottom_hash": "Mzk4NzA",
"bottom_o_hash": "Mzk4NzE",
"back_hash": "Mzk4NzI",
"side_hash": "Mzk4NzM",
"structure": "{\"brand\": \"swear\", \"model\": \"vyner\", \"variant\": \"\", \"parts\": [{\"color\": \"white\", \"material\": \"nappa\", \"name\": \"front\", \"hidden\": false, \"optional\": false}, {\"color\": \"white\", \"material\": \"nappa\", \"name\": \"side\", \"hidden\": false, \"optional\": false}, {\"color\": \"white\", \"material\": \"calf_lining\", \"name\": \"lining\", \"hidden\": false, \"optional\": false}, {\"color\": \"white\", \"material\": \"nylon\", \"name\": \"laces\", \"hidden\": false, \"optional\": false}, {\"color\": \"white\", \"material\": \"rubber\", \"name\": \"sole\", \"hidden\": false, \"optional\": false}, {\"color\": \"silver\", \"material\": \"metal\", \"name\": \"hardware\", \"hidden\": false, \"optional\": false}, {\"color\": \"silver\", \"material\": \"metal\", \"name\": \"logo\", \"hidden\": true, \"optional\": false}, {\"color\": \"default\", \"material\": \"default\", \"name\": \"shadow\", \"hidden\": true, \"optional\": false}], \"parts_m\": {\"lining\": {\"color\": \"white\", \"material\": \"calf_lining\"}, \"sole\": {\"color\": \"white\", \"material\": \"rubber\"}, \"hardware\": {\"color\": \"silver\", \"material\": \"metal\"}, \"laces\": {\"color\": \"white\", \"material\": \"nylon\"}, \"front\": {\"color\": \"white\", \"material\": \"nappa\"}, \"logo\": {\"color\": \"silver\", \"material\": \"metal\"}, \"shadow\": {\"color\": \"default\", \"material\": \"default\"}, \"side\": {\"color\": \"white\", \"material\": \"nappa\"}}, \"gender\": \"female\", \"size\": 25, \"query\": \"model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default\", \"url\": \"/config/customization?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default\", \"image\": \"/compose?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default\", \"extras\": 0, \"engraving\": \"metal_silver:style\", \"initials\": \"AA\", \"initials_extra\": {\"main\": {\"initials\": \"AA\", \"engraving\": \"metal_silver:style\"}}}",
"ff_id": null,
"ff_shoe_id": 12212972,
"ff_order_id": "5c0e1804-eba5-4fe7-a2dc-e3f5a64c2137",
"delivery_time": 10,
"tracking_number": null,
"tracking_url": null,
"states": [
2509
],
"attachments": [],
"account": "docs@platforme.com",
"customer": null,
"ambassador": null,
"store": null,
"factory": "FLAJ",
"notes": [],
"report_url_e": null,
"type": "build",
"chat": null,
"invoicing_info": {},
"last_update_touches": [],
"last_updated": null,
"pickup_number": null,
"priority": null,
"proof_of_delivery_url": null,
"return_tracking_number": null,
"return_tracking_url": null,
"scale_s": null,
"shipping_info": {},
"states_names": [],
"tag": null,
"transport": {},
"transport_ready": false,
"quantity": 1,
"domain": null,
"sku": null,
"retail_id": null,
"item_id": null,
"invoice": {},
"last_state_change": null,
"issues": [],
"number_s": "#005258",
"channel": "digital",
"delivery_d": 1564846802.0,
"scale": "it",
"size_scaled": 38.0,
"details": {
"brand": "swear",
"model": "vyner",
"variant": "",
"parts": [
{
"color": "white",
"material": "nappa",
"name": "front",
"hidden": false,
"optional": false
},
{
"color": "white",
"material": "nappa",
"name": "side",
"hidden": false,
"optional": false
},
{
"color": "white",
"material": "calf_lining",
"name": "lining",
"hidden": false,
"optional": false
},
{
"color": "white",
"material": "nylon",
"name": "laces",
"hidden": false,
"optional": false
},
{
"color": "white",
"material": "rubber",
"name": "sole",
"hidden": false,
"optional": false
},
{
"color": "silver",
"material": "metal",
"name": "hardware",
"hidden": false,
"optional": false
},
{
"color": "silver",
"material": "metal",
"name": "logo",
"hidden": true,
"optional": false
},
{
"color": "default",
"material": "default",
"name": "shadow",
"hidden": true,
"optional": false
}
],
"parts_m": {
"lining": {
"color": "white",
"material": "calf_lining"
},
"sole": {
"color": "white",
"material": "rubber"
},
"hardware": {
"color": "silver",
"material": "metal"
},
"laces": {
"color": "white",
"material": "nylon"
},
"front": {
"color": "white",
"material": "nappa"
},
"logo": {
"color": "silver",
"material": "metal"
},
"shadow": {
"color": "default",
"material": "default"
},
"side": {
"color": "white",
"material": "nappa"
}
},
"gender": "female",
"size": 25,
"query": "model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"url": "/config/customization?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"image": "/compose?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"extras": 0,
"engraving": "metal_silver:style",
"initials": "AA",
"initials_extra": {
"main": {
"initials": "AA",
"engraving": "metal_silver:style"
}
}
}
},
{
"_id": "5ec2755112f991b97a368060",
"id": 13289,
"number": 13289,
"enabled": true,
"description": null,
"created": 1589802321,
"modified": 1654078565,
"meta": {
"sku": "77281ad0-2bbe-4a3d-8859-52550ac8efa9",
"notified": 1589802321
},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": "FLAJ",
"key": "46fb9672d1582b18827efa5a5063b16ca4d76296",
"status": "returned",
"status_index": 5,
"production_status": "unset",
"production": "produce",
"gender": "female",
"currency": "USD",
"country": "US",
"price": 205.0,
"prices": {
"components": {
"lining": {
"rule_id": 18689,
"rule_count": 3,
"price_taxes": 0.0,
"vat": 0.0,
"vat_rate": 23.0,
"price": 0.0,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 0.0,
"vat_included": true,
"ddp_included": true,
"fixed_price": true,
"round_price": false,
"base_country": "PT",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"sole": {
"rule_id": 18691,
"rule_count": 3,
"price_taxes": 0.0,
"vat": 0.0,
"vat_rate": 23.0,
"price": 0.0,
"currency": "USD",
"hs_code": 6403999065,
"notes": [
"Rubber"
],
"hs_code_priority": 1,
"price_original": 0.0,
"vat_included": true,
"ddp_included": true,
"fixed_price": true,
"round_price": false,
"base_country": "PT",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"hardware": {
"rule_id": 18688,
"rule_count": 3,
"price_taxes": 0.0,
"vat": 0.0,
"vat_rate": 23.0,
"price": 0.0,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 0.0,
"vat_included": true,
"ddp_included": true,
"fixed_price": true,
"round_price": false,
"base_country": "PT",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"laces": {
"rule_id": 18673,
"rule_count": 3,
"price_taxes": 0.0,
"vat": 0.0,
"vat_rate": 23.0,
"price": 0.0,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 0.0,
"vat_included": true,
"ddp_included": true,
"fixed_price": true,
"round_price": false,
"base_country": "PT",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"front": {
"rule_id": 18660,
"rule_count": 4,
"price_taxes": 10.0,
"vat": 1.87,
"vat_rate": 23.0,
"price": 8.13,
"currency": "USD",
"hs_code": 6403999065,
"notes": [
"Nappa Leather"
],
"hs_code_priority": 1,
"price_original": 10.0,
"vat_included": true,
"ddp_included": true,
"fixed_price": true,
"round_price": false,
"base_country": "PT",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"logo": {
"rule_id": 18690,
"rule_count": 2,
"price_taxes": 0.0,
"vat": 0.0,
"vat_rate": 23.0,
"price": 0.0,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 0.0,
"vat_included": true,
"ddp_included": true,
"fixed_price": true,
"round_price": false,
"base_country": "PT",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"shadow": {
"rule_id": 18671,
"rule_count": 3,
"price_taxes": 175.0,
"vat": 32.72,
"vat_rate": 23.0,
"price": 142.28,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 175.0,
"vat_included": true,
"ddp_included": true,
"fixed_price": true,
"round_price": false,
"base_country": "PT",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"side": {
"rule_id": 18680,
"rule_count": 4,
"price_taxes": 20.0,
"vat": 3.74,
"vat_rate": 23.0,
"price": 16.26,
"currency": "USD",
"hs_code": 6403999065,
"notes": [
"Nappa Leather"
],
"hs_code_priority": 1,
"price_original": 20.0,
"vat_included": true,
"ddp_included": true,
"fixed_price": true,
"round_price": false,
"base_country": "PT",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"engraving": {
"rule_id": 18695,
"rule_count": 2,
"price_taxes": 0.0,
"vat": 0.0,
"vat_rate": 23.0,
"price": 0.0,
"currency": "USD",
"price_original": 0.0,
"vat_included": true,
"ddp_included": true,
"fixed_price": true,
"round_price": false,
"base_country": "PT",
"base_currency": "EUR",
"exchanged": null
}
},
"total": {
"price_final": 205.0,
"price_taxes": 205.0,
"vat": 0.0,
"ddp": 0.0,
"ddp_percent": 0.0,
"vat_rate": 0.0,
"price": 205.0,
"currency": "USD",
"country": "US",
"hs_codes": [
6403999065,
null
],
"hs_code_priority": -1,
"shipping": 0.0,
"notes": [
"Nappa Leather",
"Rubber"
],
"diag": {
"no_round": {
"price_final": 205.0,
"price_taxes": 205.0,
"price": 205.0,
"vat": 0.0,
"ddp": 0.0
},
"patch": true,
"round_value": true,
"is_vat": false,
"is_ddp": true,
"is_european": false,
"is_rounded": false,
"vat_included": true,
"ddp_included": true,
"fixed_price": true,
"round_price": false,
"base_country": "PT",
"base_currency": "EUR",
"exchanged": null
},
"cites": false
}
},
"brand": "swear",
"shoe": "vyner",
"variant": "",
"shoe_query": "model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"shoe_url": "/config/customization?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"image_url": "/compose?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"minify_hash": "Mzk4NjU",
"image_hash": "Mzk4NjY",
"image_o_hash": "Mzk4Njc",
"top_hash": "Mzk4Njg",
"top_o_hash": "Mzk4Njk",
"bottom_hash": "Mzk4NzA",
"bottom_o_hash": "Mzk4NzE",
"back_hash": "Mzk4NzI",
"side_hash": "Mzk4NzM",
"structure": "{\"brand\": \"swear\", \"model\": \"vyner\", \"variant\": \"\", \"parts\": [{\"color\": \"white\", \"material\": \"nappa\", \"name\": \"front\", \"hidden\": false, \"optional\": false}, {\"color\": \"white\", \"material\": \"nappa\", \"name\": \"side\", \"hidden\": false, \"optional\": false}, {\"color\": \"white\", \"material\": \"calf_lining\", \"name\": \"lining\", \"hidden\": false, \"optional\": false}, {\"color\": \"white\", \"material\": \"nylon\", \"name\": \"laces\", \"hidden\": false, \"optional\": false}, {\"color\": \"white\", \"material\": \"rubber\", \"name\": \"sole\", \"hidden\": false, \"optional\": false}, {\"color\": \"silver\", \"material\": \"metal\", \"name\": \"hardware\", \"hidden\": false, \"optional\": false}, {\"color\": \"silver\", \"material\": \"metal\", \"name\": \"logo\", \"hidden\": true, \"optional\": false}, {\"color\": \"default\", \"material\": \"default\", \"name\": \"shadow\", \"hidden\": true, \"optional\": false}], \"parts_m\": {\"lining\": {\"color\": \"white\", \"material\": \"calf_lining\"}, \"sole\": {\"color\": \"white\", \"material\": \"rubber\"}, \"hardware\": {\"color\": \"silver\", \"material\": \"metal\"}, \"laces\": {\"color\": \"white\", \"material\": \"nylon\"}, \"front\": {\"color\": \"white\", \"material\": \"nappa\"}, \"logo\": {\"color\": \"silver\", \"material\": \"metal\"}, \"shadow\": {\"color\": \"default\", \"material\": \"default\"}, \"side\": {\"color\": \"white\", \"material\": \"nappa\"}}, \"gender\": \"female\", \"size\": 25, \"query\": \"model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default\", \"url\": \"/config/customization?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default\", \"image\": \"/compose?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default\", \"extras\": 0, \"engraving\": \"metal_silver:style\", \"initials\": \"AA\", \"initials_extra\": {\"main\": {\"initials\": \"AA\", \"engraving\": \"metal_silver:style\"}}}",
"ff_id": null,
"ff_shoe_id": 12212972,
"ff_order_id": "ef4ad7d5-5d66-4d68-af89-d6e72c0445b8",
"delivery_time": 10,
"tracking_number": null,
"tracking_url": null,
"notes": [],
"states": [
9661,
9698,
9699,
9700,
9740,
9891
],
"attachments": [],
"account": "docs@platforme.com",
"customer": null,
"ambassador": null,
"store": null,
"report_url_e": null,
"factory": "FLAJ",
"type": "build",
"chat": null,
"invoicing_info": {},
"last_update_touches": [],
"last_updated": null,
"pickup_number": null,
"priority": null,
"proof_of_delivery_url": null,
"return_tracking_number": null,
"return_tracking_url": null,
"scale_s": null,
"shipping_info": {},
"states_names": [],
"tag": null,
"transport": {},
"transport_ready": false,
"quantity": 1,
"domain": null,
"sku": null,
"retail_id": null,
"item_id": null,
"invoice": {},
"last_state_change": null,
"issues": [],
"number_s": "#013289",
"channel": "digital",
"delivery_d": 1590666321.0,
"scale": "it",
"size_scaled": 38.0,
"details": {
"brand": "swear",
"model": "vyner",
"variant": "",
"parts": [
{
"color": "white",
"material": "nappa",
"name": "front",
"hidden": false,
"optional": false
},
{
"color": "white",
"material": "nappa",
"name": "side",
"hidden": false,
"optional": false
},
{
"color": "white",
"material": "calf_lining",
"name": "lining",
"hidden": false,
"optional": false
},
{
"color": "white",
"material": "nylon",
"name": "laces",
"hidden": false,
"optional": false
},
{
"color": "white",
"material": "rubber",
"name": "sole",
"hidden": false,
"optional": false
},
{
"color": "silver",
"material": "metal",
"name": "hardware",
"hidden": false,
"optional": false
},
{
"color": "silver",
"material": "metal",
"name": "logo",
"hidden": true,
"optional": false
},
{
"color": "default",
"material": "default",
"name": "shadow",
"hidden": true,
"optional": false
}
],
"parts_m": {
"lining": {
"color": "white",
"material": "calf_lining"
},
"sole": {
"color": "white",
"material": "rubber"
},
"hardware": {
"color": "silver",
"material": "metal"
},
"laces": {
"color": "white",
"material": "nylon"
},
"front": {
"color": "white",
"material": "nappa"
},
"logo": {
"color": "silver",
"material": "metal"
},
"shadow": {
"color": "default",
"material": "default"
},
"side": {
"color": "white",
"material": "nappa"
}
},
"gender": "female",
"size": 25,
"query": "model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"url": "/config/customization?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"image": "/compose?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"extras": 0,
"engraving": "metal_silver:style",
"initials": "AA",
"initials_extra": {
"main": {
"initials": "AA",
"engraving": "metal_silver:style"
}
}
}
},
{
"_id": "5e273ffc115bb72966d367d5",
"id": 9247,
"number": 9247,
"enabled": true,
"description": null,
"created": 1579630588,
"modified": 1654078565,
"meta": {
"sku": "c06baa6b-6cbb-4187-9fcb-2338eb618ab0",
"notified": 1579630588
},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": "FLAJ",
"key": "c616c95180e89a580c589df9583ab90bea4042ca",
"status": "created",
"status_index": 1,
"production_status": "unset",
"production": "produce",
"gender": "female",
"currency": "USD",
"country": "US",
"price": 260.0,
"prices": {
"components": {
"lining": {
"rule_id": 18672,
"rule_count": 3,
"price_taxes": 20.0,
"vat": 3.74,
"vat_rate": 23.0,
"price": 16.26,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 20.0,
"vat_included": true,
"ddp_included": true,
"fixed_price": true,
"round_price": false,
"base_country": "PT",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"sole": {
"rule_id": 18670,
"rule_count": 3,
"price_taxes": 15.01,
"vat": 2.81,
"vat_rate": 23.0,
"price": 12.2,
"currency": "USD",
"hs_code": 6403999065,
"notes": [
"Rubber"
],
"hs_code_priority": 1,
"price_original": 15.0,
"vat_included": true,
"ddp_included": true,
"fixed_price": true,
"round_price": false,
"base_country": "PT",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"hardware": {
"rule_id": 18669,
"rule_count": 3,
"price_taxes": 20.0,
"vat": 3.74,
"vat_rate": 23.0,
"price": 16.26,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 20.0,
"vat_included": true,
"ddp_included": true,
"fixed_price": true,
"round_price": false,
"base_country": "PT",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"laces": {
"rule_id": 18673,
"rule_count": 3,
"price_taxes": 0.0,
"vat": 0.0,
"vat_rate": 23.0,
"price": 0.0,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 0.0,
"vat_included": true,
"ddp_included": true,
"fixed_price": true,
"round_price": false,
"base_country": "PT",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"front": {
"rule_id": 18660,
"rule_count": 4,
"price_taxes": 10.0,
"vat": 1.87,
"vat_rate": 23.0,
"price": 8.13,
"currency": "USD",
"hs_code": 6403999065,
"notes": [
"Nappa Leather"
],
"hs_code_priority": 1,
"price_original": 10.0,
"vat_included": true,
"ddp_included": true,
"fixed_price": true,
"round_price": false,
"base_country": "PT",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"logo": {
"rule_id": 18690,
"rule_count": 2,
"price_taxes": 0.0,
"vat": 0.0,
"vat_rate": 23.0,
"price": 0.0,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 0.0,
"vat_included": true,
"ddp_included": true,
"fixed_price": true,
"round_price": false,
"base_country": "PT",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"shadow": {
"rule_id": 18671,
"rule_count": 3,
"price_taxes": 175.0,
"vat": 32.72,
"vat_rate": 23.0,
"price": 142.28,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 175.0,
"vat_included": true,
"ddp_included": true,
"fixed_price": true,
"round_price": false,
"base_country": "PT",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"side": {
"rule_id": 18680,
"rule_count": 4,
"price_taxes": 20.0,
"vat": 3.74,
"vat_rate": 23.0,
"price": 16.26,
"currency": "USD",
"hs_code": 6403999065,
"notes": [
"Nappa Leather"
],
"hs_code_priority": 1,
"price_original": 20.0,
"vat_included": true,
"ddp_included": true,
"fixed_price": true,
"round_price": false,
"base_country": "PT",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"engraving": {
"rule_id": 18695,
"rule_count": 2,
"price_taxes": 0.0,
"vat": 0.0,
"vat_rate": 23.0,
"price": 0.0,
"currency": "USD",
"price_original": 0.0,
"vat_included": true,
"ddp_included": true,
"fixed_price": true,
"round_price": false,
"base_country": "PT",
"base_currency": "EUR",
"exchanged": null
}
},
"total": {
"price_final": 260.0,
"price_taxes": 260.0,
"vat": 0.0,
"ddp": 0.0,
"ddp_percent": 0.0,
"vat_rate": 0.0,
"price": 260.0,
"currency": "USD",
"country": "US",
"hs_codes": [
6403999065,
null
],
"hs_code_priority": -1,
"shipping": 0.0,
"notes": [
"Rubber",
"Nappa Leather"
],
"diag": {
"no_round": {
"price_final": 260.0,
"price_taxes": 260.0,
"price": 260.0,
"vat": 0.0,
"ddp": 0.0
},
"patch": true,
"round_value": true,
"is_vat": false,
"is_ddp": true,
"is_european": false,
"is_rounded": false,
"vat_included": true,
"ddp_included": true,
"fixed_price": true,
"round_price": false,
"base_country": "PT",
"base_currency": "EUR",
"exchanged": null
},
"cites": false
}
},
"brand": "swear",
"shoe": "vyner",
"variant": "",
"shoe_query": "model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"shoe_url": "/config/customization?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"image_url": "/compose?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"minify_hash": "Mzk4NjU",
"image_hash": "Mzk4NjY",
"image_o_hash": "Mzk4Njc",
"top_hash": "Mzk4Njg",
"top_o_hash": "Mzk4Njk",
"bottom_hash": "Mzk4NzA",
"bottom_o_hash": "Mzk4NzE",
"back_hash": "Mzk4NzI",
"side_hash": "Mzk4NzM",
"structure": "{\"brand\": \"swear\", \"model\": \"vyner\", \"variant\": \"\", \"parts\": [{\"color\": \"white\", \"material\": \"nappa\", \"name\": \"front\", \"hidden\": false, \"optional\": false}, {\"color\": \"white\", \"material\": \"nappa\", \"name\": \"side\", \"hidden\": false, \"optional\": false}, {\"color\": \"white\", \"material\": \"calf_lining\", \"name\": \"lining\", \"hidden\": false, \"optional\": false}, {\"color\": \"white\", \"material\": \"nylon\", \"name\": \"laces\", \"hidden\": false, \"optional\": false}, {\"color\": \"white\", \"material\": \"rubber\", \"name\": \"sole\", \"hidden\": false, \"optional\": false}, {\"color\": \"silver\", \"material\": \"metal\", \"name\": \"hardware\", \"hidden\": false, \"optional\": false}, {\"color\": \"silver\", \"material\": \"metal\", \"name\": \"logo\", \"hidden\": true, \"optional\": false}, {\"color\": \"default\", \"material\": \"default\", \"name\": \"shadow\", \"hidden\": true, \"optional\": false}], \"parts_m\": {\"lining\": {\"color\": \"white\", \"material\": \"calf_lining\"}, \"sole\": {\"color\": \"white\", \"material\": \"rubber\"}, \"hardware\": {\"color\": \"silver\", \"material\": \"metal\"}, \"laces\": {\"color\": \"white\", \"material\": \"nylon\"}, \"front\": {\"color\": \"white\", \"material\": \"nappa\"}, \"logo\": {\"color\": \"silver\", \"material\": \"metal\"}, \"shadow\": {\"color\": \"default\", \"material\": \"default\"}, \"side\": {\"color\": \"white\", \"material\": \"nappa\"}}, \"gender\": \"female\", \"size\": 25, \"query\": \"model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default\", \"url\": \"/config/customization?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default\", \"image\": \"/compose?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default\", \"extras\": 0, \"engraving\": \"metal_silver:style\", \"initials\": \"AA\", \"initials_extra\": {\"main\": {\"initials\": \"AA\", \"engraving\": \"metal_silver:style\"}}}",
"ff_id": null,
"ff_shoe_id": 12212972,
"ff_order_id": "1145019e-e2d5-4f90-bfa4-829f7e24822c",
"delivery_time": 10,
"tracking_number": null,
"tracking_url": null,
"notes": [],
"states": [
5291
],
"attachments": [],
"account": "docs@platforme.com",
"customer": null,
"ambassador": null,
"store": null,
"factory": "FLAJ",
"report_url_e": null,
"type": "build",
"chat": null,
"invoicing_info": {},
"last_update_touches": [],
"last_updated": null,
"pickup_number": null,
"priority": null,
"proof_of_delivery_url": null,
"return_tracking_number": null,
"return_tracking_url": null,
"scale_s": null,
"shipping_info": {},
"states_names": [],
"tag": null,
"transport": {},
"transport_ready": false,
"quantity": 1,
"domain": null,
"sku": null,
"retail_id": null,
"item_id": null,
"invoice": {},
"last_state_change": null,
"issues": [],
"number_s": "#009247",
"channel": "digital",
"delivery_d": 1580494588.0,
"scale": "it",
"size_scaled": 38.0,
"details": {
"brand": "swear",
"model": "vyner",
"variant": "",
"parts": [
{
"color": "white",
"material": "nappa",
"name": "front",
"hidden": false,
"optional": false
},
{
"color": "white",
"material": "nappa",
"name": "side",
"hidden": false,
"optional": false
},
{
"color": "white",
"material": "calf_lining",
"name": "lining",
"hidden": false,
"optional": false
},
{
"color": "white",
"material": "nylon",
"name": "laces",
"hidden": false,
"optional": false
},
{
"color": "white",
"material": "rubber",
"name": "sole",
"hidden": false,
"optional": false
},
{
"color": "silver",
"material": "metal",
"name": "hardware",
"hidden": false,
"optional": false
},
{
"color": "silver",
"material": "metal",
"name": "logo",
"hidden": true,
"optional": false
},
{
"color": "default",
"material": "default",
"name": "shadow",
"hidden": true,
"optional": false
}
],
"parts_m": {
"lining": {
"color": "white",
"material": "calf_lining"
},
"sole": {
"color": "white",
"material": "rubber"
},
"hardware": {
"color": "silver",
"material": "metal"
},
"laces": {
"color": "white",
"material": "nylon"
},
"front": {
"color": "white",
"material": "nappa"
},
"logo": {
"color": "silver",
"material": "metal"
},
"shadow": {
"color": "default",
"material": "default"
},
"side": {
"color": "white",
"material": "nappa"
}
},
"gender": "female",
"size": 25,
"query": "model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"url": "/config/customization?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"image": "/compose?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"extras": 0,
"engraving": "metal_silver:style",
"initials": "AA",
"initials_extra": {
"main": {
"initials": "AA",
"engraving": "metal_silver:style"
}
}
}
},
{
"_id": "5e73af53821e608377519fc1",
"id": 9994,
"number": 9994,
"enabled": true,
"description": null,
"created": 1584639827,
"modified": 1654078565,
"meta": {
"notified": 1584639827
},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": "FLAJ",
"key": "4a008aada3879d15a08815b267476bf31f0cad6b",
"status": "created",
"status_index": 1,
"production_status": "unset",
"production": "produce",
"gender": "female",
"currency": "USD",
"country": "US",
"price": 260.0,
"prices": {
"components": {
"lining": {
"rule_id": 18672,
"rule_count": 3,
"price_taxes": 20.0,
"vat": 3.74,
"vat_rate": 23.0,
"price": 16.26,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 20.0,
"vat_included": true,
"ddp_included": true,
"fixed_price": true,
"round_price": false,
"base_country": "PT",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"sole": {
"rule_id": 18670,
"rule_count": 3,
"price_taxes": 15.01,
"vat": 2.81,
"vat_rate": 23.0,
"price": 12.2,
"currency": "USD",
"hs_code": 6403999065,
"notes": [
"Rubber"
],
"hs_code_priority": 1,
"price_original": 15.0,
"vat_included": true,
"ddp_included": true,
"fixed_price": true,
"round_price": false,
"base_country": "PT",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"hardware": {
"rule_id": 18669,
"rule_count": 3,
"price_taxes": 20.0,
"vat": 3.74,
"vat_rate": 23.0,
"price": 16.26,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 20.0,
"vat_included": true,
"ddp_included": true,
"fixed_price": true,
"round_price": false,
"base_country": "PT",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"laces": {
"rule_id": 18673,
"rule_count": 3,
"price_taxes": 0.0,
"vat": 0.0,
"vat_rate": 23.0,
"price": 0.0,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 0.0,
"vat_included": true,
"ddp_included": true,
"fixed_price": true,
"round_price": false,
"base_country": "PT",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"front": {
"rule_id": 18660,
"rule_count": 4,
"price_taxes": 10.0,
"vat": 1.87,
"vat_rate": 23.0,
"price": 8.13,
"currency": "USD",
"hs_code": 6403999065,
"notes": [
"Nappa Leather"
],
"hs_code_priority": 1,
"price_original": 10.0,
"vat_included": true,
"ddp_included": true,
"fixed_price": true,
"round_price": false,
"base_country": "PT",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"logo": {
"rule_id": 18690,
"rule_count": 2,
"price_taxes": 0.0,
"vat": 0.0,
"vat_rate": 23.0,
"price": 0.0,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 0.0,
"vat_included": true,
"ddp_included": true,
"fixed_price": true,
"round_price": false,
"base_country": "PT",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"shadow": {
"rule_id": 18671,
"rule_count": 3,
"price_taxes": 175.0,
"vat": 32.72,
"vat_rate": 23.0,
"price": 142.28,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 175.0,
"vat_included": true,
"ddp_included": true,
"fixed_price": true,
"round_price": false,
"base_country": "PT",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"side": {
"rule_id": 18680,
"rule_count": 4,
"price_taxes": 20.0,
"vat": 3.74,
"vat_rate": 23.0,
"price": 16.26,
"currency": "USD",
"hs_code": 6403999065,
"notes": [
"Nappa Leather"
],
"hs_code_priority": 1,
"price_original": 20.0,
"vat_included": true,
"ddp_included": true,
"fixed_price": true,
"round_price": false,
"base_country": "PT",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"engraving": {
"rule_id": 18695,
"rule_count": 2,
"price_taxes": 0.0,
"vat": 0.0,
"vat_rate": 23.0,
"price": 0.0,
"currency": "USD",
"price_original": 0.0,
"vat_included": true,
"ddp_included": true,
"fixed_price": true,
"round_price": false,
"base_country": "PT",
"base_currency": "EUR",
"exchanged": null
}
},
"total": {
"price_final": 260.0,
"price_taxes": 260.0,
"vat": 0.0,
"ddp": 0.0,
"ddp_percent": 0.0,
"vat_rate": 0.0,
"price": 260.0,
"currency": "USD",
"country": "US",
"hs_codes": [
6403999065,
null
],
"hs_code_priority": -1,
"shipping": 0.0,
"notes": [
"Nappa Leather",
"Rubber"
],
"diag": {
"no_round": {
"price_final": 260.0,
"price_taxes": 260.0,
"price": 260.0,
"vat": 0.0,
"ddp": 0.0
},
"patch": true,
"round_value": true,
"is_vat": false,
"is_ddp": true,
"is_european": false,
"is_rounded": false,
"vat_included": true,
"ddp_included": true,
"fixed_price": true,
"round_price": false,
"base_country": "PT",
"base_currency": "EUR",
"exchanged": null
},
"cites": false
}
},
"brand": "swear",
"shoe": "vyner",
"variant": "",
"shoe_query": "model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"shoe_url": "/config/customization?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"image_url": "/compose?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"minify_hash": "Mzk4NjU",
"image_hash": "Mzk4NjY",
"image_o_hash": "Mzk4Njc",
"top_hash": "Mzk4Njg",
"top_o_hash": "Mzk4Njk",
"bottom_hash": "Mzk4NzA",
"bottom_o_hash": "Mzk4NzE",
"back_hash": "Mzk4NzI",
"side_hash": "Mzk4NzM",
"structure": "{\"brand\": \"swear\", \"model\": \"vyner\", \"variant\": \"\", \"parts\": [{\"color\": \"white\", \"material\": \"nappa\", \"name\": \"front\", \"hidden\": false, \"optional\": false}, {\"color\": \"white\", \"material\": \"nappa\", \"name\": \"side\", \"hidden\": false, \"optional\": false}, {\"color\": \"white\", \"material\": \"calf_lining\", \"name\": \"lining\", \"hidden\": false, \"optional\": false}, {\"color\": \"white\", \"material\": \"nylon\", \"name\": \"laces\", \"hidden\": false, \"optional\": false}, {\"color\": \"white\", \"material\": \"rubber\", \"name\": \"sole\", \"hidden\": false, \"optional\": false}, {\"color\": \"silver\", \"material\": \"metal\", \"name\": \"hardware\", \"hidden\": false, \"optional\": false}, {\"color\": \"silver\", \"material\": \"metal\", \"name\": \"logo\", \"hidden\": true, \"optional\": false}, {\"color\": \"default\", \"material\": \"default\", \"name\": \"shadow\", \"hidden\": true, \"optional\": false}], \"parts_m\": {\"lining\": {\"color\": \"white\", \"material\": \"calf_lining\"}, \"sole\": {\"color\": \"white\", \"material\": \"rubber\"}, \"hardware\": {\"color\": \"silver\", \"material\": \"metal\"}, \"laces\": {\"color\": \"white\", \"material\": \"nylon\"}, \"front\": {\"color\": \"white\", \"material\": \"nappa\"}, \"logo\": {\"color\": \"silver\", \"material\": \"metal\"}, \"shadow\": {\"color\": \"default\", \"material\": \"default\"}, \"side\": {\"color\": \"white\", \"material\": \"nappa\"}}, \"gender\": \"female\", \"size\": 25, \"query\": \"model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default\", \"url\": \"/config/customization?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default\", \"image\": \"/compose?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default\", \"extras\": 0, \"engraving\": \"metal_silver:style\", \"initials\": \"AA\", \"initials_extra\": {\"main\": {\"initials\": \"AA\", \"engraving\": \"metal_silver:style\"}}}",
"ff_id": null,
"ff_shoe_id": 12212972,
"ff_order_id": "820982911946154501",
"delivery_time": 10,
"tracking_number": null,
"tracking_url": null,
"notes": [],
"states": [
6287
],
"attachments": [],
"account": "v-da@platforme.com",
"customer": null,
"ambassador": null,
"store": null,
"factory": "FLAJ",
"report_url_e": null,
"type": "build",
"chat": null,
"invoicing_info": {},
"last_update_touches": [],
"last_updated": null,
"pickup_number": null,
"priority": null,
"proof_of_delivery_url": null,
"return_tracking_number": null,
"return_tracking_url": null,
"scale_s": null,
"shipping_info": {},
"states_names": [],
"tag": null,
"transport": {},
"transport_ready": false,
"quantity": 1,
"domain": null,
"sku": null,
"retail_id": null,
"item_id": null,
"invoice": {},
"last_state_change": null,
"issues": [],
"number_s": "#009994",
"channel": "digital",
"delivery_d": 1585503827.0,
"scale": "it",
"size_scaled": 38.0,
"details": {
"brand": "swear",
"model": "vyner",
"variant": "",
"parts": [
{
"color": "white",
"material": "nappa",
"name": "front",
"hidden": false,
"optional": false
},
{
"color": "white",
"material": "nappa",
"name": "side",
"hidden": false,
"optional": false
},
{
"color": "white",
"material": "calf_lining",
"name": "lining",
"hidden": false,
"optional": false
},
{
"color": "white",
"material": "nylon",
"name": "laces",
"hidden": false,
"optional": false
},
{
"color": "white",
"material": "rubber",
"name": "sole",
"hidden": false,
"optional": false
},
{
"color": "silver",
"material": "metal",
"name": "hardware",
"hidden": false,
"optional": false
},
{
"color": "silver",
"material": "metal",
"name": "logo",
"hidden": true,
"optional": false
},
{
"color": "default",
"material": "default",
"name": "shadow",
"hidden": true,
"optional": false
}
],
"parts_m": {
"lining": {
"color": "white",
"material": "calf_lining"
},
"sole": {
"color": "white",
"material": "rubber"
},
"hardware": {
"color": "silver",
"material": "metal"
},
"laces": {
"color": "white",
"material": "nylon"
},
"front": {
"color": "white",
"material": "nappa"
},
"logo": {
"color": "silver",
"material": "metal"
},
"shadow": {
"color": "default",
"material": "default"
},
"side": {
"color": "white",
"material": "nappa"
}
},
"gender": "female",
"size": 25,
"query": "model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"url": "/config/customization?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"image": "/compose?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"extras": 0,
"engraving": "metal_silver:style",
"initials": "AA",
"initials_extra": {
"main": {
"initials": "AA",
"engraving": "metal_silver:style"
}
}
}
},
{
"_id": "5e2745e983c6ec0ba5d366ea",
"id": 9254,
"number": 9254,
"enabled": true,
"description": null,
"created": 1579632105,
"modified": 1654078565,
"meta": {
"sku": "5ba8f09a-71aa-45ca-b814-05724ace32d4"
},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": "FLAJ",
"key": "a104b04edf43f05a6cd44973bc243edf21ad5de2",
"status": "production",
"status_index": 2,
"production_status": "unset",
"production": "produce",
"gender": "female",
"currency": "USD",
"country": "US",
"price": 260.0,
"prices": {
"components": {
"front": {
"rule_id": 18660,
"rule_count": 4,
"price_taxes": 10.0,
"vat": 1.87,
"vat_rate": 23.0,
"price": 8.13,
"currency": "USD",
"hs_code": 6403999065,
"notes": [
"Nappa Leather"
],
"hs_code_priority": 1,
"price_original": 10.0,
"vat_included": true,
"ddp_included": true,
"fixed_price": true,
"round_price": false,
"base_country": "PT",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"hardware": {
"rule_id": 18669,
"rule_count": 3,
"price_taxes": 20.0,
"vat": 3.74,
"vat_rate": 23.0,
"price": 16.26,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 20.0,
"vat_included": true,
"ddp_included": true,
"fixed_price": true,
"round_price": false,
"base_country": "PT",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"laces": {
"rule_id": 18673,
"rule_count": 3,
"price_taxes": 0.0,
"vat": 0.0,
"vat_rate": 23.0,
"price": 0.0,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 0.0,
"vat_included": true,
"ddp_included": true,
"fixed_price": true,
"round_price": false,
"base_country": "PT",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"lining": {
"rule_id": 18672,
"rule_count": 3,
"price_taxes": 20.0,
"vat": 3.74,
"vat_rate": 23.0,
"price": 16.26,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 20.0,
"vat_included": true,
"ddp_included": true,
"fixed_price": true,
"round_price": false,
"base_country": "PT",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"side": {
"rule_id": 18680,
"rule_count": 4,
"price_taxes": 20.0,
"vat": 3.74,
"vat_rate": 23.0,
"price": 16.26,
"currency": "USD",
"hs_code": 6403999065,
"notes": [
"Nappa Leather"
],
"hs_code_priority": 1,
"price_original": 20.0,
"vat_included": true,
"ddp_included": true,
"fixed_price": true,
"round_price": false,
"base_country": "PT",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"sole": {
"rule_id": 18670,
"rule_count": 3,
"price_taxes": 15.01,
"vat": 2.81,
"vat_rate": 23.0,
"price": 12.2,
"currency": "USD",
"hs_code": 6403999065,
"notes": [
"Rubber"
],
"hs_code_priority": 1,
"price_original": 15.0,
"vat_included": true,
"ddp_included": true,
"fixed_price": true,
"round_price": false,
"base_country": "PT",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"logo": {
"rule_id": 18690,
"rule_count": 2,
"price_taxes": 0.0,
"vat": 0.0,
"vat_rate": 23.0,
"price": 0.0,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 0.0,
"vat_included": true,
"ddp_included": true,
"fixed_price": true,
"round_price": false,
"base_country": "PT",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"shadow": {
"rule_id": 18671,
"rule_count": 3,
"price_taxes": 175.0,
"vat": 32.72,
"vat_rate": 23.0,
"price": 142.28,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 175.0,
"vat_included": true,
"ddp_included": true,
"fixed_price": true,
"round_price": false,
"base_country": "PT",
"base_currency": "EUR",
"exchanged": null,
"cites": false
}
},
"total": {
"price_final": 260.0,
"price_taxes": 260.0,
"vat": 0.0,
"ddp": 0.0,
"ddp_percent": 0.0,
"vat_rate": 0.0,
"price": 260.0,
"currency": "USD",
"country": "US",
"hs_codes": [
6403999065
],
"hs_code_priority": 1,
"shipping": 0.0,
"notes": [
"Rubber",
"Nappa Leather"
],
"diag": {
"no_round": {
"price_final": 260.0,
"price_taxes": 260.0,
"price": 260.0,
"vat": 0.0,
"ddp": 0.0
},
"patch": true,
"round_value": true,
"is_vat": false,
"is_ddp": true,
"is_european": false,
"is_rounded": false,
"vat_included": true,
"ddp_included": true,
"fixed_price": true,
"round_price": false,
"base_country": "PT",
"base_currency": "EUR",
"exchanged": null
},
"cites": false
}
},
"brand": "swear",
"shoe": "vyner",
"variant": null,
"shoe_query": "model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"shoe_url": "/config/customization?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"image_url": "/compose?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"minify_hash": "Mzk4NjU",
"image_hash": "Mzk4NjY",
"image_o_hash": "Mzk4Njc",
"top_hash": "Mzk4Njg",
"top_o_hash": "Mzk4Njk",
"bottom_hash": "Mzk4NzA",
"bottom_o_hash": "Mzk4NzE",
"back_hash": "Mzk4NzI",
"side_hash": "Mzk4NzM",
"structure": "{\"brand\": \"swear\", \"model\": \"vyner\", \"variant\": null, \"parts\": [{\"material\": \"nappa\", \"color\": \"white\", \"name\": \"front\", \"hidden\": false, \"optional\": false}, {\"material\": \"nappa\", \"color\": \"white\", \"name\": \"side\", \"hidden\": false, \"optional\": false}, {\"material\": \"calf_lining\", \"color\": \"white\", \"name\": \"lining\", \"hidden\": false, \"optional\": false}, {\"material\": \"nylon\", \"color\": \"white\", \"name\": \"laces\", \"hidden\": false, \"optional\": false}, {\"material\": \"rubber\", \"color\": \"white\", \"name\": \"sole\", \"hidden\": false, \"optional\": false}, {\"material\": \"metal\", \"color\": \"silver\", \"name\": \"hardware\", \"hidden\": false, \"optional\": false}, {\"material\": \"metal\", \"color\": \"silver\", \"name\": \"logo\", \"hidden\": true, \"optional\": false}, {\"material\": \"default\", \"color\": \"default\", \"name\": \"shadow\", \"hidden\": true, \"optional\": false}], \"parts_m\": {\"front\": {\"material\": \"nappa\", \"color\": \"white\"}, \"hardware\": {\"material\": \"metal\", \"color\": \"silver\"}, \"laces\": {\"material\": \"nylon\", \"color\": \"white\"}, \"lining\": {\"material\": \"calf_lining\", \"color\": \"white\"}, \"side\": {\"material\": \"nappa\", \"color\": \"white\"}, \"sole\": {\"material\": \"rubber\", \"color\": \"white\"}, \"logo\": {\"material\": \"metal\", \"color\": \"silver\"}, \"shadow\": {\"material\": \"default\", \"color\": \"default\"}}, \"gender\": \"female\", \"size\": 25, \"query\": \"model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default\", \"url\": \"/config/customization?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default\", \"image\": \"/compose?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default\", \"extras\": 0}",
"ff_id": null,
"ff_shoe_id": 12212972,
"ff_order_id": "835c354e-82f9-4d8e-89fd-1eed4b1dc1d8",
"delivery_time": 10,
"tracking_number": null,
"tracking_url": null,
"notes": [],
"states": [
5298,
6028
],
"attachments": [],
"account": "docs@platforme.com",
"customer": null,
"ambassador": null,
"store": null,
"factory": "FLAJ",
"report_url_e": null,
"type": "build",
"chat": null,
"invoicing_info": {},
"last_update_touches": [],
"last_updated": null,
"pickup_number": null,
"priority": null,
"proof_of_delivery_url": null,
"return_tracking_number": null,
"return_tracking_url": null,
"scale_s": null,
"shipping_info": {},
"states_names": [],
"tag": null,
"transport": {},
"transport_ready": false,
"quantity": 1,
"domain": null,
"sku": null,
"retail_id": null,
"item_id": null,
"invoice": {},
"last_state_change": null,
"issues": [],
"number_s": "#009254",
"channel": "digital",
"delivery_d": 1580496105.0,
"scale": "it",
"size_scaled": 38.0,
"details": {
"brand": "swear",
"model": "vyner",
"variant": null,
"parts": [
{
"material": "nappa",
"color": "white",
"name": "front",
"hidden": false,
"optional": false
},
{
"material": "nappa",
"color": "white",
"name": "side",
"hidden": false,
"optional": false
},
{
"material": "calf_lining",
"color": "white",
"name": "lining",
"hidden": false,
"optional": false
},
{
"material": "nylon",
"color": "white",
"name": "laces",
"hidden": false,
"optional": false
},
{
"material": "rubber",
"color": "white",
"name": "sole",
"hidden": false,
"optional": false
},
{
"material": "metal",
"color": "silver",
"name": "hardware",
"hidden": false,
"optional": false
},
{
"material": "metal",
"color": "silver",
"name": "logo",
"hidden": true,
"optional": false
},
{
"material": "default",
"color": "default",
"name": "shadow",
"hidden": true,
"optional": false
}
],
"parts_m": {
"front": {
"material": "nappa",
"color": "white"
},
"hardware": {
"material": "metal",
"color": "silver"
},
"laces": {
"material": "nylon",
"color": "white"
},
"lining": {
"material": "calf_lining",
"color": "white"
},
"side": {
"material": "nappa",
"color": "white"
},
"sole": {
"material": "rubber",
"color": "white"
},
"logo": {
"material": "metal",
"color": "silver"
},
"shadow": {
"material": "default",
"color": "default"
}
},
"gender": "female",
"size": 25,
"query": "model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"url": "/config/customization?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"image": "/compose?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"extras": 0
}
}
]
HTTP Request
GET https://ripe-core-sbx.platforme.com/api/orders
Parameters
This request receives 2 parameters: filter_operator
and filters
. If filters
is defined but not filter_operator
, its default value will be $and
.
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
filter_operator | no | text | $and |
The logic operator that unites all the options given in filters . |
filters | no | text | null |
The filters that will be applied to the availability rules query. Must have the structure <parameter>:<operator>:<value> . More than one filter can be given to the query, and their application together is based on the filter_operator given. |
number_records | no | numeric | 10 |
The number of results that will be returned in the response. |
start_record | no | numeric | 0 |
The offset index from which the results will be start when returned. |
Filter Operator Values
Value | Description |
---|---|
$and | The results given must comply with all the filters. |
$or | The results given must comply with at least on of the filters. |
Filters Parameters
Field | Mandatory | Type | Default | Description |
---|---|---|---|---|
id | no | numeric | null |
Order production identifier. |
key | no | numeric | null |
Order production key identifier. |
number | no | numeric | null |
Order production number. |
number_s | no | text | null |
Order production number in text format. |
ff_order_id | no | text | null |
Order production's related order sales identifier. |
retail_id | no | text | null |
Order production's related order sales identifier (preferred over ff_order_id ). |
item_id | no | text | null |
Order production's unique item identifier. |
shoe | no | text | null |
Model name. |
ff_id | no | text | null |
The concrete identifier of the model that represents the entry point for a specific customization of a product (customization alias). |
ff_shoe_id | no | text | null |
The model identifier of the base shoe that is used for the order production. |
production | no | text | null |
Kind of production strategy (one of "produce", "prototype", "reference"). |
store | no | text | null |
The store from which this order was generated, this is only populated in case the a store is defined for the source of the order. |
status | no | text | null |
Order production's status (one of pending, created, production, ready, sent, received, returned, canceled). |
account | no | text | null |
System account responsible for the handling of the production order. |
ambassador | no | text | null |
In case it's set, defines the ambassador to which this production order belongs. |
customer | no | text | null |
Reference to the account of the customer (or an employee representing him) to which this order belongs. |
gender | no | text | null |
Order production's model gender. |
country | no | text | null |
Order production's product country destination. |
currency | no | text | null |
Currency used to calculate the price. |
price | no | numeric | null |
Order's production customization cost price. |
tracking_number | no | text | null |
Shipping tracking number. |
created | no | date time | null |
Date when the order production was initially created. |
modified | no | date time | null |
The date and time of the latest modification operation. |
Show
Example Request
curl "https://ripe-core-sbx.platforme.com/api/orders/4683" \
-H "X-Secret-Key: $RIPE_KEY"
Example Response
{
"_id": "659825a8bb11325081aafcea",
"id": 320019,
"number": 320019,
"enabled": true,
"description": "VYNER",
"created": 1704469927,
"modified": 1704469928,
"meta": {
"sku": "f3be7124-618e-48b0-8c24-af0dac366f0d"
},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": "flaj",
"quantity": 1,
"key": "a67194c0286a36b0b95869f2b15cc97f46f3839e",
"status": "created",
"status_index": 1,
"production_status": "unset",
"production": "produce",
"priority": null,
"type": "build",
"gender": "male",
"scale_s": null,
"currency": "USD",
"country": "US",
"price": 1574.13,
"prices": {
"components": {
"front": {
"rule_id": 27166,
"rule_count": 5,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [
"Nappa Leather"
],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"hardware": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"laces": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"lining": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"side": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [
"Nappa Leather"
],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"sole": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [
"Rubber"
],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"logo": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"shadow": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
}
},
"total": {
"price_final": 1574.13,
"price_taxes": 1326.67,
"vat": 0.0,
"ddp": 247.46,
"ddp_percent": 18.6528544,
"vat_rate": 0.0,
"price": 1326.67,
"currency": "USD",
"country": "US",
"hs_codes": [
6403999065
],
"hs_code_priority": 1,
"shipping": 0.0,
"notes": [
"Rubber",
"Nappa Leather"
],
"diag": {
"no_round": {
"price_final": 1574.13,
"price_taxes": 1326.67,
"price": 1326.67,
"vat": 0.0,
"ddp": 247.46
},
"patch": true,
"round_value": true,
"is_vat": false,
"is_ddp": true,
"is_european": false,
"is_rounded": false,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null
},
"cites": false
}
},
"brand": "swear",
"factory": "flaj",
"domain": null,
"sku": "teste2",
"shoe": "vyner",
"variant": null,
"shoe_query": "model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"shoe_url": "/config/customization?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"image_url": "/compose?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"minify_hash": "Mzk4NjU",
"image_hash": "Mzk4NjY",
"image_o_hash": "Mzk4Njc",
"top_hash": "Mzk4Njg",
"top_o_hash": "NDU0NTc",
"bottom_hash": "Mzk4NzA",
"bottom_o_hash": "NDU0NTg",
"back_hash": "Mzk4NzI",
"side_hash": "Mzk4NzM",
"structure": "{\"brand\": \"swear\", \"model\": \"vyner\", \"variant\": null, \"parts_m\": {\"front\": {\"material\": \"nappa\", \"color\": \"white\"}, \"hardware\": {\"material\": \"metal\", \"color\": \"silver\"}, \"laces\": {\"material\": \"nylon\", \"color\": \"white\"}, \"lining\": {\"material\": \"calf_lining\", \"color\": \"white\"}, \"side\": {\"material\": \"nappa\", \"color\": \"white\"}, \"sole\": {\"material\": \"rubber\", \"color\": \"white\"}, \"logo\": {\"material\": \"metal\", \"color\": \"silver\"}, \"shadow\": {\"material\": \"default\", \"color\": \"default\"}}, \"size\": 25, \"gender\": \"male\", \"parts\": [{\"material\": \"nappa\", \"color\": \"white\", \"name\": \"front\", \"hidden\": false, \"optional\": false}, {\"material\": \"nappa\", \"color\": \"white\", \"name\": \"side\", \"hidden\": false, \"optional\": false}, {\"material\": \"calf_lining\", \"color\": \"white\", \"name\": \"lining\", \"hidden\": false, \"optional\": false}, {\"material\": \"nylon\", \"color\": \"white\", \"name\": \"laces\", \"hidden\": false, \"optional\": false}, {\"material\": \"rubber\", \"color\": \"white\", \"name\": \"sole\", \"hidden\": false, \"optional\": false}, {\"material\": \"metal\", \"color\": \"silver\", \"name\": \"hardware\", \"hidden\": false, \"optional\": false}, {\"material\": \"metal\", \"color\": \"silver\", \"name\": \"logo\", \"hidden\": true, \"optional\": false}, {\"material\": \"default\", \"color\": \"default\", \"name\": \"shadow\", \"hidden\": true, \"optional\": false}], \"query\": \"model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default\", \"url\": \"/config/customization?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default\", \"image\": \"/compose?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default\", \"extras\": 0}",
"ff_id": null,
"ff_shoe_id": 12212972,
"ff_order_id": "60c3c924-ac87-4fd3-aff1-0621ef51b08d",
"retail_id": "e0820444-c0b8-47c2-bb52-378791ae4351",
"item_id": "15c4bf53-12a1-4d65-8199-ceb6af671682",
"delivery_time": 7,
"shipping_info": null,
"invoicing_info": null,
"invoice": {
"invoicer": "invoice_express",
"invoice_details": {
"finalize": false,
"series": "InMSE23",
"tax_exemption": "M16"
}
},
"transport": {
"courier": "ups",
"package": "envelope",
"weight": 1.5,
"weight_units": "kilograms",
"documents": [
"invoice",
"general-certificate"
],
"shipping_details": {
"service": "express",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
}
},
"transport_ready": false,
"tracking_number": null,
"tracking_url": null,
"return_tracking_number": null,
"return_tracking_url": null,
"pickup_number": null,
"proof_of_delivery_url": null,
"report_url_e": null,
"last_updated": 1704469928,
"last_update_touches": [],
"last_state_change": 1704469928,
"tag": null,
"states_names": [
"created"
],
"notes": [],
"issues": [],
"states": [
{
"_id": "659825a8bb11325081aafcee",
"id": 330911,
"enabled": true,
"description": null,
"created": 1704469928,
"modified": 1704469928,
"meta": {},
"brand_t": null,
"retailer_t": null,
"vendor_t": null,
"name": "created",
"justification": "Order import",
"timestamp": 1704469928,
"email": "docs@platforme.com",
"account": {
"_id": "5c7e68794ce4e7006b5c71c8",
"id": 30,
"enabled": true,
"description": "",
"created": 1551788153,
"modified": 1704469928,
"meta": {},
"username": "docs",
"email": "docs@platforme.com",
"facebook_id": "",
"github_login": "",
"google_id": "",
"live_id": "",
"twitter_username": "",
"type": 1,
"last_login": 1704469928,
"roles": [],
"avatar_url": "https://ripe-core-sbx.platforme.com/admin/accounts/docs/avatar"
},
"chat": null,
"attachments": []
}
],
"attachments": [],
"account": "docs@platforme.com",
"customer": null,
"ambassador": null,
"store": null,
"chat": null,
"number_s": "#320019",
"channel": "digital",
"delivery_d": 1705074727.0,
"scale": "it",
"size_scaled": 40.0,
"details": {
"brand": "swear",
"model": "vyner",
"variant": null,
"parts_m": {
"front": {
"material": "nappa",
"color": "white"
},
"hardware": {
"material": "metal",
"color": "silver"
},
"laces": {
"material": "nylon",
"color": "white"
},
"lining": {
"material": "calf_lining",
"color": "white"
},
"side": {
"material": "nappa",
"color": "white"
},
"sole": {
"material": "rubber",
"color": "white"
},
"logo": {
"material": "metal",
"color": "silver"
},
"shadow": {
"material": "default",
"color": "default"
}
},
"size": 25,
"gender": "male",
"parts": [
{
"material": "nappa",
"color": "white",
"name": "front",
"hidden": false,
"optional": false
},
{
"material": "nappa",
"color": "white",
"name": "side",
"hidden": false,
"optional": false
},
{
"material": "calf_lining",
"color": "white",
"name": "lining",
"hidden": false,
"optional": false
},
{
"material": "nylon",
"color": "white",
"name": "laces",
"hidden": false,
"optional": false
},
{
"material": "rubber",
"color": "white",
"name": "sole",
"hidden": false,
"optional": false
},
{
"material": "metal",
"color": "silver",
"name": "hardware",
"hidden": false,
"optional": false
},
{
"material": "metal",
"color": "silver",
"name": "logo",
"hidden": true,
"optional": false
},
{
"material": "default",
"color": "default",
"name": "shadow",
"hidden": true,
"optional": false
}
],
"query": "model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"url": "/config/customization?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"image": "/compose?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"extras": 0
}
}
Get details of a specific order, given its order number. Includes data from the product's composition, price, order tracking and production status.
Authentication credentials required.
HTTP Request
GET https://ripe-core-sbx.platforme.com/api/orders/<int:number>
Path Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
number | yes | numeric | Order's production number. |
Header Fields
Field | Mandatory | Type | Default | Description |
---|---|---|---|---|
X-Secret-Key | yes | text | The X-Secret-Key to authenticate the request. |
Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
sid | no | text | The RIPE Session ID to authenticate the request. |
Import Simple
Example Request
curl -X POST \
"https://ripe-core-sbx.platforme.com/api/orders/import_simple" \
-H "Content-Type: application/json" \
-H "X-Secret-Key: $RIPE_KEY" \
-d '{ "brand": "swear", "model": "vyner", "ensure": "true" }'
Example Response
{
"_id": "659825a93e27f1c070aafbef",
"id": 320020,
"number": 320020,
"enabled": true,
"description": "VYNER",
"created": 1704469929,
"modified": 1704469929,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": "flaj",
"quantity": 1,
"key": "78c6bad97324ead90a7b9d0d7a31abd4344cc3c0",
"status": "created",
"status_index": 1,
"production_status": "unset",
"production": "produce",
"priority": null,
"type": "build",
"gender": "male",
"scale_s": null,
"currency": null,
"country": null,
"price": 1574.13,
"prices": {
"components": {
"lining": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "EUR",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": "EU-EUR",
"cites": false
},
"front": {
"rule_id": 27166,
"rule_count": 5,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "EUR",
"hs_code": 6403999065,
"notes": [
"Nappa Leather"
],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": "EU-EUR",
"cites": false
},
"side": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "EUR",
"hs_code": 6403999065,
"notes": [
"Nappa Leather"
],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": "EU-EUR",
"cites": false
},
"sole": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "EUR",
"hs_code": 6403999065,
"notes": [
"Rubber"
],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": "EU-EUR",
"cites": false
},
"laces": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "EUR",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": "EU-EUR",
"cites": false
},
"logo": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "EUR",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": "EU-EUR",
"cites": false
},
"hardware": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "EUR",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": "EU-EUR",
"cites": false
},
"shadow": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "EUR",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": "EU-EUR",
"cites": false
}
},
"total": {
"price_final": 1574.13,
"price_taxes": 1326.67,
"vat": 0.0,
"ddp": 247.46,
"ddp_percent": 18.6528544,
"vat_rate": 0.0,
"price": 1326.67,
"currency": "EUR",
"country": "US",
"hs_codes": [
6403999065
],
"hs_code_priority": 1,
"shipping": 0.0,
"notes": [
"Rubber",
"Nappa Leather"
],
"diag": {
"no_round": {
"price_final": 1574.13,
"price_taxes": 1326.67,
"price": 1326.67,
"vat": 0.0,
"ddp": 247.46
},
"patch": true,
"round_value": true,
"is_vat": false,
"is_ddp": true,
"is_european": false,
"is_rounded": false,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": "EU-EUR"
},
"cites": false
}
},
"brand": "swear",
"factory": "flaj",
"domain": null,
"sku": null,
"shoe": "vyner",
"variant": null,
"shoe_query": "model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"shoe_url": "/config/customization?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"image_url": "/compose?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"minify_hash": "Mzk4NjU",
"image_hash": "Mzk4NjY",
"image_o_hash": "Mzk4Njc",
"top_hash": "Mzk4Njg",
"top_o_hash": "NDU0NTc",
"bottom_hash": "Mzk4NzA",
"bottom_o_hash": "NDU0NTg",
"back_hash": "Mzk4NzI",
"side_hash": "Mzk4NzM",
"structure": "{\"brand\": \"swear\", \"model\": \"vyner\", \"variant\": null, \"parts_m\": {\"lining\": {\"material\": \"calf_lining\", \"color\": \"white\", \"hidden\": false, \"optional\": false}, \"front\": {\"material\": \"nappa\", \"color\": \"white\", \"hidden\": false, \"optional\": false}, \"side\": {\"material\": \"nappa\", \"color\": \"white\", \"hidden\": false, \"optional\": false}, \"sole\": {\"material\": \"rubber\", \"color\": \"white\", \"hidden\": false, \"optional\": false}, \"laces\": {\"material\": \"nylon\", \"color\": \"white\", \"hidden\": false, \"optional\": false}, \"logo\": {\"material\": \"metal\", \"color\": \"silver\", \"hidden\": true, \"optional\": false}, \"hardware\": {\"material\": \"metal\", \"color\": \"silver\", \"hidden\": false, \"optional\": false}, \"shadow\": {\"material\": \"default\", \"color\": \"default\", \"hidden\": true, \"optional\": false}}, \"size\": null, \"gender\": \"male\", \"parts\": [{\"material\": \"nappa\", \"color\": \"white\", \"hidden\": false, \"optional\": false, \"name\": \"front\"}, {\"material\": \"nappa\", \"color\": \"white\", \"hidden\": false, \"optional\": false, \"name\": \"side\"}, {\"material\": \"calf_lining\", \"color\": \"white\", \"hidden\": false, \"optional\": false, \"name\": \"lining\"}, {\"material\": \"nylon\", \"color\": \"white\", \"hidden\": false, \"optional\": false, \"name\": \"laces\"}, {\"material\": \"rubber\", \"color\": \"white\", \"hidden\": false, \"optional\": false, \"name\": \"sole\"}, {\"material\": \"metal\", \"color\": \"silver\", \"hidden\": false, \"optional\": false, \"name\": \"hardware\"}, {\"material\": \"metal\", \"color\": \"silver\", \"hidden\": true, \"optional\": false, \"name\": \"logo\"}, {\"material\": \"default\", \"color\": \"default\", \"hidden\": true, \"optional\": false, \"name\": \"shadow\"}], \"query\": \"model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default\", \"url\": \"/config/customization?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default\", \"image\": \"/compose?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default\", \"extras\": 0}",
"ff_id": null,
"ff_shoe_id": 12212972,
"ff_order_id": null,
"retail_id": null,
"item_id": null,
"delivery_time": 7,
"shipping_info": null,
"invoicing_info": null,
"invoice": {
"invoicer": "invoice_express",
"invoice_details": {
"finalize": false,
"series": "InMSE23",
"tax_exemption": "M16"
}
},
"transport": {
"courier": "ups",
"package": "envelope",
"weight": 1.5,
"weight_units": "kilograms",
"documents": [
"invoice",
"general-certificate"
],
"shipping_details": {
"service": "express",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
}
},
"transport_ready": false,
"tracking_number": null,
"tracking_url": null,
"return_tracking_number": null,
"return_tracking_url": null,
"pickup_number": null,
"proof_of_delivery_url": null,
"report_url_e": null,
"last_updated": 1704469929,
"last_update_touches": [],
"last_state_change": 1704469929,
"tag": null,
"states_names": [
"created"
],
"notes": [],
"issues": [],
"states": [
{
"_id": "659825a93e27f1c070aafbf2",
"id": 330912,
"enabled": true,
"description": null,
"created": 1704469929,
"modified": 1704469929,
"meta": {},
"brand_t": null,
"retailer_t": null,
"vendor_t": null,
"name": "created",
"justification": "Order import",
"timestamp": 1704469929,
"email": "docs@platforme.com",
"account": {
"_id": "5c7e68794ce4e7006b5c71c8",
"id": 30,
"enabled": true,
"description": "",
"created": 1551788153,
"modified": 1704469929,
"meta": {},
"username": "docs",
"email": "docs@platforme.com",
"facebook_id": "",
"github_login": "",
"google_id": "",
"live_id": "",
"twitter_username": "",
"type": 1,
"last_login": 1704469929,
"roles": [],
"avatar_url": "https://ripe-core-sbx.platforme.com/admin/accounts/docs/avatar"
},
"chat": null,
"attachments": []
}
],
"attachments": [],
"account": "docs@platforme.com",
"customer": null,
"ambassador": null,
"store": null,
"chat": null,
"number_s": "#320020",
"channel": "unknown",
"delivery_d": 1705074729.0,
"scale": "it",
"size_scaled": 40.0,
"details": {
"brand": "swear",
"model": "vyner",
"variant": null,
"parts_m": {
"lining": {
"material": "calf_lining",
"color": "white",
"hidden": false,
"optional": false
},
"front": {
"material": "nappa",
"color": "white",
"hidden": false,
"optional": false
},
"side": {
"material": "nappa",
"color": "white",
"hidden": false,
"optional": false
},
"sole": {
"material": "rubber",
"color": "white",
"hidden": false,
"optional": false
},
"laces": {
"material": "nylon",
"color": "white",
"hidden": false,
"optional": false
},
"logo": {
"material": "metal",
"color": "silver",
"hidden": true,
"optional": false
},
"hardware": {
"material": "metal",
"color": "silver",
"hidden": false,
"optional": false
},
"shadow": {
"material": "default",
"color": "default",
"hidden": true,
"optional": false
}
},
"size": null,
"gender": "male",
"parts": [
{
"material": "nappa",
"color": "white",
"hidden": false,
"optional": false,
"name": "front"
},
{
"material": "nappa",
"color": "white",
"hidden": false,
"optional": false,
"name": "side"
},
{
"material": "calf_lining",
"color": "white",
"hidden": false,
"optional": false,
"name": "lining"
},
{
"material": "nylon",
"color": "white",
"hidden": false,
"optional": false,
"name": "laces"
},
{
"material": "rubber",
"color": "white",
"hidden": false,
"optional": false,
"name": "sole"
},
{
"material": "metal",
"color": "silver",
"hidden": false,
"optional": false,
"name": "hardware"
},
{
"material": "metal",
"color": "silver",
"hidden": true,
"optional": false,
"name": "logo"
},
{
"material": "default",
"color": "default",
"hidden": true,
"optional": false,
"name": "shadow"
}
],
"query": "model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"url": "/config/customization?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"image": "/compose?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"extras": 0
}
}
Import an order to the system with a minimal set of required parameters using appropriate defaults for the remaining ones. If the current email from session exists, it will be retrieved so that it may be used as the owner of the order (ambassador).
Admin authentication is required.
HTTP Request
POST https://ripe-core-sbx.platforme.com/api/orders/import_simple
Besides the order's import, the following generates the respective production order report as a PDF file format.
POST https://ripe-core-sbx.platforme.com/api/orders/import.pdf
Header Fields
Field | Mandatory | Type | Default | Description |
---|---|---|---|---|
X-Secret-Key | yes | text | The X-Secret-Key to authenticate the request. |
Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
sid | no | text | The RIPE Session ID to authenticate the request. |
POST Body
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
brand | yes | text | The brand's name. | |
model | yes | text | The model's name. | |
ff_order_id | no | text | null |
The e-commerce order identifier (soft-deprecated legacy id, use retail_id instead). |
retail_id | no | text | null |
Order production's related order sales identifier (preferred over ff_order_id ). |
item_id | no | text | null |
Order production's unique item (physical product identifier). |
ensure | no | boolean | false |
If true, the model config appropriate defauls are used (like parts' colors and materials). |
parts | no | dictionary | Specific customization (part, material, color). | |
size | no | number | The size of the model (native value). | |
variant | no | text | null |
The variant (or sub-variant) of the specified model. |
engraving | no | text | null |
The personalization engraving properties. |
initials | no | text | null |
The personalization initials text. |
initials_extra | no | dictionary | null |
The personalization initials object, containing the initials text and engraving for each group. |
price | no | number | null |
The model's price. |
product_id | no | numeric | null |
The product's unique identification (ID) assigned to a particular configuration. |
factory | no | text | null |
The name of the factory that is going to be used for the production of this order. |
transport | no | text | null |
The transport information that is going to be used for the shipping of this order (if any). |
version | no | number | latest | The build's version. |
gender | no | text | null |
Order production's model gender. |
scale | no | text | null |
The scale associated with the model in the current order. |
delivery_time | no | numeric | null |
Number of expected days that the delivery of this order will take. |
domain | no | text | null |
The domain of this order which will be used for multiple operations such as SKU resolution. |
sku | no | text | null |
SKU representation of all the information about the order customization. |
dku | no | text | null |
DKU representation of all the information about the order customization. |
currency | no | text | EUR |
The ISO 4217 currency code, used for price calculation. |
country | no | text | US |
The ISO 3166-2 country code, used for price calculation. |
meta | no | text | null |
Complementary information to be added, key:value comma separated format (ie: key1:value1,key2:value2). |
notify | no | boolean | false |
Mark order to trigger notification after creation. |
pending | no | boolean | false |
Sets the order's initial status as "Pending" so it has to be confirmed. |
safe | no | boolean | true |
If true, does not allow to override an existing order with the same ff_order_id . |
production | no | text | produce |
The production strategy that categorizes the order (produce , prototype , reference or undefined ). |
notes | no | list of text | [] |
A list of notes that will be added to the order. |
type | no | text | build |
The type of order, build or buildless . A build type has a 3DB build related to it, with possibly logic related to parts, pricing and others. A buildless order has no logic related to a 3DB and is only a static import of information. |
Import
Example Request
curl -X POST \
"https://ripe-core-sbx.platforme.com/api/orders/import" \
-H "Content-Type: application/x-www-form-urlencoded" \
-H "X-Secret-Key: $RIPE_KEY" \
-d "ff_order_id=e0528301-cba1-4155-bfd3-99aef70017b7" \
-d "retail_id=4629f073-f4c0-4a9a-a598-ca8e185046f6" \
-d "item_id=4a37df2f-f509-4e7a-a367-0ea5593f35ac" \
-d 'contents={
"brand": "swear",
"model": "vyner",
"variant": "",
"parts": {
"lining": {
"color": "white",
"material": "calf_lining"
},
"sole": {
"color": "white",
"material": "rubber"
},
"hardware": {
"color": "silver",
"material": "metal"
},
"laces": {
"color": "white",
"material": "nylon"
},
"front": {
"color": "white",
"material": "nappa"
},
"logo": {
"color": "silver",
"material": "metal"
},
"shadow": {
"color": "default",
"material": "default"
},
"side": {
"color": "white",
"material": "nappa"
}
},
"engraving": "metal_silver:style",
"initials": "aa",
"size": 25,
"product_id": 11221602
}
' \
-d "meta=sku:{sku_here}" \
-d "notify=1" \
-d "country=US" \
-d "currency=USD"
Example Request
curl -X POST \
"https://ripe-core-sbx.platforme.com/api/orders/import" \
-H "Content-Type: application/x-www-form-urlencoded" \
-H "X-Secret-Key: $RIPE_KEY" \
-d "ff_order_id={ff_order_id_here}" \
-d "retail_id={retail_id_here}" \
-d "item_id={item_id_here}" \
-d "dku=swear.vyner.-1.3%3A10.0%3A2.0%3A18.0%3A3.4%3A10.0%3A5.4%3A0%3A2.5%3A0%3A0.%24s%3A25" \
-d "notify=1" \
-d "country=US" \
-d "currency=USD"
Example Response
{
"_id": "659825aaed44d3f74baaf84d",
"id": 320021,
"number": 320021,
"enabled": true,
"description": "VYNER",
"created": 1704469930,
"modified": 1704469930,
"meta": {
"sku": "5d53f2f7-1105-4fb0-ad41-1a161dd0f373",
"notified": 1704469930
},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": "flaj",
"quantity": 1,
"key": "3833703f875a9086c6be545b27384ebce8d64ad6",
"status": "created",
"status_index": 1,
"production_status": "unset",
"production": "produce",
"priority": null,
"type": "build",
"gender": "male",
"scale_s": null,
"currency": "USD",
"country": "US",
"price": 300.0,
"prices": {},
"brand": "swear",
"factory": "flaj",
"domain": null,
"sku": "teste2",
"shoe": "vyner",
"variant": null,
"shoe_query": "model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"shoe_url": "/config/customization?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"image_url": "/compose?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"minify_hash": "Mzk4NjU",
"image_hash": "Mzk4NjY",
"image_o_hash": "Mzk4Njc",
"top_hash": "Mzk4Njg",
"top_o_hash": "NDU0NTc",
"bottom_hash": "Mzk4NzA",
"bottom_o_hash": "NDU0NTg",
"back_hash": "Mzk4NzI",
"side_hash": "Mzk4NzM",
"structure": "{\"brand\": \"swear\", \"model\": \"vyner\", \"variant\": null, \"parts_m\": {\"lining\": {\"color\": \"white\", \"material\": \"calf_lining\"}, \"sole\": {\"color\": \"white\", \"material\": \"rubber\"}, \"hardware\": {\"color\": \"silver\", \"material\": \"metal\"}, \"laces\": {\"color\": \"white\", \"material\": \"nylon\"}, \"front\": {\"color\": \"white\", \"material\": \"nappa\"}, \"logo\": {\"color\": \"silver\", \"material\": \"metal\"}, \"shadow\": {\"color\": \"default\", \"material\": \"default\"}, \"side\": {\"color\": \"white\", \"material\": \"nappa\"}}, \"size\": 25, \"engraving\": \"metal_gold:font\", \"initials\": \"AB\", \"gender\": \"male\", \"parts\": [{\"color\": \"white\", \"material\": \"nappa\", \"name\": \"front\", \"hidden\": false, \"optional\": false}, {\"color\": \"white\", \"material\": \"nappa\", \"name\": \"side\", \"hidden\": false, \"optional\": false}, {\"color\": \"white\", \"material\": \"calf_lining\", \"name\": \"lining\", \"hidden\": false, \"optional\": false}, {\"color\": \"white\", \"material\": \"nylon\", \"name\": \"laces\", \"hidden\": false, \"optional\": false}, {\"color\": \"white\", \"material\": \"rubber\", \"name\": \"sole\", \"hidden\": false, \"optional\": false}, {\"color\": \"silver\", \"material\": \"metal\", \"name\": \"hardware\", \"hidden\": false, \"optional\": false}, {\"color\": \"silver\", \"material\": \"metal\", \"name\": \"logo\", \"hidden\": true, \"optional\": false}, {\"color\": \"default\", \"material\": \"default\", \"name\": \"shadow\", \"hidden\": true, \"optional\": false}], \"query\": \"model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default\", \"url\": \"/config/customization?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default\", \"image\": \"/compose?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default\", \"extras\": 0, \"initials_extra\": {\"main\": {\"initials\": \"AB\", \"engraving\": \"metal_gold:font\"}}}",
"ff_id": null,
"ff_shoe_id": 12212972,
"ff_order_id": "e0528301-cba1-4155-bfd3-99aef70017b7",
"retail_id": "4629f073-f4c0-4a9a-a598-ca8e185046f6",
"item_id": "4a37df2f-f509-4e7a-a367-0ea5593f35ac",
"delivery_time": 7,
"shipping_info": null,
"invoicing_info": null,
"invoice": {
"invoicer": "invoice_express",
"invoice_details": {
"finalize": false,
"series": "InMSE23",
"tax_exemption": "M16"
}
},
"transport": {
"courier": "ups",
"package": "envelope",
"weight": 1.5,
"weight_units": "kilograms",
"documents": [
"invoice",
"general-certificate"
],
"shipping_details": {
"service": "express",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
}
},
"transport_ready": false,
"tracking_number": null,
"tracking_url": null,
"return_tracking_number": null,
"return_tracking_url": null,
"pickup_number": null,
"proof_of_delivery_url": null,
"report_url_e": null,
"last_updated": 1704469930,
"last_update_touches": [],
"last_state_change": 1704469930,
"tag": null,
"states_names": [
"created"
],
"notes": [],
"issues": [],
"states": [
{
"_id": "659825aaed44d3f74baaf851",
"id": 330913,
"enabled": true,
"description": null,
"created": 1704469930,
"modified": 1704469930,
"meta": {},
"brand_t": null,
"retailer_t": null,
"vendor_t": null,
"name": "created",
"justification": "Order import",
"timestamp": 1704469930,
"email": "docs@platforme.com",
"account": {
"_id": "5c7e68794ce4e7006b5c71c8",
"id": 30,
"enabled": true,
"description": "",
"created": 1551788153,
"modified": 1704469930,
"meta": {},
"username": "docs",
"email": "docs@platforme.com",
"facebook_id": "",
"github_login": "",
"google_id": "",
"live_id": "",
"twitter_username": "",
"type": 1,
"last_login": 1704469930,
"roles": [],
"avatar_url": "https://ripe-core-sbx.platforme.com/admin/accounts/docs/avatar"
},
"chat": null,
"attachments": []
}
],
"attachments": [],
"account": "docs@platforme.com",
"customer": null,
"ambassador": null,
"store": null,
"chat": null,
"number_s": "#320021",
"channel": "digital",
"delivery_d": 1705074730.0,
"scale": "it",
"size_scaled": 40.0,
"details": {
"brand": "swear",
"model": "vyner",
"variant": null,
"parts_m": {
"lining": {
"color": "white",
"material": "calf_lining"
},
"sole": {
"color": "white",
"material": "rubber"
},
"hardware": {
"color": "silver",
"material": "metal"
},
"laces": {
"color": "white",
"material": "nylon"
},
"front": {
"color": "white",
"material": "nappa"
},
"logo": {
"color": "silver",
"material": "metal"
},
"shadow": {
"color": "default",
"material": "default"
},
"side": {
"color": "white",
"material": "nappa"
}
},
"size": 25,
"engraving": "metal_gold:font",
"initials": "AB",
"gender": "male",
"parts": [
{
"color": "white",
"material": "nappa",
"name": "front",
"hidden": false,
"optional": false
},
{
"color": "white",
"material": "nappa",
"name": "side",
"hidden": false,
"optional": false
},
{
"color": "white",
"material": "calf_lining",
"name": "lining",
"hidden": false,
"optional": false
},
{
"color": "white",
"material": "nylon",
"name": "laces",
"hidden": false,
"optional": false
},
{
"color": "white",
"material": "rubber",
"name": "sole",
"hidden": false,
"optional": false
},
{
"color": "silver",
"material": "metal",
"name": "hardware",
"hidden": false,
"optional": false
},
{
"color": "silver",
"material": "metal",
"name": "logo",
"hidden": true,
"optional": false
},
{
"color": "default",
"material": "default",
"name": "shadow",
"hidden": true,
"optional": false
}
],
"query": "model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"url": "/config/customization?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"image": "/compose?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"extras": 0,
"initials_extra": {
"main": {
"initials": "AB",
"engraving": "metal_gold:font"
}
}
}
}
Import an order to the system with a set of parameters used for the creation of that order. If the current email from session exists, it will be retrieved so that it may be used as the owner of the order (ambassador).
Admin authentication is required.
HTTP Request
POST https://ripe-core-sbx.platforme.com/api/orders/import
Besides the order's import, the following generates the respective production order report as a PDF file format.
POST https://ripe-core-sbx.platforme.com/api/orders/import.pdf
Header Fields
Field | Mandatory | Type | Default | Description |
---|---|---|---|---|
X-Secret-Key | yes | text | The X-Secret-Key to authenticate the request. |
Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
sid | no | text | The RIPE Session ID to authenticate the request. |
POST Body
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
ff_order_id | yes | text | The e-commerce order identifier. | |
retail_id | no | text | ff_order_id | Order production's related order sales identifier. |
item_id | no | text | null |
Order production's unique item (physical product identifier). |
contents | no | text | null |
JSON encoded string values with all the information about the order structure. |
dku | no | text | null |
DKU representation of all the information about the order customization. |
currency | no | text | EUR |
The ISO 4217 currency code, used for price calculation. |
country | no | text | US |
The ISO 3166-2 country code, used for price calculation. |
meta | no | text | null |
Complementary information to be added, key:value comma separated format (ie: key1:value1,key2:value2). |
notify | no | boolean | false |
Mark order to trigger notification after creation. |
pending | no | boolean | false |
Sets the order's initial status as "Pending" so it has to be confirmed. |
safe | no | boolean | true |
If true, does not allow to override an existing order with the same ff_order_id . |
production | no | text | produce |
The production strategy that categorizes the order (produce , prototype , reference or undefined ). |
notes | no | list of text | [] |
A list of notes that will be added to the order. |
type | no | text | build |
The type of order, build or buildless . A build type has a 3DB build related to it, with possibly logic related to parts, pricing and others. A buildless order has no logic related to a 3DB and is only a static import of information. |
Content
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
brand | yes | text | The brand's name | |
model | yes | text | The model's name | |
parts | yes | dictionary | Specific customization (part, material, color). | |
size | yes | number | The size of the model (native value). | |
variant | no | text | null |
The variant (or sub-variant) of the specified model. |
engraving | no | text | null |
The personalization engraving properties. |
initials | no | text | null |
The personalization initials text. |
initials_extra | no | dictionary | null |
The personalization initials object, containing the initials text and engraving for each group. |
price | no | number | null |
The model's price |
product_id | no | numeric | null |
The product's unique identification (ID) assigned to a particular configuration. |
factory | no | text | null |
The name of the factory that is going to be used for the production of this order. |
transport | no | text | null |
The transport information that is going to be used for the shipping of this order (if any). |
version | no | number | latest | The build's version. |
gender | no | text | null |
Order production's model gender. |
scale | no | text | null |
The scale associated with the model in the current order. |
delivery_time | no | numeric | null |
Number of expected days that the delivery of this order will take. |
meta | no | dictionary | null |
Complementary order data. |
Report
Example Request
curl "https://ripe-core-sbx.platforme.com/api/orders/5650/report.pdf? \
key=fd90212e5ebf4135da14ca511b84811ff4fc6b8a"
> report_order_5650.pdf
The above command returns a PDF file
Example Request
curl "https://ripe-core-sbx.platforme.com/api/orders/5650/report.png? \
key=fd90212e5ebf4135da14ca511b84811ff4fc6b8a"
> report_order_5650.png
The above command returns an image with the PNG file extension
Get a production order report, regarding the given order number, in PDF or PNG file formats. This report is mainly issued to the production factory, summarizing multiple aspects of the ordered product's composition, customization and personalization. It also provides a barcode and a QR (Quick Response) code to be scanned.
HTTP Request
GET https://ripe-core-sbx.platforme.com/api/orders/<int:number>/report.pdf
HTTP Request
GET https://ripe-core-sbx.platforme.com/api/orders/<int:number>/report.png
PATH Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
number | yes | numeric | Order's production number. |
Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
key | yes | text | The order's unique secret key value used for private information access. |
Add Attachment
Example Request
curl -X POST \
"https://ripe-core-sbx.platforme.com/api/orders/4683/attachments" \
-H "Accept: application/json"\
-H "Content-Type: multipart/form-data" \
-H "X-Secret-Key: $RIPE_KEY" \
-F "meta={};type=application/json" \
-F "name=invoice" \
-F "file=@/User/user/invoice"
Example Response
{
"_id": "659825abbb11325081aafcf4",
"id": 4721,
"enabled": true,
"description": null,
"created": 1704469931,
"modified": 1704469931,
"meta": {},
"brand_t": null,
"retailer_t": null,
"vendor_t": null,
"name": "invoice",
"key": "b85dfad891594fa8f2ce3cdc7b85b02fc9d9f25c",
"kind": "s3",
"owner_": "docs@platforme.com",
"content_type": "text/plain",
"url": "https://pla1.fra1.digitaloceanspaces.com/ripe_core_sbx/6dcb8923-d4e1-4699-bbdc-3ebdd0ab8091.attachment.invoice"
}
Add an attachment file to a specific order. Authentication credentials required.
HTTP Request
POST https://ripe-core-sbx.platforme.com/api/orders/<int:number>/attachments
Header Fields
Field | Mandatory | Type | Default | Description |
---|---|---|---|---|
X-Secret-Key | yes | text | The X-Secret-Key to authenticate the request. |
Path Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
number | yes | numeric | Order's production number. |
POST Body
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
file | yes | file | The file to attach to the order. | |
name | no | text | The name of the file attachment. If not provided, it will use the name of the file. | |
meta | no | dictionary | null |
An object containing meta information about the file. |
List Attachments
Example Request
curl -X GET \
"https://ripe-core-sbx.platforme.com/api/orders/4683/attachments" \
-H "X-Secret-Key: $RIPE_KEY"
Example Response
[
{
"_id": "659825ad3e27f1c070aafc01",
"id": 4722,
"enabled": true,
"description": null,
"created": 1704469933,
"modified": 1704469933,
"meta": {},
"brand_t": null,
"retailer_t": null,
"vendor_t": null,
"name": "invoice",
"key": "97a5ae8a2065112d6bc9b2d4f6b82919bd6d0ef1",
"kind": "s3",
"owner_": "docs@platforme.com",
"content_type": "text/plain",
"url": "https://pla1.fra1.digitaloceanspaces.com/ripe_core_sbx/759dd19a-c532-4ed6-9c3d-0ce1a2c10aad.attachment.invoice"
}
]
List all attachments of a specific order. Authentication credentials required.
HTTP Request
GET https://ripe-core-sbx.platforme.com/api/orders/<int:number>/attachments
Header Fields
Field | Mandatory | Type | Default | Description |
---|---|---|---|---|
X-Secret-Key | yes | text | The X-Secret-Key to authenticate the request. |
Path Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
number | yes | numeric | Order's production number. |
Show Attachment
Example Request
curl -X GET \
"https://ripe-core-sbx.platforme.com/api/orders/4683/attachments/53" \
-H "X-Secret-Key: $RIPE_KEY"
Example Response
Return the attachment file of an order. Authentication credentials required.
HTTP Request
GET https://ripe-core-sbx.platforme.com/api/orders/<int:number>/attachments/<int:id>
Header Fields
Field | Mandatory | Type | Default | Description |
---|---|---|---|---|
X-Secret-Key | yes | text | The X-Secret-Key to authenticate the request. |
Path Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
number | yes | numeric | Order's production number. | |
id | yes | numeric | The attachments' id. |
Count Attachments
Example Request
curl -X GET \
"https://ripe-core-sbx.platforme.com/api/orders/4683/attachments/count" \
-H "X-Secret-Key: $RIPE_KEY"
Example Response
{
"count": 1
}
Return the number of attachments an order has. Authentication credentials required.
HTTP Request
GET https://ripe-core-sbx.platforme.com/api/orders/<int:number>/attachments/count
Header Fields
Field | Mandatory | Type | Default | Description |
---|---|---|---|---|
X-Secret-Key | yes | text | The X-Secret-Key to authenticate the request. |
Path Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
number | yes | numeric | Order's production number. |
Add Note
Example Request
curl -X POST \
"https://ripe-core-sbx.platforme.com/api/orders/4683/notes" \
-H "X-Secret-Key: $RIPE_KEY" \
-H "Content-Type: application/x-www-form-urlencoded" \
-d text="note"
Example Response
note
Add a note to a specific order. Authentication credentials required.
HTTP Request
POST https://ripe-core-sbx.platforme.com/api/orders/<int:number>/notes
Header Fields
Field | Mandatory | Type | Default | Description |
---|---|---|---|---|
X-Secret-Key | yes | text | The X-Secret-Key to authenticate the request. |
Path Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
number | yes | numeric | Order's production number. |
POST Body
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
text | yes | text | The note text to add to the order. |
Add Issue
Example Request
curl -X POST \
"https://ripe-core-sbx.platforme.com/api/orders/4683/issues" \
-H "X-Secret-Key: $RIPE_KEY" \
-H "Content-Type: application/x-www-form-urlencoded" \
-d issue=issue \
-d description=description \
-d severity=9 \
-d log=error
Example Response
description
Add an issue to a specific order. Authentication credentials required.
HTTP Request
POST https://ripe-core-sbx.platforme.com/api/orders/<int:number>/issues
Header Fields
Field | Mandatory | Type | Default | Description |
---|---|---|---|---|
X-Secret-Key | yes | text | The X-Secret-Key to authenticate the request. |
Path Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
number | yes | numeric | Order's production number. |
POST Body
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
issue | yes | text | The issue name to add to the order. | |
description | no | text | A detailed issue description. | |
severity | no | numeric | The severity level of this issue (unbounded). | |
log | no | text | The error log associated (e.g. the stack trace). |
Create Waybill
Example Request
curl -X POST \
"https://ripe-core-sbx.platforme.com/api/orders/4683/waybill" \
-H "X-Secret-Key: $RIPE_KEY"
Example Response
{
"result": "success"
}
Trigger the creation of a waybill for a specific order order. Authentication credentials required.
HTTP Request
POST https://ripe-core-sbx.platforme.com/api/orders/<int:number>/waybill
Header Fields
Field | Mandatory | Type | Default | Description |
---|---|---|---|---|
X-Secret-Key | yes | text | The X-Secret-Key to authenticate the request. |
Path Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
number | yes | numeric | Order's production number. |
Create Return Waybill
Example Request
curl -X POST \
"https://ripe-core-sbx.platforme.com/api/orders/4683/return_waybill" \
-H "X-Secret-Key: $RIPE_KEY"
Example Response
{
"result": "success"
}
Trigger the creation of a return waybill for a specific order. Authentication credentials required.
HTTP Request
POST https://ripe-core-sbx.platforme.com/api/orders/<int:number>/return_waybill
Header Fields
Field | Mandatory | Type | Default | Description |
---|---|---|---|---|
X-Secret-Key | yes | text | The X-Secret-Key to authenticate the request. |
Path Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
number | yes | numeric | Order's production number. |
Refresh Shipping
Example Request
curl -X POST \
"https://ripe-core-sbx.platforme.com/api/orders/4683/refresh_shipping" \
-H "X-Secret-Key: $RIPE_KEY"
Example Response
{
"result": "success"
}
Refresh the shipping information of a specific order, including the status of the shipment (if already shipped). Authentication credentials required.
HTTP Request
POST https://ripe-core-sbx.platforme.com/api/orders/<int:number>/refresh_shipping
Header Fields
Field | Mandatory | Type | Default | Description |
---|---|---|---|---|
X-Secret-Key | yes | text | The X-Secret-Key to authenticate the request. |
Path Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
number | yes | numeric | Order's production number. |
States
Example Request
curl "https://ripe-core-sbx.platforme.com/api/orders/4683/log" \
-H "X-Secret-Key: $RIPE_KEY"
curl "https://ripe-core-sbx.platforme.com/api/orders/4683/states" \
-H "X-Secret-Key: $RIPE_KEY"
Example Response
[
{
"_id": "659825ba996e33ea91aaf498",
"id": 330923,
"enabled": true,
"description": null,
"created": 1704469946,
"modified": 1704469946,
"meta": {},
"brand_t": null,
"retailer_t": null,
"vendor_t": null,
"name": "created",
"justification": "Order import",
"timestamp": 1704469946,
"email": "docs@platforme.com",
"account": {
"_id": "5c7e68794ce4e7006b5c71c8",
"id": 30,
"enabled": true,
"description": "",
"created": 1551788153,
"modified": 1704469947,
"meta": {},
"username": "docs",
"email": "docs@platforme.com",
"facebook_id": "",
"github_login": "",
"google_id": "",
"live_id": "",
"twitter_username": "",
"type": 1,
"last_login": 1704469947,
"roles": [],
"avatar_url": "https://ripe-core-sbx.platforme.com/admin/accounts/docs/avatar"
},
"chat": null,
"attachments": []
}
]
Return the logs related to each status updates of a specific order. Authentication credentials required.
HTTP Request
GET https://ripe-core-sbx.platforme.com/api/orders/<int:number>/log
GET https://ripe-core-sbx.platforme.com/api/orders/<int:number>/states
Header Fields
Field | Mandatory | Type | Default | Description |
---|---|---|---|---|
X-Secret-Key | yes | text | The X-Secret-Key to authenticate the request. |
Path Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
number | yes | numeric | Order's production number. |
State
Example Request
curl "https://ripe-core-sbx.platforme.com/api/orders/4683/states/45" \
-H "X-Secret-Key: $RIPE_KEY"
Example Response
{
"_id": "659825bcbb11325081aafd13",
"id": 330924,
"enabled": true,
"description": null,
"created": 1704469948,
"modified": 1704469948,
"meta": {},
"brand_t": null,
"retailer_t": null,
"vendor_t": null,
"name": "created",
"justification": "Order import",
"timestamp": 1704469948,
"email": "docs@platforme.com",
"account": {
"_id": "5c7e68794ce4e7006b5c71c8",
"id": 30,
"enabled": true,
"description": "",
"created": 1551788153,
"modified": 1704469949,
"meta": {},
"username": "docs",
"email": "docs@platforme.com",
"facebook_id": "",
"github_login": "",
"google_id": "",
"live_id": "",
"twitter_username": "",
"type": 1,
"last_login": 1704469949,
"roles": [],
"avatar_url": "https://ripe-core-sbx.platforme.com/admin/accounts/docs/avatar"
},
"chat": null,
"attachments": []
}
Return state information for a specific state of a specific order. Authentication credentials required.
HTTP Request
GET https://ripe-core-sbx.platforme.com/api/orders/<int:number>/states/<int:state_id>
Header Fields
Field | Mandatory | Type | Default | Description |
---|---|---|---|---|
X-Secret-Key | yes | text | The X-Secret-Key to authenticate the request. |
Path Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
number | yes | numeric | Order's production number. | |
state_id | yes | numeric | Order's state identifier. |
Add State Attachments
Example Request
curl -X POST "https://ripe-core-sbx.platforme.com/api/orders/4683/states/45/attachments" \
-H "Accept: application/json"\
-H "Content-Type: multipart/form-data" \
-H "X-Secret-Key: $RIPE_KEY" \
-F "meta={};type=application/json" \
-F "name=invoice" \
-F "file=@/User/user/invoice"
Example Response
{
"_id": "659825bf152d4ad638aaf5b9",
"id": 4725,
"enabled": true,
"description": null,
"created": 1704469951,
"modified": 1704469951,
"meta": {},
"brand_t": null,
"retailer_t": null,
"vendor_t": null,
"name": "invoice",
"key": "e464a0508774d06672f7852ffdc50d401fe5c234",
"kind": "s3",
"owner_": "docs@platforme.com",
"content_type": "text/plain",
"url": "https://pla1.fra1.digitaloceanspaces.com/ripe_core_sbx/ff110456-923c-48cb-b863-498fa641cc12.attachment.invoice"
}
Adds an attachment for a specific state of a specific order. Authentication credentials required.
HTTP Request
POST https://ripe-core-sbx.platforme.com/api/orders/<int:number>/states/<int:state_id>/attachments
Header Fields
Field | Mandatory | Type | Default | Description |
---|---|---|---|---|
X-Secret-Key | yes | text | The X-Secret-Key to authenticate the request. |
Path Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
number | yes | numeric | Order's production number. | |
state_id | yes | numeric | Order's state identifier. |
POST Body
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
file | yes | file | The file to attach to the order. | |
name | no | text | The name of the file attachment. If not provided, it will use the name of the file. | |
meta | no | dictionary | null |
An object containing meta information about the file. |
State Attachments
Example Request
curl "https://ripe-core-sbx.platforme.com/api/orders/4683/states/45/attachments" \
-H "X-Secret-Key: $RIPE_KEY"
Example Response
[
{
"_id": "659825c1bb11325081aafd19",
"id": 4726,
"enabled": true,
"description": null,
"created": 1704469953,
"modified": 1704469953,
"meta": {},
"brand_t": null,
"retailer_t": null,
"vendor_t": null,
"name": "invoice",
"key": "3825f139bde832c386807ac1301d2402438a3f8d",
"kind": "s3",
"owner_": "docs@platforme.com",
"content_type": "text/plain",
"url": "https://pla1.fra1.digitaloceanspaces.com/ripe_core_sbx/9b1a917f-dca1-408c-917b-579500831607.attachment.invoice"
}
]
Returns all attachments for a specific state of a specific order. Authentication credentials required.
HTTP Request
GET https://ripe-core-sbx.platforme.com/api/orders/<int:number>/states/<int:state_id>/attachments
Header Fields
Field | Mandatory | Type | Default | Description |
---|---|---|---|---|
X-Secret-Key | yes | text | The X-Secret-Key to authenticate the request. |
Path Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
number | yes | numeric | Order's production number. | |
state_id | yes | numeric | Order's state identifier. |
State Attachments Count
Example Request
curl "https://ripe-core-sbx.platforme.com/api/orders/4683/states/45/attachments/count" \
-H "X-Secret-Key: $RIPE_KEY"
Example Response
{
"count": 1
}
Returns the number of attachments for a specific state of a specific order. Authentication credentials required.
HTTP Request
GET https://ripe-core-sbx.platforme.com/api/orders/<int:number>/states/<int:state_id>/attachments/count
Header Fields
Field | Mandatory | Type | Default | Description |
---|---|---|---|---|
X-Secret-Key | yes | text | The X-Secret-Key to authenticate the request. |
Path Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
number | yes | numeric | Order's production number. | |
state_id | yes | numeric | Order's state identifier. |
State Attachment
Example Request
curl "https://ripe-core-sbx.platforme.com/api/orders/4683/states/45/attachments/89" \
-H "X-Secret-Key: $RIPE_KEY"
Example Response
Returns attachment file for a specific state of a specific order. Authentication credentials required.
HTTP Request
GET https://ripe-core-sbx.platforme.com/api/orders/<int:number>/states/<int:state_id>/attachments/<int:id>
Header Fields
Field | Mandatory | Type | Default | Description |
---|---|---|---|---|
X-Secret-Key | yes | text | The X-Secret-Key to authenticate the request. |
Path Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
number | yes | numeric | Order's production number. | |
state_id | yes | numeric | Order's state identifier. | |
id | yes | numeric | The attachments' id. |
Factory
Example Request
curl "https://ripe-core-sbx.platforme.com/api/orders/4683/factory" \
-H "X-Secret-Key: $RIPE_KEY"
Example Response
{
"number": 320037,
"factory": "flaj"
}
Get the factory name of a specific order, given its order number.
Authentication credentials required.
HTTP Request
GET https://ripe-core-sbx.platforme.com/api/orders/<number:id>/factory
Header Fields
Field | Mandatory | Type | Default | Description |
---|---|---|---|---|
X-Secret-Key | yes | text | The X-Secret-Key to authenticate the request. |
Path Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
number | yes | numeric | Order's production number. | |
sid | no | text | The RIPE Session ID to authenticate the request. |
Price
Example Request
curl "https://ripe-core-sbx.platforme.com/api/orders/4683/price" \
-H "X-Secret-Key: $RIPE_KEY"
Example Response
{
"value": 1574.13,
"currency": "USD"
}
Get the price value of a specific order, given its order number.
Authentication credentials required.
HTTP Request
GET https://ripe-core-sbx.platforme.com/api/orders/<number>/price
Header Fields
Field | Mandatory | Type | Default | Description |
---|---|---|---|---|
X-Secret-Key | yes | text | The X-Secret-Key to authenticate the request. |
Path Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
number | yes | numeric | Order's production number. |
GET Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
currency | no | text | USD |
The ISO 4217 code for the currency in which the current price should be converted. |
Transport
Example Request
curl "https://ripe-core-sbx.platforme.com/api/orders/4683/transport" \
-H "X-Secret-Key: $RIPE_KEY"
Example Response
{
"number": 320039,
"transport": {
"courier": "ups",
"package": "envelope",
"weight": 1.5,
"weight_units": "kilograms",
"documents": [
"invoice",
"general-certificate"
],
"shipping_details": {
"service": "express",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
}
}
}
Get the transport value of a specific order, given its order number.
Authentication credentials required.
HTTP Request
GET https://ripe-core-sbx.platforme.com/api/orders/<number>/transport
Header Fields
Field | Mandatory | Type | Default | Description |
---|---|---|---|---|
X-Secret-Key | yes | text | The X-Secret-Key to authenticate the request. |
Path Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
number | yes | numeric | Order's production number. |
Create (status)
Example Request
curl -s -X PUT "https://ripe-core-sbx.platforme.com/api/orders/4683/create" \
-H "X-Secret-Key: $RIPE_KEY"
Example Response
{
"_id": "659825cced44d3f74baaf886",
"id": 320040,
"number": 320040,
"enabled": true,
"description": "VYNER",
"created": 1704469964,
"modified": 1704469964,
"meta": {
"sku": "064d4271-e9db-4bba-92c7-566db924417f"
},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": "flaj",
"quantity": 1,
"key": "aaf31c32794a883e5a4503fc599007e2e1daa157",
"status": "created",
"status_index": 1,
"production_status": "unset",
"production": "produce",
"priority": null,
"type": "build",
"gender": "male",
"scale_s": null,
"currency": "USD",
"country": "US",
"price": 1574.13,
"prices": {
"components": {
"front": {
"rule_id": 27166,
"rule_count": 5,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [
"Nappa Leather"
],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"hardware": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"laces": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"lining": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"side": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [
"Nappa Leather"
],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"sole": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [
"Rubber"
],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"logo": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"shadow": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
}
},
"total": {
"price_final": 1574.13,
"price_taxes": 1326.67,
"vat": 0.0,
"ddp": 247.46,
"ddp_percent": 18.6528544,
"vat_rate": 0.0,
"price": 1326.67,
"currency": "USD",
"country": "US",
"hs_codes": [
6403999065
],
"hs_code_priority": 1,
"shipping": 0.0,
"notes": [
"Rubber",
"Nappa Leather"
],
"diag": {
"no_round": {
"price_final": 1574.13,
"price_taxes": 1326.67,
"price": 1326.67,
"vat": 0.0,
"ddp": 247.46
},
"patch": true,
"round_value": true,
"is_vat": false,
"is_ddp": true,
"is_european": false,
"is_rounded": false,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null
},
"cites": false
}
},
"brand": "swear",
"factory": "flaj",
"domain": null,
"sku": "teste2",
"shoe": "vyner",
"variant": null,
"shoe_query": "model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"shoe_url": "/config/customization?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"image_url": "/compose?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"minify_hash": "Mzk4NjU",
"image_hash": "Mzk4NjY",
"image_o_hash": "Mzk4Njc",
"top_hash": "Mzk4Njg",
"top_o_hash": "NDU0NTc",
"bottom_hash": "Mzk4NzA",
"bottom_o_hash": "NDU0NTg",
"back_hash": "Mzk4NzI",
"side_hash": "Mzk4NzM",
"structure": "{\"brand\": \"swear\", \"model\": \"vyner\", \"variant\": null, \"parts_m\": {\"front\": {\"material\": \"nappa\", \"color\": \"white\"}, \"hardware\": {\"material\": \"metal\", \"color\": \"silver\"}, \"laces\": {\"material\": \"nylon\", \"color\": \"white\"}, \"lining\": {\"material\": \"calf_lining\", \"color\": \"white\"}, \"side\": {\"material\": \"nappa\", \"color\": \"white\"}, \"sole\": {\"material\": \"rubber\", \"color\": \"white\"}, \"logo\": {\"material\": \"metal\", \"color\": \"silver\"}, \"shadow\": {\"material\": \"default\", \"color\": \"default\"}}, \"size\": 25, \"gender\": \"male\", \"parts\": [{\"material\": \"nappa\", \"color\": \"white\", \"name\": \"front\", \"hidden\": false, \"optional\": false}, {\"material\": \"nappa\", \"color\": \"white\", \"name\": \"side\", \"hidden\": false, \"optional\": false}, {\"material\": \"calf_lining\", \"color\": \"white\", \"name\": \"lining\", \"hidden\": false, \"optional\": false}, {\"material\": \"nylon\", \"color\": \"white\", \"name\": \"laces\", \"hidden\": false, \"optional\": false}, {\"material\": \"rubber\", \"color\": \"white\", \"name\": \"sole\", \"hidden\": false, \"optional\": false}, {\"material\": \"metal\", \"color\": \"silver\", \"name\": \"hardware\", \"hidden\": false, \"optional\": false}, {\"material\": \"metal\", \"color\": \"silver\", \"name\": \"logo\", \"hidden\": true, \"optional\": false}, {\"material\": \"default\", \"color\": \"default\", \"name\": \"shadow\", \"hidden\": true, \"optional\": false}], \"query\": \"model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default\", \"url\": \"/config/customization?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default\", \"image\": \"/compose?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default\", \"extras\": 0}",
"ff_id": null,
"ff_shoe_id": 12212972,
"ff_order_id": "957cafc6-4211-4247-9d47-6a193d6403fb",
"retail_id": "8606a823-cde9-4cbf-9908-0cb5e441673a",
"item_id": "1eed9edc-bbac-4677-92c2-223c795862ba",
"delivery_time": 7,
"shipping_info": null,
"invoicing_info": null,
"invoice": {
"invoicer": "invoice_express",
"invoice_details": {
"finalize": false,
"series": "InMSE23",
"tax_exemption": "M16"
}
},
"transport": {
"courier": "ups",
"package": "envelope",
"weight": 1.5,
"weight_units": "kilograms",
"documents": [
"invoice",
"general-certificate"
],
"shipping_details": {
"service": "express",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
}
},
"transport_ready": false,
"tracking_number": null,
"tracking_url": null,
"return_tracking_number": null,
"return_tracking_url": null,
"pickup_number": null,
"proof_of_delivery_url": null,
"report_url_e": null,
"last_updated": 1704469964,
"last_update_touches": [],
"last_state_change": 1704469964,
"tag": null,
"states_names": [
"created",
"created"
],
"notes": [],
"issues": [],
"states": [
{
"_id": "659825cced44d3f74baaf88a",
"id": 330932,
"enabled": true,
"description": null,
"created": 1704469964,
"modified": 1704469964,
"meta": {},
"brand_t": null,
"retailer_t": null,
"vendor_t": null,
"name": "created",
"justification": "Order import",
"timestamp": 1704469964,
"email": "docs@platforme.com",
"account": {
"_id": "5c7e68794ce4e7006b5c71c8",
"id": 30,
"enabled": true,
"description": "",
"created": 1551788153,
"modified": 1704469964,
"meta": {},
"username": "docs",
"email": "docs@platforme.com",
"facebook_id": "",
"github_login": "",
"google_id": "",
"live_id": "",
"twitter_username": "",
"type": 1,
"last_login": 1704469964,
"roles": [],
"avatar_url": "https://ripe-core-sbx.platforme.com/admin/accounts/docs/avatar"
},
"chat": null,
"attachments": []
},
{
"_id": "659825ccbb11325081aafd40",
"id": 330933,
"enabled": true,
"description": null,
"created": 1704469964,
"modified": 1704469964,
"meta": {},
"brand_t": null,
"retailer_t": null,
"vendor_t": null,
"name": "created",
"justification": null,
"timestamp": 1704469964,
"email": "docs@platforme.com",
"account": {
"_id": "5c7e68794ce4e7006b5c71c8",
"id": 30,
"enabled": true,
"description": "",
"created": 1551788153,
"modified": 1704469964,
"meta": {},
"username": "docs",
"email": "docs@platforme.com",
"facebook_id": "",
"github_login": "",
"google_id": "",
"live_id": "",
"twitter_username": "",
"type": 1,
"last_login": 1704469964,
"roles": [],
"avatar_url": "https://ripe-core-sbx.platforme.com/admin/accounts/docs/avatar"
},
"chat": null,
"attachments": []
}
],
"attachments": [],
"account": "docs@platforme.com",
"customer": null,
"ambassador": null,
"store": null,
"chat": null,
"number_s": "#320040",
"channel": "digital",
"delivery_d": 1705074764.0,
"scale": "it",
"size_scaled": 40.0,
"details": {
"brand": "swear",
"model": "vyner",
"variant": null,
"parts_m": {
"front": {
"material": "nappa",
"color": "white"
},
"hardware": {
"material": "metal",
"color": "silver"
},
"laces": {
"material": "nylon",
"color": "white"
},
"lining": {
"material": "calf_lining",
"color": "white"
},
"side": {
"material": "nappa",
"color": "white"
},
"sole": {
"material": "rubber",
"color": "white"
},
"logo": {
"material": "metal",
"color": "silver"
},
"shadow": {
"material": "default",
"color": "default"
}
},
"size": 25,
"gender": "male",
"parts": [
{
"material": "nappa",
"color": "white",
"name": "front",
"hidden": false,
"optional": false
},
{
"material": "nappa",
"color": "white",
"name": "side",
"hidden": false,
"optional": false
},
{
"material": "calf_lining",
"color": "white",
"name": "lining",
"hidden": false,
"optional": false
},
{
"material": "nylon",
"color": "white",
"name": "laces",
"hidden": false,
"optional": false
},
{
"material": "rubber",
"color": "white",
"name": "sole",
"hidden": false,
"optional": false
},
{
"material": "metal",
"color": "silver",
"name": "hardware",
"hidden": false,
"optional": false
},
{
"material": "metal",
"color": "silver",
"name": "logo",
"hidden": true,
"optional": false
},
{
"material": "default",
"color": "default",
"name": "shadow",
"hidden": true,
"optional": false
}
],
"query": "model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"url": "/config/customization?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"image": "/compose?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"extras": 0
}
}
Set the status of a specific order to 'created'. Returns the updated order.
Authentication credentials required.
HTTP Request
PUT https://ripe-core-sbx.platforme.com/api/orders/<number>/create
Header Fields
Field | Mandatory | Type | Default | Description |
---|---|---|---|---|
X-Secret-Key | yes | text | The X-Secret-Key to authenticate the request. |
Path Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
number | yes | numeric | Order's production number. |
Produce (status)
Example Request
curl -s -X PUT "https://ripe-core-sbx.platforme.com/api/orders/4683/produce" \
-H "X-Secret-Key: $RIPE_KEY"
Example Response
{
"_id": "659825cded44d3f74baaf890",
"id": 320041,
"number": 320041,
"enabled": true,
"description": "VYNER",
"created": 1704469965,
"modified": 1704469966,
"meta": {
"sku": "d2762556-e4ba-45f1-906a-8f35ffa6fb12"
},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": "flaj",
"quantity": 1,
"key": "fa18d4ebb74d84178a0f751537392367efc76b18",
"status": "production",
"status_index": 2,
"production_status": "unset",
"production": "produce",
"priority": null,
"type": "build",
"gender": "male",
"scale_s": null,
"currency": "USD",
"country": "US",
"price": 1574.13,
"prices": {
"components": {
"front": {
"rule_id": 27166,
"rule_count": 5,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [
"Nappa Leather"
],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"hardware": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"laces": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"lining": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"side": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [
"Nappa Leather"
],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"sole": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [
"Rubber"
],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"logo": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"shadow": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
}
},
"total": {
"price_final": 1574.13,
"price_taxes": 1326.67,
"vat": 0.0,
"ddp": 247.46,
"ddp_percent": 18.6528544,
"vat_rate": 0.0,
"price": 1326.67,
"currency": "USD",
"country": "US",
"hs_codes": [
6403999065
],
"hs_code_priority": 1,
"shipping": 0.0,
"notes": [
"Rubber",
"Nappa Leather"
],
"diag": {
"no_round": {
"price_final": 1574.13,
"price_taxes": 1326.67,
"price": 1326.67,
"vat": 0.0,
"ddp": 247.46
},
"patch": true,
"round_value": true,
"is_vat": false,
"is_ddp": true,
"is_european": false,
"is_rounded": false,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null
},
"cites": false
}
},
"brand": "swear",
"factory": "flaj",
"domain": null,
"sku": "teste2",
"shoe": "vyner",
"variant": null,
"shoe_query": "model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"shoe_url": "/config/customization?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"image_url": "/compose?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"minify_hash": "Mzk4NjU",
"image_hash": "Mzk4NjY",
"image_o_hash": "Mzk4Njc",
"top_hash": "Mzk4Njg",
"top_o_hash": "NDU0NTc",
"bottom_hash": "Mzk4NzA",
"bottom_o_hash": "NDU0NTg",
"back_hash": "Mzk4NzI",
"side_hash": "Mzk4NzM",
"structure": "{\"brand\": \"swear\", \"model\": \"vyner\", \"variant\": null, \"parts_m\": {\"front\": {\"material\": \"nappa\", \"color\": \"white\"}, \"hardware\": {\"material\": \"metal\", \"color\": \"silver\"}, \"laces\": {\"material\": \"nylon\", \"color\": \"white\"}, \"lining\": {\"material\": \"calf_lining\", \"color\": \"white\"}, \"side\": {\"material\": \"nappa\", \"color\": \"white\"}, \"sole\": {\"material\": \"rubber\", \"color\": \"white\"}, \"logo\": {\"material\": \"metal\", \"color\": \"silver\"}, \"shadow\": {\"material\": \"default\", \"color\": \"default\"}}, \"size\": 25, \"gender\": \"male\", \"parts\": [{\"material\": \"nappa\", \"color\": \"white\", \"name\": \"front\", \"hidden\": false, \"optional\": false}, {\"material\": \"nappa\", \"color\": \"white\", \"name\": \"side\", \"hidden\": false, \"optional\": false}, {\"material\": \"calf_lining\", \"color\": \"white\", \"name\": \"lining\", \"hidden\": false, \"optional\": false}, {\"material\": \"nylon\", \"color\": \"white\", \"name\": \"laces\", \"hidden\": false, \"optional\": false}, {\"material\": \"rubber\", \"color\": \"white\", \"name\": \"sole\", \"hidden\": false, \"optional\": false}, {\"material\": \"metal\", \"color\": \"silver\", \"name\": \"hardware\", \"hidden\": false, \"optional\": false}, {\"material\": \"metal\", \"color\": \"silver\", \"name\": \"logo\", \"hidden\": true, \"optional\": false}, {\"material\": \"default\", \"color\": \"default\", \"name\": \"shadow\", \"hidden\": true, \"optional\": false}], \"query\": \"model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default\", \"url\": \"/config/customization?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default\", \"image\": \"/compose?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default\", \"extras\": 0}",
"ff_id": null,
"ff_shoe_id": 12212972,
"ff_order_id": "fad0f8cf-4014-42a0-9598-3a052f5b2e99",
"retail_id": "0da01200-6630-44f6-a493-9f648dd4f175",
"item_id": "49f4b9dc-e99f-4afe-8e16-2a5de63d1bbd",
"delivery_time": 7,
"shipping_info": null,
"invoicing_info": null,
"invoice": {
"invoicer": "invoice_express",
"invoice_details": {
"finalize": false,
"series": "InMSE23",
"tax_exemption": "M16"
}
},
"transport": {
"courier": "ups",
"package": "envelope",
"weight": 1.5,
"weight_units": "kilograms",
"documents": [
"invoice",
"general-certificate"
],
"shipping_details": {
"service": "express",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
}
},
"transport_ready": false,
"tracking_number": null,
"tracking_url": null,
"return_tracking_number": null,
"return_tracking_url": null,
"pickup_number": null,
"proof_of_delivery_url": null,
"report_url_e": null,
"last_updated": 1704469966,
"last_update_touches": [],
"last_state_change": 1704469966,
"tag": null,
"states_names": [
"created",
"production"
],
"notes": [],
"issues": [],
"states": [
{
"_id": "659825cded44d3f74baaf894",
"id": 330934,
"enabled": true,
"description": null,
"created": 1704469965,
"modified": 1704469965,
"meta": {},
"brand_t": null,
"retailer_t": null,
"vendor_t": null,
"name": "created",
"justification": "Order import",
"timestamp": 1704469965,
"email": "docs@platforme.com",
"account": {
"_id": "5c7e68794ce4e7006b5c71c8",
"id": 30,
"enabled": true,
"description": "",
"created": 1551788153,
"modified": 1704469966,
"meta": {},
"username": "docs",
"email": "docs@platforme.com",
"facebook_id": "",
"github_login": "",
"google_id": "",
"live_id": "",
"twitter_username": "",
"type": 1,
"last_login": 1704469966,
"roles": [],
"avatar_url": "https://ripe-core-sbx.platforme.com/admin/accounts/docs/avatar"
},
"chat": null,
"attachments": []
},
{
"_id": "659825cebb11325081aafd46",
"id": 330935,
"enabled": true,
"description": null,
"created": 1704469966,
"modified": 1704469966,
"meta": {},
"brand_t": null,
"retailer_t": null,
"vendor_t": null,
"name": "production",
"justification": null,
"timestamp": 1704469966,
"email": "docs@platforme.com",
"account": {
"_id": "5c7e68794ce4e7006b5c71c8",
"id": 30,
"enabled": true,
"description": "",
"created": 1551788153,
"modified": 1704469966,
"meta": {},
"username": "docs",
"email": "docs@platforme.com",
"facebook_id": "",
"github_login": "",
"google_id": "",
"live_id": "",
"twitter_username": "",
"type": 1,
"last_login": 1704469966,
"roles": [],
"avatar_url": "https://ripe-core-sbx.platforme.com/admin/accounts/docs/avatar"
},
"chat": null,
"attachments": []
}
],
"attachments": [],
"account": "docs@platforme.com",
"customer": null,
"ambassador": null,
"store": null,
"chat": null,
"number_s": "#320041",
"channel": "digital",
"delivery_d": 1705074765.0,
"scale": "it",
"size_scaled": 40.0,
"details": {
"brand": "swear",
"model": "vyner",
"variant": null,
"parts_m": {
"front": {
"material": "nappa",
"color": "white"
},
"hardware": {
"material": "metal",
"color": "silver"
},
"laces": {
"material": "nylon",
"color": "white"
},
"lining": {
"material": "calf_lining",
"color": "white"
},
"side": {
"material": "nappa",
"color": "white"
},
"sole": {
"material": "rubber",
"color": "white"
},
"logo": {
"material": "metal",
"color": "silver"
},
"shadow": {
"material": "default",
"color": "default"
}
},
"size": 25,
"gender": "male",
"parts": [
{
"material": "nappa",
"color": "white",
"name": "front",
"hidden": false,
"optional": false
},
{
"material": "nappa",
"color": "white",
"name": "side",
"hidden": false,
"optional": false
},
{
"material": "calf_lining",
"color": "white",
"name": "lining",
"hidden": false,
"optional": false
},
{
"material": "nylon",
"color": "white",
"name": "laces",
"hidden": false,
"optional": false
},
{
"material": "rubber",
"color": "white",
"name": "sole",
"hidden": false,
"optional": false
},
{
"material": "metal",
"color": "silver",
"name": "hardware",
"hidden": false,
"optional": false
},
{
"material": "metal",
"color": "silver",
"name": "logo",
"hidden": true,
"optional": false
},
{
"material": "default",
"color": "default",
"name": "shadow",
"hidden": true,
"optional": false
}
],
"query": "model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"url": "/config/customization?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"image": "/compose?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"extras": 0
}
}
Set the status of a specific order to 'production'. Returns the updated order.
Authentication credentials required.
HTTP Request
PUT https://ripe-core-sbx.platforme.com/api/orders/<number>/produce
Header Fields
Field | Mandatory | Type | Default | Description |
---|---|---|---|---|
X-Secret-Key | yes | text | The X-Secret-Key to authenticate the request. |
Path Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
number | yes | numeric | Order's production number. |
Quality Assure (status)
Example Request
curl -s -X PUT "https://ripe-core-sbx.platforme.com/api/orders/4683/quality_assure" \
-H "X-Secret-Key: $RIPE_KEY"
Example Response
{"_id": "659825cfbb11325081aafd4c", "id": 320042, "number": 320042, "enabled": true, "description": "VYNER", "created": 1704469967, "modified": 1704469968, "meta": {"sku": "f34114b8-beba-4c4b-a953-2f2422d646bf"}, "brand_t": "swear", "retailer_t": null, "vendor_t": "flaj", "quantity": 1, "key": "af695bc2da0752d9530bbb71c16b92d0129c3b24", "status": "production", "status_index": 2, "production_status": "unset", "production": "produce", "priority": null, "type": "build", "gender": "male", "scale_s": null, "currency": "USD", "country": "US", "price": 1574.13, "prices": {"components": {"front": {"rule_id": 27166, "rule_count": 5, "price_taxes": 199.0, "vat": 33.17, "vat_rate": 20.0, "price": 165.83, "currency": "USD", "hs_code": 6403999065, "notes": ["Nappa Leather"], "hs_code_priority": 1, "price_original": 199.0, "vat_included": true, "ddp_included": false, "fixed_price": false, "round_price": false, "base_country": "EU", "base_currency": "EUR", "exchanged": null, "cites": false}, "hardware": {"rule_id": 27168, "rule_count": 1, "price_taxes": 199.0, "vat": 33.17, "vat_rate": 20.0, "price": 165.83, "currency": "USD", "hs_code": 6403999065, "notes": [], "hs_code_priority": 1, "price_original": 199.0, "vat_included": true, "ddp_included": false, "fixed_price": false, "round_price": false, "base_country": "EU", "base_currency": "EUR", "exchanged": null, "cites": false}, "laces": {"rule_id": 27168, "rule_count": 1, "price_taxes": 199.0, "vat": 33.17, "vat_rate": 20.0, "price": 165.83, "currency": "USD", "hs_code": 6403999065, "notes": [], "hs_code_priority": 1, "price_original": 199.0, "vat_included": true, "ddp_included": false, "fixed_price": false, "round_price": false, "base_country": "EU", "base_currency": "EUR", "exchanged": null, "cites": false}, "lining": {"rule_id": 27168, "rule_count": 1, "price_taxes": 199.0, "vat": 33.17, "vat_rate": 20.0, "price": 165.83, "currency": "USD", "hs_code": 6403999065, "notes": [], "hs_code_priority": 1, "price_original": 199.0, "vat_included": true, "ddp_included": false, "fixed_price": false, "round_price": false, "base_country": "EU", "base_currency": "EUR", "exchanged": null, "cites": false}, "side": {"rule_id": 27168, "rule_count": 1, "price_taxes": 199.0, "vat": 33.17, "vat_rate": 20.0, "price": 165.83, "currency": "USD", "hs_code": 6403999065, "notes": ["Nappa Leather"], "hs_code_priority": 1, "price_original": 199.0, "vat_included": true, "ddp_included": false, "fixed_price": false, "round_price": false, "base_country": "EU", "base_currency": "EUR", "exchanged": null, "cites": false}, "sole": {"rule_id": 27168, "rule_count": 1, "price_taxes": 199.0, "vat": 33.17, "vat_rate": 20.0, "price": 165.83, "currency": "USD", "hs_code": 6403999065, "notes": ["Rubber"], "hs_code_priority": 1, "price_original": 199.0, "vat_included": true, "ddp_included": false, "fixed_price": false, "round_price": false, "base_country": "EU", "base_currency": "EUR", "exchanged": null, "cites": false}, "logo": {"rule_id": 27168, "rule_count": 1, "price_taxes": 199.0, "vat": 33.17, "vat_rate": 20.0, "price": 165.83, "currency": "USD", "hs_code": 6403999065, "notes": [], "hs_code_priority": 1, "price_original": 199.0, "vat_included": true, "ddp_included": false, "fixed_price": false, "round_price": false, "base_country": "EU", "base_currency": "EUR", "exchanged": null, "cites": false}, "shadow": {"rule_id": 27168, "rule_count": 1, "price_taxes": 199.0, "vat": 33.17, "vat_rate": 20.0, "price": 165.83, "currency": "USD", "hs_code": 6403999065, "notes": [], "hs_code_priority": 1, "price_original": 199.0, "vat_included": true, "ddp_included": false, "fixed_price": false, "round_price": false, "base_country": "EU", "base_currency": "EUR", "exchanged": null, "cites": false}}, "total": {"price_final": 1574.13, "price_taxes": 1326.67, "vat": 0.0, "ddp": 247.46, "ddp_percent": 18.6528544, "vat_rate": 0.0, "price": 1326.67, "currency": "USD", "country": "US", "hs_codes": [6403999065], "hs_code_priority": 1, "shipping": 0.0, "notes": ["Rubber", "Nappa Leather"], "diag": {"no_round": {"price_final": 1574.13, "price_taxes": 1326.67, "price": 1326.67, "vat": 0.0, "ddp": 247.46}, "patch": true, "round_value": true, "is_vat": false, "is_ddp": true, "is_european": false, "is_rounded": false, "vat_included": true, "ddp_included": false, "fixed_price": false, "round_price": false, "base_country": "EU", "base_currency": "EUR", "exchanged": null}, "cites": false}}, "brand": "swear", "factory": "flaj", "domain": null, "sku": "teste2", "shoe": "vyner", "variant": null, "shoe_query": "model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default", "shoe_url": "/config/customization?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default", "image_url": "/compose?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default", "minify_hash": "Mzk4NjU", "image_hash": "Mzk4NjY", "image_o_hash": "Mzk4Njc", "top_hash": "Mzk4Njg", "top_o_hash": "NDU0NTc", "bottom_hash": "Mzk4NzA", "bottom_o_hash": "NDU0NTg", "back_hash": "Mzk4NzI", "side_hash": "Mzk4NzM", "structure": "{\"brand\": \"swear\", \"model\": \"vyner\", \"variant\": null, \"parts_m\": {\"front\": {\"material\": \"nappa\", \"color\": \"white\"}, \"hardware\": {\"material\": \"metal\", \"color\": \"silver\"}, \"laces\": {\"material\": \"nylon\", \"color\": \"white\"}, \"lining\": {\"material\": \"calf_lining\", \"color\": \"white\"}, \"side\": {\"material\": \"nappa\", \"color\": \"white\"}, \"sole\": {\"material\": \"rubber\", \"color\": \"white\"}, \"logo\": {\"material\": \"metal\", \"color\": \"silver\"}, \"shadow\": {\"material\": \"default\", \"color\": \"default\"}}, \"size\": 25, \"gender\": \"male\", \"parts\": [{\"material\": \"nappa\", \"color\": \"white\", \"name\": \"front\", \"hidden\": false, \"optional\": false}, {\"material\": \"nappa\", \"color\": \"white\", \"name\": \"side\", \"hidden\": false, \"optional\": false}, {\"material\": \"calf_lining\", \"color\": \"white\", \"name\": \"lining\", \"hidden\": false, \"optional\": false}, {\"material\": \"nylon\", \"color\": \"white\", \"name\": \"laces\", \"hidden\": false, \"optional\": false}, {\"material\": \"rubber\", \"color\": \"white\", \"name\": \"sole\", \"hidden\": false, \"optional\": false}, {\"material\": \"metal\", \"color\": \"silver\", \"name\": \"hardware\", \"hidden\": false, \"optional\": false}, {\"material\": \"metal\", \"color\": \"silver\", \"name\": \"logo\", \"hidden\": true, \"optional\": false}, {\"material\": \"default\", \"color\": \"default\", \"name\": \"shadow\", \"hidden\": true, \"optional\": false}], \"query\": \"model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default\", \"url\": \"/config/customization?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default\", \"image\": \"/compose?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default\", \"extras\": 0}", "ff_id": null, "ff_shoe_id": 12212972, "ff_order_id": "ff1ca938-11be-4227-8c0c-074fc742d378", "retail_id": "ff44c06c-65bd-491d-8eed-7365fa5f4801", "item_id": "88d8bb6a-d896-4daa-a230-7a1f8d2996df", "delivery_time": 7, "shipping_info": null, "invoicing_info": null, "invoice": {"invoicer": "invoice_express", "invoice_details": {"finalize": false, "series": "InMSE23", "tax_exemption": "M16"}}, "transport": {"courier": "ups", "package": "envelope", "weight": 1.5, "weight_units": "kilograms", "documents": ["invoice", "general-certificate"], "shipping_details": {"service": "express", "description": "sneakers", "shipper": {"name": "Coolstuffz Porto", "phone": "222333444", "address": {"line": "Rua de Santa Catarina 4", "city": "Porto", "postal_code": "4000542", "country_code": "PT"}}}}, "transport_ready": false, "tracking_number": null, "tracking_url": null, "return_tracking_number": null, "return_tracking_url": null, "pickup_number": null, "proof_of_delivery_url": null, "report_url_e": null, "last_updated": 1704469968, "last_update_touches": [], "last_state_change": 1704469968, "tag": null, "states_names": ["created", "production"], "notes": [], "issues": [], "states": [{"_id": "659825cfbb11325081aafd50", "id": 330936, "enabled": true, "description": null, "created": 1704469967, "modified": 1704469967, "meta": {}, "brand_t": null, "retailer_t": null, "vendor_t": null, "name": "created", "justification": "Order import", "timestamp": 1704469967, "email": "docs@platforme.com", "account": {"_id": "5c7e68794ce4e7006b5c71c8", "id": 30, "enabled": true, "description": "", "created": 1551788153, "modified": 1704469968, "meta": {}, "username": "docs", "email": "docs@platforme.com", "facebook_id": "", "github_login": "", "google_id": "", "live_id": "", "twitter_username": "", "type": 1, "last_login": 1704469968, "roles": [], "avatar_url": "https://ripe-core-sbx.platforme.com/admin/accounts/docs/avatar"}, "chat": null, "attachments": []}, {"_id": "659825d03e27f1c070aafc45", "id": 330937, "enabled": true, "description": null, "created": 1704469968, "modified": 1704469968, "meta": {}, "brand_t": null, "retailer_t": null, "vendor_t": null, "name": "production", "justification": null, "timestamp": 1704469968, "email": "docs@platforme.com", "account": {"_id": "5c7e68794ce4e7006b5c71c8", "id": 30, "enabled": true, "description": "", "created": 1551788153, "modified": 1704469968, "meta": {}, "username": "docs", "email": "docs@platforme.com", "facebook_id": "", "github_login": "", "google_id": "", "live_id": "", "twitter_username": "", "type": 1, "last_login": 1704469968, "roles": [], "avatar_url": "https://ripe-core-sbx.platforme.com/admin/accounts/docs/avatar"}, "chat": null, "attachments": []}], "attachments": [], "account": "docs@platforme.com", "customer": null, "ambassador": null, "store": null, "chat": null, "number_s": "#320042", "channel": "digital", "delivery_d": 1705074767.0, "scale": "it", "size_scaled": 40.0, "details": {"brand": "swear", "model": "vyner", "variant": null, "parts_m": {"front": {"material": "nappa", "color": "white"}, "hardware": {"material": "metal", "color": "silver"}, "laces": {"material": "nylon", "color": "white"}, "lining": {"material": "calf_lining", "color": "white"}, "side": {"material": "nappa", "color": "white"}, "sole": {"material": "rubber", "color": "white"}, "logo": {"material": "metal", "color": "silver"}, "shadow": {"material": "default", "color": "default"}}, "size": 25, "gender": "male", "parts": [{"material": "nappa", "color": "white", "name": "front", "hidden": false, "optional": false}, {"material": "nappa", "color": "white", "name": "side", "hidden": false, "optional": false}, {"material": "calf_lining", "color": "white", "name": "lining", "hidden": false, "optional": false}, {"material": "nylon", "color": "white", "name": "laces", "hidden": false, "optional": false}, {"material": "rubber", "color": "white", "name": "sole", "hidden": false, "optional": false}, {"material": "metal", "color": "silver", "name": "hardware", "hidden": false, "optional": false}, {"material": "metal", "color": "silver", "name": "logo", "hidden": true, "optional": false}, {"material": "default", "color": "default", "name": "shadow", "hidden": true, "optional": false}], "query": "model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default", "url": "/config/customization?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default", "image": "/compose?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default", "extras": 0}}{
"_id": "659825cfbb11325081aafd4c",
"id": 320042,
"number": 320042,
"enabled": true,
"description": "VYNER",
"created": 1704469967,
"modified": 1704469968,
"meta": {
"sku": "f34114b8-beba-4c4b-a953-2f2422d646bf"
},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": "flaj",
"quantity": 1,
"key": "af695bc2da0752d9530bbb71c16b92d0129c3b24",
"status": "quality_assurance",
"status_index": 2,
"production_status": "unset",
"production": "produce",
"priority": null,
"type": "build",
"gender": "male",
"scale_s": null,
"currency": "USD",
"country": "US",
"price": 1574.13,
"prices": {
"components": {
"front": {
"rule_id": 27166,
"rule_count": 5,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [
"Nappa Leather"
],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"hardware": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"laces": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"lining": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"side": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [
"Nappa Leather"
],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"sole": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [
"Rubber"
],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"logo": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"shadow": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
}
},
"total": {
"price_final": 1574.13,
"price_taxes": 1326.67,
"vat": 0.0,
"ddp": 247.46,
"ddp_percent": 18.6528544,
"vat_rate": 0.0,
"price": 1326.67,
"currency": "USD",
"country": "US",
"hs_codes": [
6403999065
],
"hs_code_priority": 1,
"shipping": 0.0,
"notes": [
"Rubber",
"Nappa Leather"
],
"diag": {
"no_round": {
"price_final": 1574.13,
"price_taxes": 1326.67,
"price": 1326.67,
"vat": 0.0,
"ddp": 247.46
},
"patch": true,
"round_value": true,
"is_vat": false,
"is_ddp": true,
"is_european": false,
"is_rounded": false,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null
},
"cites": false
}
},
"brand": "swear",
"factory": "flaj",
"domain": null,
"sku": "teste2",
"shoe": "vyner",
"variant": null,
"shoe_query": "model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"shoe_url": "/config/customization?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"image_url": "/compose?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"minify_hash": "Mzk4NjU",
"image_hash": "Mzk4NjY",
"image_o_hash": "Mzk4Njc",
"top_hash": "Mzk4Njg",
"top_o_hash": "NDU0NTc",
"bottom_hash": "Mzk4NzA",
"bottom_o_hash": "NDU0NTg",
"back_hash": "Mzk4NzI",
"side_hash": "Mzk4NzM",
"structure": "{\"brand\": \"swear\", \"model\": \"vyner\", \"variant\": null, \"parts_m\": {\"front\": {\"material\": \"nappa\", \"color\": \"white\"}, \"hardware\": {\"material\": \"metal\", \"color\": \"silver\"}, \"laces\": {\"material\": \"nylon\", \"color\": \"white\"}, \"lining\": {\"material\": \"calf_lining\", \"color\": \"white\"}, \"side\": {\"material\": \"nappa\", \"color\": \"white\"}, \"sole\": {\"material\": \"rubber\", \"color\": \"white\"}, \"logo\": {\"material\": \"metal\", \"color\": \"silver\"}, \"shadow\": {\"material\": \"default\", \"color\": \"default\"}}, \"size\": 25, \"gender\": \"male\", \"parts\": [{\"material\": \"nappa\", \"color\": \"white\", \"name\": \"front\", \"hidden\": false, \"optional\": false}, {\"material\": \"nappa\", \"color\": \"white\", \"name\": \"side\", \"hidden\": false, \"optional\": false}, {\"material\": \"calf_lining\", \"color\": \"white\", \"name\": \"lining\", \"hidden\": false, \"optional\": false}, {\"material\": \"nylon\", \"color\": \"white\", \"name\": \"laces\", \"hidden\": false, \"optional\": false}, {\"material\": \"rubber\", \"color\": \"white\", \"name\": \"sole\", \"hidden\": false, \"optional\": false}, {\"material\": \"metal\", \"color\": \"silver\", \"name\": \"hardware\", \"hidden\": false, \"optional\": false}, {\"material\": \"metal\", \"color\": \"silver\", \"name\": \"logo\", \"hidden\": true, \"optional\": false}, {\"material\": \"default\", \"color\": \"default\", \"name\": \"shadow\", \"hidden\": true, \"optional\": false}], \"query\": \"model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default\", \"url\": \"/config/customization?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default\", \"image\": \"/compose?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default\", \"extras\": 0}",
"ff_id": null,
"ff_shoe_id": 12212972,
"ff_order_id": "ff1ca938-11be-4227-8c0c-074fc742d378",
"retail_id": "ff44c06c-65bd-491d-8eed-7365fa5f4801",
"item_id": "88d8bb6a-d896-4daa-a230-7a1f8d2996df",
"delivery_time": 7,
"shipping_info": null,
"invoicing_info": null,
"invoice": {
"invoicer": "invoice_express",
"invoice_details": {
"finalize": false,
"series": "InMSE23",
"tax_exemption": "M16"
}
},
"transport": {
"courier": "ups",
"package": "envelope",
"weight": 1.5,
"weight_units": "kilograms",
"documents": [
"invoice",
"general-certificate"
],
"shipping_details": {
"service": "express",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
}
},
"transport_ready": false,
"tracking_number": null,
"tracking_url": null,
"return_tracking_number": null,
"return_tracking_url": null,
"pickup_number": null,
"proof_of_delivery_url": null,
"report_url_e": null,
"last_updated": 1704469968,
"last_update_touches": [],
"last_state_change": 1704469968,
"tag": null,
"states_names": [
"created",
"production",
"quality_assurance"
],
"notes": [],
"issues": [],
"states": [
{
"_id": "659825cfbb11325081aafd50",
"id": 330936,
"enabled": true,
"description": null,
"created": 1704469967,
"modified": 1704469967,
"meta": {},
"brand_t": null,
"retailer_t": null,
"vendor_t": null,
"name": "created",
"justification": "Order import",
"timestamp": 1704469967,
"email": "docs@platforme.com",
"account": {
"_id": "5c7e68794ce4e7006b5c71c8",
"id": 30,
"enabled": true,
"description": "",
"created": 1551788153,
"modified": 1704469968,
"meta": {},
"username": "docs",
"email": "docs@platforme.com",
"facebook_id": "",
"github_login": "",
"google_id": "",
"live_id": "",
"twitter_username": "",
"type": 1,
"last_login": 1704469968,
"roles": [],
"avatar_url": "https://ripe-core-sbx.platforme.com/admin/accounts/docs/avatar"
},
"chat": null,
"attachments": []
},
{
"_id": "659825d03e27f1c070aafc45",
"id": 330937,
"enabled": true,
"description": null,
"created": 1704469968,
"modified": 1704469968,
"meta": {},
"brand_t": null,
"retailer_t": null,
"vendor_t": null,
"name": "production",
"justification": null,
"timestamp": 1704469968,
"email": "docs@platforme.com",
"account": {
"_id": "5c7e68794ce4e7006b5c71c8",
"id": 30,
"enabled": true,
"description": "",
"created": 1551788153,
"modified": 1704469968,
"meta": {},
"username": "docs",
"email": "docs@platforme.com",
"facebook_id": "",
"github_login": "",
"google_id": "",
"live_id": "",
"twitter_username": "",
"type": 1,
"last_login": 1704469968,
"roles": [],
"avatar_url": "https://ripe-core-sbx.platforme.com/admin/accounts/docs/avatar"
},
"chat": null,
"attachments": []
},
{
"_id": "659825d0bb11325081aafd56",
"id": 330938,
"enabled": true,
"description": null,
"created": 1704469968,
"modified": 1704469968,
"meta": {},
"brand_t": null,
"retailer_t": null,
"vendor_t": null,
"name": "quality_assurance",
"justification": null,
"timestamp": 1704469968,
"email": "docs@platforme.com",
"account": {
"_id": "5c7e68794ce4e7006b5c71c8",
"id": 30,
"enabled": true,
"description": "",
"created": 1551788153,
"modified": 1704469968,
"meta": {},
"username": "docs",
"email": "docs@platforme.com",
"facebook_id": "",
"github_login": "",
"google_id": "",
"live_id": "",
"twitter_username": "",
"type": 1,
"last_login": 1704469968,
"roles": [],
"avatar_url": "https://ripe-core-sbx.platforme.com/admin/accounts/docs/avatar"
},
"chat": null,
"attachments": []
}
],
"attachments": [],
"account": "docs@platforme.com",
"customer": null,
"ambassador": null,
"store": null,
"chat": null,
"number_s": "#320042",
"channel": "digital",
"delivery_d": 1705074767.0,
"scale": "it",
"size_scaled": 40.0,
"details": {
"brand": "swear",
"model": "vyner",
"variant": null,
"parts_m": {
"front": {
"material": "nappa",
"color": "white"
},
"hardware": {
"material": "metal",
"color": "silver"
},
"laces": {
"material": "nylon",
"color": "white"
},
"lining": {
"material": "calf_lining",
"color": "white"
},
"side": {
"material": "nappa",
"color": "white"
},
"sole": {
"material": "rubber",
"color": "white"
},
"logo": {
"material": "metal",
"color": "silver"
},
"shadow": {
"material": "default",
"color": "default"
}
},
"size": 25,
"gender": "male",
"parts": [
{
"material": "nappa",
"color": "white",
"name": "front",
"hidden": false,
"optional": false
},
{
"material": "nappa",
"color": "white",
"name": "side",
"hidden": false,
"optional": false
},
{
"material": "calf_lining",
"color": "white",
"name": "lining",
"hidden": false,
"optional": false
},
{
"material": "nylon",
"color": "white",
"name": "laces",
"hidden": false,
"optional": false
},
{
"material": "rubber",
"color": "white",
"name": "sole",
"hidden": false,
"optional": false
},
{
"material": "metal",
"color": "silver",
"name": "hardware",
"hidden": false,
"optional": false
},
{
"material": "metal",
"color": "silver",
"name": "logo",
"hidden": true,
"optional": false
},
{
"material": "default",
"color": "default",
"name": "shadow",
"hidden": true,
"optional": false
}
],
"query": "model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"url": "/config/customization?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"image": "/compose?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"extras": 0
}
}
Set the status of a specific order to 'quality assurance'. Returns the updated order.
Authentication credentials required.
HTTP Request
PUT https://ripe-core-sbx.platforme.com/api/orders/<number>/quality_assure
Header Fields
Field | Mandatory | Type | Default | Description |
---|---|---|---|---|
X-Secret-Key | yes | text | The X-Secret-Key to authenticate the request. |
Path Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
number | yes | numeric | Order's production number. |
Reject (status)
Example Request
curl -s -X PUT "https://ripe-core-sbx.platforme.com/api/orders/4683/reject" \
-H "X-Secret-Key: $RIPE_KEY"
Example Response
{"_id": "659825d1bb11325081aafd5c", "id": 320043, "number": 320043, "enabled": true, "description": "VYNER", "created": 1704469969, "modified": 1704469970, "meta": {"sku": "19f4098f-406c-4fca-a87c-3692cdf7dfa1"}, "brand_t": "swear", "retailer_t": null, "vendor_t": "flaj", "quantity": 1, "key": "148e1f2d4323e6489715d4367761c4d3a341082c", "status": "quality_assurance", "status_index": 2, "production_status": "unset", "production": "produce", "priority": null, "type": "build", "gender": "male", "scale_s": null, "currency": "USD", "country": "US", "price": 1574.13, "prices": {"components": {"front": {"rule_id": 27166, "rule_count": 5, "price_taxes": 199.0, "vat": 33.17, "vat_rate": 20.0, "price": 165.83, "currency": "USD", "hs_code": 6403999065, "notes": ["Nappa Leather"], "hs_code_priority": 1, "price_original": 199.0, "vat_included": true, "ddp_included": false, "fixed_price": false, "round_price": false, "base_country": "EU", "base_currency": "EUR", "exchanged": null, "cites": false}, "hardware": {"rule_id": 27168, "rule_count": 1, "price_taxes": 199.0, "vat": 33.17, "vat_rate": 20.0, "price": 165.83, "currency": "USD", "hs_code": 6403999065, "notes": [], "hs_code_priority": 1, "price_original": 199.0, "vat_included": true, "ddp_included": false, "fixed_price": false, "round_price": false, "base_country": "EU", "base_currency": "EUR", "exchanged": null, "cites": false}, "laces": {"rule_id": 27168, "rule_count": 1, "price_taxes": 199.0, "vat": 33.17, "vat_rate": 20.0, "price": 165.83, "currency": "USD", "hs_code": 6403999065, "notes": [], "hs_code_priority": 1, "price_original": 199.0, "vat_included": true, "ddp_included": false, "fixed_price": false, "round_price": false, "base_country": "EU", "base_currency": "EUR", "exchanged": null, "cites": false}, "lining": {"rule_id": 27168, "rule_count": 1, "price_taxes": 199.0, "vat": 33.17, "vat_rate": 20.0, "price": 165.83, "currency": "USD", "hs_code": 6403999065, "notes": [], "hs_code_priority": 1, "price_original": 199.0, "vat_included": true, "ddp_included": false, "fixed_price": false, "round_price": false, "base_country": "EU", "base_currency": "EUR", "exchanged": null, "cites": false}, "side": {"rule_id": 27168, "rule_count": 1, "price_taxes": 199.0, "vat": 33.17, "vat_rate": 20.0, "price": 165.83, "currency": "USD", "hs_code": 6403999065, "notes": ["Nappa Leather"], "hs_code_priority": 1, "price_original": 199.0, "vat_included": true, "ddp_included": false, "fixed_price": false, "round_price": false, "base_country": "EU", "base_currency": "EUR", "exchanged": null, "cites": false}, "sole": {"rule_id": 27168, "rule_count": 1, "price_taxes": 199.0, "vat": 33.17, "vat_rate": 20.0, "price": 165.83, "currency": "USD", "hs_code": 6403999065, "notes": ["Rubber"], "hs_code_priority": 1, "price_original": 199.0, "vat_included": true, "ddp_included": false, "fixed_price": false, "round_price": false, "base_country": "EU", "base_currency": "EUR", "exchanged": null, "cites": false}, "logo": {"rule_id": 27168, "rule_count": 1, "price_taxes": 199.0, "vat": 33.17, "vat_rate": 20.0, "price": 165.83, "currency": "USD", "hs_code": 6403999065, "notes": [], "hs_code_priority": 1, "price_original": 199.0, "vat_included": true, "ddp_included": false, "fixed_price": false, "round_price": false, "base_country": "EU", "base_currency": "EUR", "exchanged": null, "cites": false}, "shadow": {"rule_id": 27168, "rule_count": 1, "price_taxes": 199.0, "vat": 33.17, "vat_rate": 20.0, "price": 165.83, "currency": "USD", "hs_code": 6403999065, "notes": [], "hs_code_priority": 1, "price_original": 199.0, "vat_included": true, "ddp_included": false, "fixed_price": false, "round_price": false, "base_country": "EU", "base_currency": "EUR", "exchanged": null, "cites": false}}, "total": {"price_final": 1574.13, "price_taxes": 1326.67, "vat": 0.0, "ddp": 247.46, "ddp_percent": 18.6528544, "vat_rate": 0.0, "price": 1326.67, "currency": "USD", "country": "US", "hs_codes": [6403999065], "hs_code_priority": 1, "shipping": 0.0, "notes": ["Rubber", "Nappa Leather"], "diag": {"no_round": {"price_final": 1574.13, "price_taxes": 1326.67, "price": 1326.67, "vat": 0.0, "ddp": 247.46}, "patch": true, "round_value": true, "is_vat": false, "is_ddp": true, "is_european": false, "is_rounded": false, "vat_included": true, "ddp_included": false, "fixed_price": false, "round_price": false, "base_country": "EU", "base_currency": "EUR", "exchanged": null}, "cites": false}}, "brand": "swear", "factory": "flaj", "domain": null, "sku": "teste2", "shoe": "vyner", "variant": null, "shoe_query": "model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default", "shoe_url": "/config/customization?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default", "image_url": "/compose?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default", "minify_hash": "Mzk4NjU", "image_hash": "Mzk4NjY", "image_o_hash": "Mzk4Njc", "top_hash": "Mzk4Njg", "top_o_hash": "NDU0NTc", "bottom_hash": "Mzk4NzA", "bottom_o_hash": "NDU0NTg", "back_hash": "Mzk4NzI", "side_hash": "Mzk4NzM", "structure": "{\"brand\": \"swear\", \"model\": \"vyner\", \"variant\": null, \"parts_m\": {\"front\": {\"material\": \"nappa\", \"color\": \"white\"}, \"hardware\": {\"material\": \"metal\", \"color\": \"silver\"}, \"laces\": {\"material\": \"nylon\", \"color\": \"white\"}, \"lining\": {\"material\": \"calf_lining\", \"color\": \"white\"}, \"side\": {\"material\": \"nappa\", \"color\": \"white\"}, \"sole\": {\"material\": \"rubber\", \"color\": \"white\"}, \"logo\": {\"material\": \"metal\", \"color\": \"silver\"}, \"shadow\": {\"material\": \"default\", \"color\": \"default\"}}, \"size\": 25, \"gender\": \"male\", \"parts\": [{\"material\": \"nappa\", \"color\": \"white\", \"name\": \"front\", \"hidden\": false, \"optional\": false}, {\"material\": \"nappa\", \"color\": \"white\", \"name\": \"side\", \"hidden\": false, \"optional\": false}, {\"material\": \"calf_lining\", \"color\": \"white\", \"name\": \"lining\", \"hidden\": false, \"optional\": false}, {\"material\": \"nylon\", \"color\": \"white\", \"name\": \"laces\", \"hidden\": false, \"optional\": false}, {\"material\": \"rubber\", \"color\": \"white\", \"name\": \"sole\", \"hidden\": false, \"optional\": false}, {\"material\": \"metal\", \"color\": \"silver\", \"name\": \"hardware\", \"hidden\": false, \"optional\": false}, {\"material\": \"metal\", \"color\": \"silver\", \"name\": \"logo\", \"hidden\": true, \"optional\": false}, {\"material\": \"default\", \"color\": \"default\", \"name\": \"shadow\", \"hidden\": true, \"optional\": false}], \"query\": \"model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default\", \"url\": \"/config/customization?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default\", \"image\": \"/compose?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default\", \"extras\": 0}", "ff_id": null, "ff_shoe_id": 12212972, "ff_order_id": "af94f886-9412-4945-b066-74b8a15cee96", "retail_id": "ea9c2cbe-d1bf-4408-b9d5-6b44261d411f", "item_id": "777719af-c449-4cca-9042-80cd244acadd", "delivery_time": 7, "shipping_info": null, "invoicing_info": null, "invoice": {"invoicer": "invoice_express", "invoice_details": {"finalize": false, "series": "InMSE23", "tax_exemption": "M16"}}, "transport": {"courier": "ups", "package": "envelope", "weight": 1.5, "weight_units": "kilograms", "documents": ["invoice", "general-certificate"], "shipping_details": {"service": "express", "description": "sneakers", "shipper": {"name": "Coolstuffz Porto", "phone": "222333444", "address": {"line": "Rua de Santa Catarina 4", "city": "Porto", "postal_code": "4000542", "country_code": "PT"}}}}, "transport_ready": false, "tracking_number": null, "tracking_url": null, "return_tracking_number": null, "return_tracking_url": null, "pickup_number": null, "proof_of_delivery_url": null, "report_url_e": null, "last_updated": 1704469970, "last_update_touches": [], "last_state_change": 1704469970, "tag": null, "states_names": ["created", "quality_assurance"], "notes": [], "issues": [], "states": [{"_id": "659825d1bb11325081aafd60", "id": 330939, "enabled": true, "description": null, "created": 1704469969, "modified": 1704469969, "meta": {}, "brand_t": null, "retailer_t": null, "vendor_t": null, "name": "created", "justification": "Order import", "timestamp": 1704469969, "email": "docs@platforme.com", "account": {"_id": "5c7e68794ce4e7006b5c71c8", "id": 30, "enabled": true, "description": "", "created": 1551788153, "modified": 1704469970, "meta": {}, "username": "docs", "email": "docs@platforme.com", "facebook_id": "", "github_login": "", "google_id": "", "live_id": "", "twitter_username": "", "type": 1, "last_login": 1704469970, "roles": [], "avatar_url": "https://ripe-core-sbx.platforme.com/admin/accounts/docs/avatar"}, "chat": null, "attachments": []}, {"_id": "659825d2ed44d3f74baaf89a", "id": 330940, "enabled": true, "description": null, "created": 1704469970, "modified": 1704469970, "meta": {}, "brand_t": null, "retailer_t": null, "vendor_t": null, "name": "quality_assurance", "justification": null, "timestamp": 1704469970, "email": "docs@platforme.com", "account": {"_id": "5c7e68794ce4e7006b5c71c8", "id": 30, "enabled": true, "description": "", "created": 1551788153, "modified": 1704469970, "meta": {}, "username": "docs", "email": "docs@platforme.com", "facebook_id": "", "github_login": "", "google_id": "", "live_id": "", "twitter_username": "", "type": 1, "last_login": 1704469970, "roles": [], "avatar_url": "https://ripe-core-sbx.platforme.com/admin/accounts/docs/avatar"}, "chat": null, "attachments": []}], "attachments": [], "account": "docs@platforme.com", "customer": null, "ambassador": null, "store": null, "chat": null, "number_s": "#320043", "channel": "digital", "delivery_d": 1705074769.0, "scale": "it", "size_scaled": 40.0, "details": {"brand": "swear", "model": "vyner", "variant": null, "parts_m": {"front": {"material": "nappa", "color": "white"}, "hardware": {"material": "metal", "color": "silver"}, "laces": {"material": "nylon", "color": "white"}, "lining": {"material": "calf_lining", "color": "white"}, "side": {"material": "nappa", "color": "white"}, "sole": {"material": "rubber", "color": "white"}, "logo": {"material": "metal", "color": "silver"}, "shadow": {"material": "default", "color": "default"}}, "size": 25, "gender": "male", "parts": [{"material": "nappa", "color": "white", "name": "front", "hidden": false, "optional": false}, {"material": "nappa", "color": "white", "name": "side", "hidden": false, "optional": false}, {"material": "calf_lining", "color": "white", "name": "lining", "hidden": false, "optional": false}, {"material": "nylon", "color": "white", "name": "laces", "hidden": false, "optional": false}, {"material": "rubber", "color": "white", "name": "sole", "hidden": false, "optional": false}, {"material": "metal", "color": "silver", "name": "hardware", "hidden": false, "optional": false}, {"material": "metal", "color": "silver", "name": "logo", "hidden": true, "optional": false}, {"material": "default", "color": "default", "name": "shadow", "hidden": true, "optional": false}], "query": "model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default", "url": "/config/customization?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default", "image": "/compose?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default", "extras": 0}}{
"_id": "659825d1bb11325081aafd5c",
"id": 320043,
"number": 320043,
"enabled": true,
"description": "VYNER",
"created": 1704469969,
"modified": 1704469970,
"meta": {
"sku": "19f4098f-406c-4fca-a87c-3692cdf7dfa1"
},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": "flaj",
"quantity": 1,
"key": "148e1f2d4323e6489715d4367761c4d3a341082c",
"status": "rejected",
"status_index": 2,
"production_status": "unset",
"production": "produce",
"priority": null,
"type": "build",
"gender": "male",
"scale_s": null,
"currency": "USD",
"country": "US",
"price": 1574.13,
"prices": {
"components": {
"front": {
"rule_id": 27166,
"rule_count": 5,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [
"Nappa Leather"
],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"hardware": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"laces": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"lining": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"side": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [
"Nappa Leather"
],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"sole": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [
"Rubber"
],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"logo": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"shadow": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
}
},
"total": {
"price_final": 1574.13,
"price_taxes": 1326.67,
"vat": 0.0,
"ddp": 247.46,
"ddp_percent": 18.6528544,
"vat_rate": 0.0,
"price": 1326.67,
"currency": "USD",
"country": "US",
"hs_codes": [
6403999065
],
"hs_code_priority": 1,
"shipping": 0.0,
"notes": [
"Rubber",
"Nappa Leather"
],
"diag": {
"no_round": {
"price_final": 1574.13,
"price_taxes": 1326.67,
"price": 1326.67,
"vat": 0.0,
"ddp": 247.46
},
"patch": true,
"round_value": true,
"is_vat": false,
"is_ddp": true,
"is_european": false,
"is_rounded": false,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null
},
"cites": false
}
},
"brand": "swear",
"factory": "flaj",
"domain": null,
"sku": "teste2",
"shoe": "vyner",
"variant": null,
"shoe_query": "model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"shoe_url": "/config/customization?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"image_url": "/compose?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"minify_hash": "Mzk4NjU",
"image_hash": "Mzk4NjY",
"image_o_hash": "Mzk4Njc",
"top_hash": "Mzk4Njg",
"top_o_hash": "NDU0NTc",
"bottom_hash": "Mzk4NzA",
"bottom_o_hash": "NDU0NTg",
"back_hash": "Mzk4NzI",
"side_hash": "Mzk4NzM",
"structure": "{\"brand\": \"swear\", \"model\": \"vyner\", \"variant\": null, \"parts_m\": {\"front\": {\"material\": \"nappa\", \"color\": \"white\"}, \"hardware\": {\"material\": \"metal\", \"color\": \"silver\"}, \"laces\": {\"material\": \"nylon\", \"color\": \"white\"}, \"lining\": {\"material\": \"calf_lining\", \"color\": \"white\"}, \"side\": {\"material\": \"nappa\", \"color\": \"white\"}, \"sole\": {\"material\": \"rubber\", \"color\": \"white\"}, \"logo\": {\"material\": \"metal\", \"color\": \"silver\"}, \"shadow\": {\"material\": \"default\", \"color\": \"default\"}}, \"size\": 25, \"gender\": \"male\", \"parts\": [{\"material\": \"nappa\", \"color\": \"white\", \"name\": \"front\", \"hidden\": false, \"optional\": false}, {\"material\": \"nappa\", \"color\": \"white\", \"name\": \"side\", \"hidden\": false, \"optional\": false}, {\"material\": \"calf_lining\", \"color\": \"white\", \"name\": \"lining\", \"hidden\": false, \"optional\": false}, {\"material\": \"nylon\", \"color\": \"white\", \"name\": \"laces\", \"hidden\": false, \"optional\": false}, {\"material\": \"rubber\", \"color\": \"white\", \"name\": \"sole\", \"hidden\": false, \"optional\": false}, {\"material\": \"metal\", \"color\": \"silver\", \"name\": \"hardware\", \"hidden\": false, \"optional\": false}, {\"material\": \"metal\", \"color\": \"silver\", \"name\": \"logo\", \"hidden\": true, \"optional\": false}, {\"material\": \"default\", \"color\": \"default\", \"name\": \"shadow\", \"hidden\": true, \"optional\": false}], \"query\": \"model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default\", \"url\": \"/config/customization?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default\", \"image\": \"/compose?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default\", \"extras\": 0}",
"ff_id": null,
"ff_shoe_id": 12212972,
"ff_order_id": "af94f886-9412-4945-b066-74b8a15cee96",
"retail_id": "ea9c2cbe-d1bf-4408-b9d5-6b44261d411f",
"item_id": "777719af-c449-4cca-9042-80cd244acadd",
"delivery_time": 7,
"shipping_info": null,
"invoicing_info": null,
"invoice": {
"invoicer": "invoice_express",
"invoice_details": {
"finalize": false,
"series": "InMSE23",
"tax_exemption": "M16"
}
},
"transport": {
"courier": "ups",
"package": "envelope",
"weight": 1.5,
"weight_units": "kilograms",
"documents": [
"invoice",
"general-certificate"
],
"shipping_details": {
"service": "express",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
}
},
"transport_ready": false,
"tracking_number": null,
"tracking_url": null,
"return_tracking_number": null,
"return_tracking_url": null,
"pickup_number": null,
"proof_of_delivery_url": null,
"report_url_e": null,
"last_updated": 1704469970,
"last_update_touches": [],
"last_state_change": 1704469970,
"tag": null,
"states_names": [
"created",
"quality_assurance",
"rejected"
],
"notes": [],
"issues": [],
"states": [
{
"_id": "659825d1bb11325081aafd60",
"id": 330939,
"enabled": true,
"description": null,
"created": 1704469969,
"modified": 1704469969,
"meta": {},
"brand_t": null,
"retailer_t": null,
"vendor_t": null,
"name": "created",
"justification": "Order import",
"timestamp": 1704469969,
"email": "docs@platforme.com",
"account": {
"_id": "5c7e68794ce4e7006b5c71c8",
"id": 30,
"enabled": true,
"description": "",
"created": 1551788153,
"modified": 1704469970,
"meta": {},
"username": "docs",
"email": "docs@platforme.com",
"facebook_id": "",
"github_login": "",
"google_id": "",
"live_id": "",
"twitter_username": "",
"type": 1,
"last_login": 1704469970,
"roles": [],
"avatar_url": "https://ripe-core-sbx.platforme.com/admin/accounts/docs/avatar"
},
"chat": null,
"attachments": []
},
{
"_id": "659825d2ed44d3f74baaf89a",
"id": 330940,
"enabled": true,
"description": null,
"created": 1704469970,
"modified": 1704469970,
"meta": {},
"brand_t": null,
"retailer_t": null,
"vendor_t": null,
"name": "quality_assurance",
"justification": null,
"timestamp": 1704469970,
"email": "docs@platforme.com",
"account": {
"_id": "5c7e68794ce4e7006b5c71c8",
"id": 30,
"enabled": true,
"description": "",
"created": 1551788153,
"modified": 1704469970,
"meta": {},
"username": "docs",
"email": "docs@platforme.com",
"facebook_id": "",
"github_login": "",
"google_id": "",
"live_id": "",
"twitter_username": "",
"type": 1,
"last_login": 1704469970,
"roles": [],
"avatar_url": "https://ripe-core-sbx.platforme.com/admin/accounts/docs/avatar"
},
"chat": null,
"attachments": []
},
{
"_id": "659825d23e27f1c070aafc4b",
"id": 330941,
"enabled": true,
"description": null,
"created": 1704469970,
"modified": 1704469970,
"meta": {},
"brand_t": null,
"retailer_t": null,
"vendor_t": null,
"name": "rejected",
"justification": null,
"timestamp": 1704469970,
"email": "docs@platforme.com",
"account": {
"_id": "5c7e68794ce4e7006b5c71c8",
"id": 30,
"enabled": true,
"description": "",
"created": 1551788153,
"modified": 1704469970,
"meta": {},
"username": "docs",
"email": "docs@platforme.com",
"facebook_id": "",
"github_login": "",
"google_id": "",
"live_id": "",
"twitter_username": "",
"type": 1,
"last_login": 1704469970,
"roles": [],
"avatar_url": "https://ripe-core-sbx.platforme.com/admin/accounts/docs/avatar"
},
"chat": null,
"attachments": []
}
],
"attachments": [],
"account": "docs@platforme.com",
"customer": null,
"ambassador": null,
"store": null,
"chat": null,
"number_s": "#320043",
"channel": "digital",
"delivery_d": 1705074769.0,
"scale": "it",
"size_scaled": 40.0,
"details": {
"brand": "swear",
"model": "vyner",
"variant": null,
"parts_m": {
"front": {
"material": "nappa",
"color": "white"
},
"hardware": {
"material": "metal",
"color": "silver"
},
"laces": {
"material": "nylon",
"color": "white"
},
"lining": {
"material": "calf_lining",
"color": "white"
},
"side": {
"material": "nappa",
"color": "white"
},
"sole": {
"material": "rubber",
"color": "white"
},
"logo": {
"material": "metal",
"color": "silver"
},
"shadow": {
"material": "default",
"color": "default"
}
},
"size": 25,
"gender": "male",
"parts": [
{
"material": "nappa",
"color": "white",
"name": "front",
"hidden": false,
"optional": false
},
{
"material": "nappa",
"color": "white",
"name": "side",
"hidden": false,
"optional": false
},
{
"material": "calf_lining",
"color": "white",
"name": "lining",
"hidden": false,
"optional": false
},
{
"material": "nylon",
"color": "white",
"name": "laces",
"hidden": false,
"optional": false
},
{
"material": "rubber",
"color": "white",
"name": "sole",
"hidden": false,
"optional": false
},
{
"material": "metal",
"color": "silver",
"name": "hardware",
"hidden": false,
"optional": false
},
{
"material": "metal",
"color": "silver",
"name": "logo",
"hidden": true,
"optional": false
},
{
"material": "default",
"color": "default",
"name": "shadow",
"hidden": true,
"optional": false
}
],
"query": "model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"url": "/config/customization?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"image": "/compose?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"extras": 0
}
}
Set the status of a specific order to 'rejected'. Returns the updated order.
Authentication credentials required.
HTTP Request
PUT https://ripe-core-sbx.platforme.com/api/orders/<number>/reject
Header Fields
Field | Mandatory | Type | Default | Description |
---|---|---|---|---|
X-Secret-Key | yes | text | The X-Secret-Key to authenticate the request. |
Path Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
number | yes | numeric | Order's production number. |
Ready (status)
Example Request
curl -s -X PUT "https://ripe-core-sbx.platforme.com/api/orders/4683/ready" \
-H "X-Secret-Key: $RIPE_KEY"
Example Response
{"_id": "659825d3bb11325081aafd66", "id": 320044, "number": 320044, "enabled": true, "description": "VYNER", "created": 1704469971, "modified": 1704469972, "meta": {"sku": "b2c7c9e1-2b15-49ff-b6f7-cc2f68d9f470"}, "brand_t": "swear", "retailer_t": null, "vendor_t": "flaj", "quantity": 1, "key": "276a8c5f711c2f370b5d0395576cac08b4dbaf6e", "status": "quality_assurance", "status_index": 2, "production_status": "unset", "production": "produce", "priority": null, "type": "build", "gender": "male", "scale_s": null, "currency": "USD", "country": "US", "price": 1574.13, "prices": {"components": {"front": {"rule_id": 27166, "rule_count": 5, "price_taxes": 199.0, "vat": 33.17, "vat_rate": 20.0, "price": 165.83, "currency": "USD", "hs_code": 6403999065, "notes": ["Nappa Leather"], "hs_code_priority": 1, "price_original": 199.0, "vat_included": true, "ddp_included": false, "fixed_price": false, "round_price": false, "base_country": "EU", "base_currency": "EUR", "exchanged": null, "cites": false}, "hardware": {"rule_id": 27168, "rule_count": 1, "price_taxes": 199.0, "vat": 33.17, "vat_rate": 20.0, "price": 165.83, "currency": "USD", "hs_code": 6403999065, "notes": [], "hs_code_priority": 1, "price_original": 199.0, "vat_included": true, "ddp_included": false, "fixed_price": false, "round_price": false, "base_country": "EU", "base_currency": "EUR", "exchanged": null, "cites": false}, "laces": {"rule_id": 27168, "rule_count": 1, "price_taxes": 199.0, "vat": 33.17, "vat_rate": 20.0, "price": 165.83, "currency": "USD", "hs_code": 6403999065, "notes": [], "hs_code_priority": 1, "price_original": 199.0, "vat_included": true, "ddp_included": false, "fixed_price": false, "round_price": false, "base_country": "EU", "base_currency": "EUR", "exchanged": null, "cites": false}, "lining": {"rule_id": 27168, "rule_count": 1, "price_taxes": 199.0, "vat": 33.17, "vat_rate": 20.0, "price": 165.83, "currency": "USD", "hs_code": 6403999065, "notes": [], "hs_code_priority": 1, "price_original": 199.0, "vat_included": true, "ddp_included": false, "fixed_price": false, "round_price": false, "base_country": "EU", "base_currency": "EUR", "exchanged": null, "cites": false}, "side": {"rule_id": 27168, "rule_count": 1, "price_taxes": 199.0, "vat": 33.17, "vat_rate": 20.0, "price": 165.83, "currency": "USD", "hs_code": 6403999065, "notes": ["Nappa Leather"], "hs_code_priority": 1, "price_original": 199.0, "vat_included": true, "ddp_included": false, "fixed_price": false, "round_price": false, "base_country": "EU", "base_currency": "EUR", "exchanged": null, "cites": false}, "sole": {"rule_id": 27168, "rule_count": 1, "price_taxes": 199.0, "vat": 33.17, "vat_rate": 20.0, "price": 165.83, "currency": "USD", "hs_code": 6403999065, "notes": ["Rubber"], "hs_code_priority": 1, "price_original": 199.0, "vat_included": true, "ddp_included": false, "fixed_price": false, "round_price": false, "base_country": "EU", "base_currency": "EUR", "exchanged": null, "cites": false}, "logo": {"rule_id": 27168, "rule_count": 1, "price_taxes": 199.0, "vat": 33.17, "vat_rate": 20.0, "price": 165.83, "currency": "USD", "hs_code": 6403999065, "notes": [], "hs_code_priority": 1, "price_original": 199.0, "vat_included": true, "ddp_included": false, "fixed_price": false, "round_price": false, "base_country": "EU", "base_currency": "EUR", "exchanged": null, "cites": false}, "shadow": {"rule_id": 27168, "rule_count": 1, "price_taxes": 199.0, "vat": 33.17, "vat_rate": 20.0, "price": 165.83, "currency": "USD", "hs_code": 6403999065, "notes": [], "hs_code_priority": 1, "price_original": 199.0, "vat_included": true, "ddp_included": false, "fixed_price": false, "round_price": false, "base_country": "EU", "base_currency": "EUR", "exchanged": null, "cites": false}}, "total": {"price_final": 1574.13, "price_taxes": 1326.67, "vat": 0.0, "ddp": 247.46, "ddp_percent": 18.6528544, "vat_rate": 0.0, "price": 1326.67, "currency": "USD", "country": "US", "hs_codes": [6403999065], "hs_code_priority": 1, "shipping": 0.0, "notes": ["Rubber", "Nappa Leather"], "diag": {"no_round": {"price_final": 1574.13, "price_taxes": 1326.67, "price": 1326.67, "vat": 0.0, "ddp": 247.46}, "patch": true, "round_value": true, "is_vat": false, "is_ddp": true, "is_european": false, "is_rounded": false, "vat_included": true, "ddp_included": false, "fixed_price": false, "round_price": false, "base_country": "EU", "base_currency": "EUR", "exchanged": null}, "cites": false}}, "brand": "swear", "factory": "flaj", "domain": null, "sku": "teste2", "shoe": "vyner", "variant": null, "shoe_query": "model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default", "shoe_url": "/config/customization?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default", "image_url": "/compose?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default", "minify_hash": "Mzk4NjU", "image_hash": "Mzk4NjY", "image_o_hash": "Mzk4Njc", "top_hash": "Mzk4Njg", "top_o_hash": "NDU0NTc", "bottom_hash": "Mzk4NzA", "bottom_o_hash": "NDU0NTg", "back_hash": "Mzk4NzI", "side_hash": "Mzk4NzM", "structure": "{\"brand\": \"swear\", \"model\": \"vyner\", \"variant\": null, \"parts_m\": {\"front\": {\"material\": \"nappa\", \"color\": \"white\"}, \"hardware\": {\"material\": \"metal\", \"color\": \"silver\"}, \"laces\": {\"material\": \"nylon\", \"color\": \"white\"}, \"lining\": {\"material\": \"calf_lining\", \"color\": \"white\"}, \"side\": {\"material\": \"nappa\", \"color\": \"white\"}, \"sole\": {\"material\": \"rubber\", \"color\": \"white\"}, \"logo\": {\"material\": \"metal\", \"color\": \"silver\"}, \"shadow\": {\"material\": \"default\", \"color\": \"default\"}}, \"size\": 25, \"gender\": \"male\", \"parts\": [{\"material\": \"nappa\", \"color\": \"white\", \"name\": \"front\", \"hidden\": false, \"optional\": false}, {\"material\": \"nappa\", \"color\": \"white\", \"name\": \"side\", \"hidden\": false, \"optional\": false}, {\"material\": \"calf_lining\", \"color\": \"white\", \"name\": \"lining\", \"hidden\": false, \"optional\": false}, {\"material\": \"nylon\", \"color\": \"white\", \"name\": \"laces\", \"hidden\": false, \"optional\": false}, {\"material\": \"rubber\", \"color\": \"white\", \"name\": \"sole\", \"hidden\": false, \"optional\": false}, {\"material\": \"metal\", \"color\": \"silver\", \"name\": \"hardware\", \"hidden\": false, \"optional\": false}, {\"material\": \"metal\", \"color\": \"silver\", \"name\": \"logo\", \"hidden\": true, \"optional\": false}, {\"material\": \"default\", \"color\": \"default\", \"name\": \"shadow\", \"hidden\": true, \"optional\": false}], \"query\": \"model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default\", \"url\": \"/config/customization?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default\", \"image\": \"/compose?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default\", \"extras\": 0}", "ff_id": null, "ff_shoe_id": 12212972, "ff_order_id": "ac276a3a-4b7f-4ccd-a8c6-e12c8792a7fb", "retail_id": "bfb5a043-5970-47d2-b493-af8258202e2a", "item_id": "fb56d7fa-9edf-4de7-9ecf-46b388235f9d", "delivery_time": 7, "shipping_info": null, "invoicing_info": null, "invoice": {"invoicer": "invoice_express", "invoice_details": {"finalize": false, "series": "InMSE23", "tax_exemption": "M16"}}, "transport": {"courier": "ups", "package": "envelope", "weight": 1.5, "weight_units": "kilograms", "documents": ["invoice", "general-certificate"], "shipping_details": {"service": "express", "description": "sneakers", "shipper": {"name": "Coolstuffz Porto", "phone": "222333444", "address": {"line": "Rua de Santa Catarina 4", "city": "Porto", "postal_code": "4000542", "country_code": "PT"}}}}, "transport_ready": false, "tracking_number": null, "tracking_url": null, "return_tracking_number": null, "return_tracking_url": null, "pickup_number": null, "proof_of_delivery_url": null, "report_url_e": null, "last_updated": 1704469972, "last_update_touches": [], "last_state_change": 1704469972, "tag": null, "states_names": ["created", "quality_assurance"], "notes": [], "issues": [], "states": [{"_id": "659825d3bb11325081aafd6a", "id": 330942, "enabled": true, "description": null, "created": 1704469971, "modified": 1704469971, "meta": {}, "brand_t": null, "retailer_t": null, "vendor_t": null, "name": "created", "justification": "Order import", "timestamp": 1704469971, "email": "docs@platforme.com", "account": {"_id": "5c7e68794ce4e7006b5c71c8", "id": 30, "enabled": true, "description": "", "created": 1551788153, "modified": 1704469972, "meta": {}, "username": "docs", "email": "docs@platforme.com", "facebook_id": "", "github_login": "", "google_id": "", "live_id": "", "twitter_username": "", "type": 1, "last_login": 1704469972, "roles": [], "avatar_url": "https://ripe-core-sbx.platforme.com/admin/accounts/docs/avatar"}, "chat": null, "attachments": []}, {"_id": "659825d43e27f1c070aafc51", "id": 330943, "enabled": true, "description": null, "created": 1704469972, "modified": 1704469972, "meta": {}, "brand_t": null, "retailer_t": null, "vendor_t": null, "name": "quality_assurance", "justification": null, "timestamp": 1704469972, "email": "docs@platforme.com", "account": {"_id": "5c7e68794ce4e7006b5c71c8", "id": 30, "enabled": true, "description": "", "created": 1551788153, "modified": 1704469972, "meta": {}, "username": "docs", "email": "docs@platforme.com", "facebook_id": "", "github_login": "", "google_id": "", "live_id": "", "twitter_username": "", "type": 1, "last_login": 1704469972, "roles": [], "avatar_url": "https://ripe-core-sbx.platforme.com/admin/accounts/docs/avatar"}, "chat": null, "attachments": []}], "attachments": [], "account": "docs@platforme.com", "customer": null, "ambassador": null, "store": null, "chat": null, "number_s": "#320044", "channel": "digital", "delivery_d": 1705074771.0, "scale": "it", "size_scaled": 40.0, "details": {"brand": "swear", "model": "vyner", "variant": null, "parts_m": {"front": {"material": "nappa", "color": "white"}, "hardware": {"material": "metal", "color": "silver"}, "laces": {"material": "nylon", "color": "white"}, "lining": {"material": "calf_lining", "color": "white"}, "side": {"material": "nappa", "color": "white"}, "sole": {"material": "rubber", "color": "white"}, "logo": {"material": "metal", "color": "silver"}, "shadow": {"material": "default", "color": "default"}}, "size": 25, "gender": "male", "parts": [{"material": "nappa", "color": "white", "name": "front", "hidden": false, "optional": false}, {"material": "nappa", "color": "white", "name": "side", "hidden": false, "optional": false}, {"material": "calf_lining", "color": "white", "name": "lining", "hidden": false, "optional": false}, {"material": "nylon", "color": "white", "name": "laces", "hidden": false, "optional": false}, {"material": "rubber", "color": "white", "name": "sole", "hidden": false, "optional": false}, {"material": "metal", "color": "silver", "name": "hardware", "hidden": false, "optional": false}, {"material": "metal", "color": "silver", "name": "logo", "hidden": true, "optional": false}, {"material": "default", "color": "default", "name": "shadow", "hidden": true, "optional": false}], "query": "model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default", "url": "/config/customization?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default", "image": "/compose?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default", "extras": 0}}{
"_id": "659825d3bb11325081aafd66",
"id": 320044,
"number": 320044,
"enabled": true,
"description": "VYNER",
"created": 1704469971,
"modified": 1704469972,
"meta": {
"sku": "b2c7c9e1-2b15-49ff-b6f7-cc2f68d9f470"
},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": "flaj",
"quantity": 1,
"key": "276a8c5f711c2f370b5d0395576cac08b4dbaf6e",
"status": "ready",
"status_index": 3,
"production_status": "unset",
"production": "produce",
"priority": null,
"type": "build",
"gender": "male",
"scale_s": null,
"currency": "USD",
"country": "US",
"price": 1574.13,
"prices": {
"components": {
"front": {
"rule_id": 27166,
"rule_count": 5,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [
"Nappa Leather"
],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"hardware": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"laces": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"lining": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"side": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [
"Nappa Leather"
],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"sole": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [
"Rubber"
],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"logo": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"shadow": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
}
},
"total": {
"price_final": 1574.13,
"price_taxes": 1326.67,
"vat": 0.0,
"ddp": 247.46,
"ddp_percent": 18.6528544,
"vat_rate": 0.0,
"price": 1326.67,
"currency": "USD",
"country": "US",
"hs_codes": [
6403999065
],
"hs_code_priority": 1,
"shipping": 0.0,
"notes": [
"Rubber",
"Nappa Leather"
],
"diag": {
"no_round": {
"price_final": 1574.13,
"price_taxes": 1326.67,
"price": 1326.67,
"vat": 0.0,
"ddp": 247.46
},
"patch": true,
"round_value": true,
"is_vat": false,
"is_ddp": true,
"is_european": false,
"is_rounded": false,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null
},
"cites": false
}
},
"brand": "swear",
"factory": "flaj",
"domain": null,
"sku": "teste2",
"shoe": "vyner",
"variant": null,
"shoe_query": "model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"shoe_url": "/config/customization?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"image_url": "/compose?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"minify_hash": "Mzk4NjU",
"image_hash": "Mzk4NjY",
"image_o_hash": "Mzk4Njc",
"top_hash": "Mzk4Njg",
"top_o_hash": "NDU0NTc",
"bottom_hash": "Mzk4NzA",
"bottom_o_hash": "NDU0NTg",
"back_hash": "Mzk4NzI",
"side_hash": "Mzk4NzM",
"structure": "{\"brand\": \"swear\", \"model\": \"vyner\", \"variant\": null, \"parts_m\": {\"front\": {\"material\": \"nappa\", \"color\": \"white\"}, \"hardware\": {\"material\": \"metal\", \"color\": \"silver\"}, \"laces\": {\"material\": \"nylon\", \"color\": \"white\"}, \"lining\": {\"material\": \"calf_lining\", \"color\": \"white\"}, \"side\": {\"material\": \"nappa\", \"color\": \"white\"}, \"sole\": {\"material\": \"rubber\", \"color\": \"white\"}, \"logo\": {\"material\": \"metal\", \"color\": \"silver\"}, \"shadow\": {\"material\": \"default\", \"color\": \"default\"}}, \"size\": 25, \"gender\": \"male\", \"parts\": [{\"material\": \"nappa\", \"color\": \"white\", \"name\": \"front\", \"hidden\": false, \"optional\": false}, {\"material\": \"nappa\", \"color\": \"white\", \"name\": \"side\", \"hidden\": false, \"optional\": false}, {\"material\": \"calf_lining\", \"color\": \"white\", \"name\": \"lining\", \"hidden\": false, \"optional\": false}, {\"material\": \"nylon\", \"color\": \"white\", \"name\": \"laces\", \"hidden\": false, \"optional\": false}, {\"material\": \"rubber\", \"color\": \"white\", \"name\": \"sole\", \"hidden\": false, \"optional\": false}, {\"material\": \"metal\", \"color\": \"silver\", \"name\": \"hardware\", \"hidden\": false, \"optional\": false}, {\"material\": \"metal\", \"color\": \"silver\", \"name\": \"logo\", \"hidden\": true, \"optional\": false}, {\"material\": \"default\", \"color\": \"default\", \"name\": \"shadow\", \"hidden\": true, \"optional\": false}], \"query\": \"model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default\", \"url\": \"/config/customization?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default\", \"image\": \"/compose?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default\", \"extras\": 0}",
"ff_id": null,
"ff_shoe_id": 12212972,
"ff_order_id": "ac276a3a-4b7f-4ccd-a8c6-e12c8792a7fb",
"retail_id": "bfb5a043-5970-47d2-b493-af8258202e2a",
"item_id": "fb56d7fa-9edf-4de7-9ecf-46b388235f9d",
"delivery_time": 7,
"shipping_info": null,
"invoicing_info": null,
"invoice": {
"invoicer": "invoice_express",
"invoice_details": {
"finalize": false,
"series": "InMSE23",
"tax_exemption": "M16"
}
},
"transport": {
"courier": "ups",
"package": "envelope",
"weight": 1.5,
"weight_units": "kilograms",
"documents": [
"invoice",
"general-certificate"
],
"shipping_details": {
"service": "express",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
}
},
"transport_ready": false,
"tracking_number": null,
"tracking_url": null,
"return_tracking_number": null,
"return_tracking_url": null,
"pickup_number": null,
"proof_of_delivery_url": null,
"report_url_e": null,
"last_updated": 1704469972,
"last_update_touches": [],
"last_state_change": 1704469972,
"tag": null,
"states_names": [
"created",
"quality_assurance",
"ready"
],
"notes": [],
"issues": [],
"states": [
{
"_id": "659825d3bb11325081aafd6a",
"id": 330942,
"enabled": true,
"description": null,
"created": 1704469971,
"modified": 1704469971,
"meta": {},
"brand_t": null,
"retailer_t": null,
"vendor_t": null,
"name": "created",
"justification": "Order import",
"timestamp": 1704469971,
"email": "docs@platforme.com",
"account": {
"_id": "5c7e68794ce4e7006b5c71c8",
"id": 30,
"enabled": true,
"description": "",
"created": 1551788153,
"modified": 1704469972,
"meta": {},
"username": "docs",
"email": "docs@platforme.com",
"facebook_id": "",
"github_login": "",
"google_id": "",
"live_id": "",
"twitter_username": "",
"type": 1,
"last_login": 1704469972,
"roles": [],
"avatar_url": "https://ripe-core-sbx.platforme.com/admin/accounts/docs/avatar"
},
"chat": null,
"attachments": []
},
{
"_id": "659825d43e27f1c070aafc51",
"id": 330943,
"enabled": true,
"description": null,
"created": 1704469972,
"modified": 1704469972,
"meta": {},
"brand_t": null,
"retailer_t": null,
"vendor_t": null,
"name": "quality_assurance",
"justification": null,
"timestamp": 1704469972,
"email": "docs@platforme.com",
"account": {
"_id": "5c7e68794ce4e7006b5c71c8",
"id": 30,
"enabled": true,
"description": "",
"created": 1551788153,
"modified": 1704469972,
"meta": {},
"username": "docs",
"email": "docs@platforme.com",
"facebook_id": "",
"github_login": "",
"google_id": "",
"live_id": "",
"twitter_username": "",
"type": 1,
"last_login": 1704469972,
"roles": [],
"avatar_url": "https://ripe-core-sbx.platforme.com/admin/accounts/docs/avatar"
},
"chat": null,
"attachments": []
},
{
"_id": "659825d43e27f1c070aafc57",
"id": 330944,
"enabled": true,
"description": null,
"created": 1704469972,
"modified": 1704469972,
"meta": {},
"brand_t": null,
"retailer_t": null,
"vendor_t": null,
"name": "ready",
"justification": null,
"timestamp": 1704469972,
"email": "docs@platforme.com",
"account": {
"_id": "5c7e68794ce4e7006b5c71c8",
"id": 30,
"enabled": true,
"description": "",
"created": 1551788153,
"modified": 1704469972,
"meta": {},
"username": "docs",
"email": "docs@platforme.com",
"facebook_id": "",
"github_login": "",
"google_id": "",
"live_id": "",
"twitter_username": "",
"type": 1,
"last_login": 1704469972,
"roles": [],
"avatar_url": "https://ripe-core-sbx.platforme.com/admin/accounts/docs/avatar"
},
"chat": null,
"attachments": []
}
],
"attachments": [],
"account": "docs@platforme.com",
"customer": null,
"ambassador": null,
"store": null,
"chat": null,
"number_s": "#320044",
"channel": "digital",
"delivery_d": 1705074771.0,
"scale": "it",
"size_scaled": 40.0,
"details": {
"brand": "swear",
"model": "vyner",
"variant": null,
"parts_m": {
"front": {
"material": "nappa",
"color": "white"
},
"hardware": {
"material": "metal",
"color": "silver"
},
"laces": {
"material": "nylon",
"color": "white"
},
"lining": {
"material": "calf_lining",
"color": "white"
},
"side": {
"material": "nappa",
"color": "white"
},
"sole": {
"material": "rubber",
"color": "white"
},
"logo": {
"material": "metal",
"color": "silver"
},
"shadow": {
"material": "default",
"color": "default"
}
},
"size": 25,
"gender": "male",
"parts": [
{
"material": "nappa",
"color": "white",
"name": "front",
"hidden": false,
"optional": false
},
{
"material": "nappa",
"color": "white",
"name": "side",
"hidden": false,
"optional": false
},
{
"material": "calf_lining",
"color": "white",
"name": "lining",
"hidden": false,
"optional": false
},
{
"material": "nylon",
"color": "white",
"name": "laces",
"hidden": false,
"optional": false
},
{
"material": "rubber",
"color": "white",
"name": "sole",
"hidden": false,
"optional": false
},
{
"material": "metal",
"color": "silver",
"name": "hardware",
"hidden": false,
"optional": false
},
{
"material": "metal",
"color": "silver",
"name": "logo",
"hidden": true,
"optional": false
},
{
"material": "default",
"color": "default",
"name": "shadow",
"hidden": true,
"optional": false
}
],
"query": "model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"url": "/config/customization?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"image": "/compose?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"extras": 0
}
}
Set the status of a specific order to 'ready'. Returns the updated order.
Authentication credentials required.
HTTP Request
PUT https://ripe-core-sbx.platforme.com/api/orders/<number>/ready
Header Fields
Field | Mandatory | Type | Default | Description |
---|---|---|---|---|
X-Secret-Key | yes | text | The X-Secret-Key to authenticate the request. |
Path Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
number | yes | numeric | Order's production number. |
Send (status)
Example Request
curl -s -X PUT "https://ripe-core-sbx.platforme.com/api/orders/4683/send" \
-H "X-Secret-Key: $RIPE_KEY"
Example Response
{"_id": "659825d5ed44d3f74baaf8a0", "id": 320045, "number": 320045, "enabled": true, "description": "VYNER", "created": 1704469973, "modified": 1704469974, "meta": {"sku": "81caa831-5fba-4db3-8ed1-1016d9525ead"}, "brand_t": "swear", "retailer_t": null, "vendor_t": "flaj", "quantity": 1, "key": "4a795636237b220af9f43d854282577841367b95", "status": "ready", "status_index": 3, "production_status": "unset", "production": "produce", "priority": null, "type": "build", "gender": "male", "scale_s": null, "currency": "USD", "country": "US", "price": 1574.13, "prices": {"components": {"front": {"rule_id": 27166, "rule_count": 5, "price_taxes": 199.0, "vat": 33.17, "vat_rate": 20.0, "price": 165.83, "currency": "USD", "hs_code": 6403999065, "notes": ["Nappa Leather"], "hs_code_priority": 1, "price_original": 199.0, "vat_included": true, "ddp_included": false, "fixed_price": false, "round_price": false, "base_country": "EU", "base_currency": "EUR", "exchanged": null, "cites": false}, "hardware": {"rule_id": 27168, "rule_count": 1, "price_taxes": 199.0, "vat": 33.17, "vat_rate": 20.0, "price": 165.83, "currency": "USD", "hs_code": 6403999065, "notes": [], "hs_code_priority": 1, "price_original": 199.0, "vat_included": true, "ddp_included": false, "fixed_price": false, "round_price": false, "base_country": "EU", "base_currency": "EUR", "exchanged": null, "cites": false}, "laces": {"rule_id": 27168, "rule_count": 1, "price_taxes": 199.0, "vat": 33.17, "vat_rate": 20.0, "price": 165.83, "currency": "USD", "hs_code": 6403999065, "notes": [], "hs_code_priority": 1, "price_original": 199.0, "vat_included": true, "ddp_included": false, "fixed_price": false, "round_price": false, "base_country": "EU", "base_currency": "EUR", "exchanged": null, "cites": false}, "lining": {"rule_id": 27168, "rule_count": 1, "price_taxes": 199.0, "vat": 33.17, "vat_rate": 20.0, "price": 165.83, "currency": "USD", "hs_code": 6403999065, "notes": [], "hs_code_priority": 1, "price_original": 199.0, "vat_included": true, "ddp_included": false, "fixed_price": false, "round_price": false, "base_country": "EU", "base_currency": "EUR", "exchanged": null, "cites": false}, "side": {"rule_id": 27168, "rule_count": 1, "price_taxes": 199.0, "vat": 33.17, "vat_rate": 20.0, "price": 165.83, "currency": "USD", "hs_code": 6403999065, "notes": ["Nappa Leather"], "hs_code_priority": 1, "price_original": 199.0, "vat_included": true, "ddp_included": false, "fixed_price": false, "round_price": false, "base_country": "EU", "base_currency": "EUR", "exchanged": null, "cites": false}, "sole": {"rule_id": 27168, "rule_count": 1, "price_taxes": 199.0, "vat": 33.17, "vat_rate": 20.0, "price": 165.83, "currency": "USD", "hs_code": 6403999065, "notes": ["Rubber"], "hs_code_priority": 1, "price_original": 199.0, "vat_included": true, "ddp_included": false, "fixed_price": false, "round_price": false, "base_country": "EU", "base_currency": "EUR", "exchanged": null, "cites": false}, "logo": {"rule_id": 27168, "rule_count": 1, "price_taxes": 199.0, "vat": 33.17, "vat_rate": 20.0, "price": 165.83, "currency": "USD", "hs_code": 6403999065, "notes": [], "hs_code_priority": 1, "price_original": 199.0, "vat_included": true, "ddp_included": false, "fixed_price": false, "round_price": false, "base_country": "EU", "base_currency": "EUR", "exchanged": null, "cites": false}, "shadow": {"rule_id": 27168, "rule_count": 1, "price_taxes": 199.0, "vat": 33.17, "vat_rate": 20.0, "price": 165.83, "currency": "USD", "hs_code": 6403999065, "notes": [], "hs_code_priority": 1, "price_original": 199.0, "vat_included": true, "ddp_included": false, "fixed_price": false, "round_price": false, "base_country": "EU", "base_currency": "EUR", "exchanged": null, "cites": false}}, "total": {"price_final": 1574.13, "price_taxes": 1326.67, "vat": 0.0, "ddp": 247.46, "ddp_percent": 18.6528544, "vat_rate": 0.0, "price": 1326.67, "currency": "USD", "country": "US", "hs_codes": [6403999065], "hs_code_priority": 1, "shipping": 0.0, "notes": ["Rubber", "Nappa Leather"], "diag": {"no_round": {"price_final": 1574.13, "price_taxes": 1326.67, "price": 1326.67, "vat": 0.0, "ddp": 247.46}, "patch": true, "round_value": true, "is_vat": false, "is_ddp": true, "is_european": false, "is_rounded": false, "vat_included": true, "ddp_included": false, "fixed_price": false, "round_price": false, "base_country": "EU", "base_currency": "EUR", "exchanged": null}, "cites": false}}, "brand": "swear", "factory": "flaj", "domain": null, "sku": "teste2", "shoe": "vyner", "variant": null, "shoe_query": "model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default", "shoe_url": "/config/customization?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default", "image_url": "/compose?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default", "minify_hash": "Mzk4NjU", "image_hash": "Mzk4NjY", "image_o_hash": "Mzk4Njc", "top_hash": "Mzk4Njg", "top_o_hash": "NDU0NTc", "bottom_hash": "Mzk4NzA", "bottom_o_hash": "NDU0NTg", "back_hash": "Mzk4NzI", "side_hash": "Mzk4NzM", "structure": "{\"brand\": \"swear\", \"model\": \"vyner\", \"variant\": null, \"parts_m\": {\"front\": {\"material\": \"nappa\", \"color\": \"white\"}, \"hardware\": {\"material\": \"metal\", \"color\": \"silver\"}, \"laces\": {\"material\": \"nylon\", \"color\": \"white\"}, \"lining\": {\"material\": \"calf_lining\", \"color\": \"white\"}, \"side\": {\"material\": \"nappa\", \"color\": \"white\"}, \"sole\": {\"material\": \"rubber\", \"color\": \"white\"}, \"logo\": {\"material\": \"metal\", \"color\": \"silver\"}, \"shadow\": {\"material\": \"default\", \"color\": \"default\"}}, \"size\": 25, \"gender\": \"male\", \"parts\": [{\"material\": \"nappa\", \"color\": \"white\", \"name\": \"front\", \"hidden\": false, \"optional\": false}, {\"material\": \"nappa\", \"color\": \"white\", \"name\": \"side\", \"hidden\": false, \"optional\": false}, {\"material\": \"calf_lining\", \"color\": \"white\", \"name\": \"lining\", \"hidden\": false, \"optional\": false}, {\"material\": \"nylon\", \"color\": \"white\", \"name\": \"laces\", \"hidden\": false, \"optional\": false}, {\"material\": \"rubber\", \"color\": \"white\", \"name\": \"sole\", \"hidden\": false, \"optional\": false}, {\"material\": \"metal\", \"color\": \"silver\", \"name\": \"hardware\", \"hidden\": false, \"optional\": false}, {\"material\": \"metal\", \"color\": \"silver\", \"name\": \"logo\", \"hidden\": true, \"optional\": false}, {\"material\": \"default\", \"color\": \"default\", \"name\": \"shadow\", \"hidden\": true, \"optional\": false}], \"query\": \"model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default\", \"url\": \"/config/customization?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default\", \"image\": \"/compose?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default\", \"extras\": 0}", "ff_id": null, "ff_shoe_id": 12212972, "ff_order_id": "d1665b2e-04e7-4843-a253-4395bb6e652c", "retail_id": "e5555c90-9d57-438a-96dc-2be6c8e2cf71", "item_id": "ef8ef547-b2be-4071-aa2b-df95002ed225", "delivery_time": 7, "shipping_info": null, "invoicing_info": null, "invoice": {"invoicer": "invoice_express", "invoice_details": {"finalize": false, "series": "InMSE23", "tax_exemption": "M16"}}, "transport": {"courier": "ups", "package": "envelope", "weight": 1.5, "weight_units": "kilograms", "documents": ["invoice", "general-certificate"], "shipping_details": {"service": "express", "description": "sneakers", "shipper": {"name": "Coolstuffz Porto", "phone": "222333444", "address": {"line": "Rua de Santa Catarina 4", "city": "Porto", "postal_code": "4000542", "country_code": "PT"}}}}, "transport_ready": false, "tracking_number": null, "tracking_url": null, "return_tracking_number": null, "return_tracking_url": null, "pickup_number": null, "proof_of_delivery_url": null, "report_url_e": null, "last_updated": 1704469974, "last_update_touches": [], "last_state_change": 1704469974, "tag": null, "states_names": ["created", "ready"], "notes": [], "issues": [], "states": [{"_id": "659825d5ed44d3f74baaf8a4", "id": 330945, "enabled": true, "description": null, "created": 1704469973, "modified": 1704469973, "meta": {}, "brand_t": null, "retailer_t": null, "vendor_t": null, "name": "created", "justification": "Order import", "timestamp": 1704469973, "email": "docs@platforme.com", "account": {"_id": "5c7e68794ce4e7006b5c71c8", "id": 30, "enabled": true, "description": "", "created": 1551788153, "modified": 1704469974, "meta": {}, "username": "docs", "email": "docs@platforme.com", "facebook_id": "", "github_login": "", "google_id": "", "live_id": "", "twitter_username": "", "type": 1, "last_login": 1704469974, "roles": [], "avatar_url": "https://ripe-core-sbx.platforme.com/admin/accounts/docs/avatar"}, "chat": null, "attachments": []}, {"_id": "659825d63e27f1c070aafc5d", "id": 330946, "enabled": true, "description": null, "created": 1704469974, "modified": 1704469974, "meta": {}, "brand_t": null, "retailer_t": null, "vendor_t": null, "name": "ready", "justification": null, "timestamp": 1704469974, "email": "docs@platforme.com", "account": {"_id": "5c7e68794ce4e7006b5c71c8", "id": 30, "enabled": true, "description": "", "created": 1551788153, "modified": 1704469974, "meta": {}, "username": "docs", "email": "docs@platforme.com", "facebook_id": "", "github_login": "", "google_id": "", "live_id": "", "twitter_username": "", "type": 1, "last_login": 1704469974, "roles": [], "avatar_url": "https://ripe-core-sbx.platforme.com/admin/accounts/docs/avatar"}, "chat": null, "attachments": []}], "attachments": [], "account": "docs@platforme.com", "customer": null, "ambassador": null, "store": null, "chat": null, "number_s": "#320045", "channel": "digital", "delivery_d": 1705074773.0, "scale": "it", "size_scaled": 40.0, "details": {"brand": "swear", "model": "vyner", "variant": null, "parts_m": {"front": {"material": "nappa", "color": "white"}, "hardware": {"material": "metal", "color": "silver"}, "laces": {"material": "nylon", "color": "white"}, "lining": {"material": "calf_lining", "color": "white"}, "side": {"material": "nappa", "color": "white"}, "sole": {"material": "rubber", "color": "white"}, "logo": {"material": "metal", "color": "silver"}, "shadow": {"material": "default", "color": "default"}}, "size": 25, "gender": "male", "parts": [{"material": "nappa", "color": "white", "name": "front", "hidden": false, "optional": false}, {"material": "nappa", "color": "white", "name": "side", "hidden": false, "optional": false}, {"material": "calf_lining", "color": "white", "name": "lining", "hidden": false, "optional": false}, {"material": "nylon", "color": "white", "name": "laces", "hidden": false, "optional": false}, {"material": "rubber", "color": "white", "name": "sole", "hidden": false, "optional": false}, {"material": "metal", "color": "silver", "name": "hardware", "hidden": false, "optional": false}, {"material": "metal", "color": "silver", "name": "logo", "hidden": true, "optional": false}, {"material": "default", "color": "default", "name": "shadow", "hidden": true, "optional": false}], "query": "model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default", "url": "/config/customization?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default", "image": "/compose?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default", "extras": 0}}{
"_id": "659825d5ed44d3f74baaf8a0",
"id": 320045,
"number": 320045,
"enabled": true,
"description": "VYNER",
"created": 1704469973,
"modified": 1704469975,
"meta": {
"sku": "81caa831-5fba-4db3-8ed1-1016d9525ead"
},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": "flaj",
"quantity": 1,
"key": "4a795636237b220af9f43d854282577841367b95",
"status": "sent",
"status_index": 4,
"production_status": "unset",
"production": "produce",
"priority": null,
"type": "build",
"gender": "male",
"scale_s": null,
"currency": "USD",
"country": "US",
"price": 1574.13,
"prices": {
"components": {
"front": {
"rule_id": 27166,
"rule_count": 5,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [
"Nappa Leather"
],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"hardware": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"laces": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"lining": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"side": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [
"Nappa Leather"
],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"sole": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [
"Rubber"
],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"logo": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"shadow": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
}
},
"total": {
"price_final": 1574.13,
"price_taxes": 1326.67,
"vat": 0.0,
"ddp": 247.46,
"ddp_percent": 18.6528544,
"vat_rate": 0.0,
"price": 1326.67,
"currency": "USD",
"country": "US",
"hs_codes": [
6403999065
],
"hs_code_priority": 1,
"shipping": 0.0,
"notes": [
"Rubber",
"Nappa Leather"
],
"diag": {
"no_round": {
"price_final": 1574.13,
"price_taxes": 1326.67,
"price": 1326.67,
"vat": 0.0,
"ddp": 247.46
},
"patch": true,
"round_value": true,
"is_vat": false,
"is_ddp": true,
"is_european": false,
"is_rounded": false,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null
},
"cites": false
}
},
"brand": "swear",
"factory": "flaj",
"domain": null,
"sku": "teste2",
"shoe": "vyner",
"variant": null,
"shoe_query": "model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"shoe_url": "/config/customization?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"image_url": "/compose?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"minify_hash": "Mzk4NjU",
"image_hash": "Mzk4NjY",
"image_o_hash": "Mzk4Njc",
"top_hash": "Mzk4Njg",
"top_o_hash": "NDU0NTc",
"bottom_hash": "Mzk4NzA",
"bottom_o_hash": "NDU0NTg",
"back_hash": "Mzk4NzI",
"side_hash": "Mzk4NzM",
"structure": "{\"brand\": \"swear\", \"model\": \"vyner\", \"variant\": null, \"parts_m\": {\"front\": {\"material\": \"nappa\", \"color\": \"white\"}, \"hardware\": {\"material\": \"metal\", \"color\": \"silver\"}, \"laces\": {\"material\": \"nylon\", \"color\": \"white\"}, \"lining\": {\"material\": \"calf_lining\", \"color\": \"white\"}, \"side\": {\"material\": \"nappa\", \"color\": \"white\"}, \"sole\": {\"material\": \"rubber\", \"color\": \"white\"}, \"logo\": {\"material\": \"metal\", \"color\": \"silver\"}, \"shadow\": {\"material\": \"default\", \"color\": \"default\"}}, \"size\": 25, \"gender\": \"male\", \"parts\": [{\"material\": \"nappa\", \"color\": \"white\", \"name\": \"front\", \"hidden\": false, \"optional\": false}, {\"material\": \"nappa\", \"color\": \"white\", \"name\": \"side\", \"hidden\": false, \"optional\": false}, {\"material\": \"calf_lining\", \"color\": \"white\", \"name\": \"lining\", \"hidden\": false, \"optional\": false}, {\"material\": \"nylon\", \"color\": \"white\", \"name\": \"laces\", \"hidden\": false, \"optional\": false}, {\"material\": \"rubber\", \"color\": \"white\", \"name\": \"sole\", \"hidden\": false, \"optional\": false}, {\"material\": \"metal\", \"color\": \"silver\", \"name\": \"hardware\", \"hidden\": false, \"optional\": false}, {\"material\": \"metal\", \"color\": \"silver\", \"name\": \"logo\", \"hidden\": true, \"optional\": false}, {\"material\": \"default\", \"color\": \"default\", \"name\": \"shadow\", \"hidden\": true, \"optional\": false}], \"query\": \"model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default\", \"url\": \"/config/customization?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default\", \"image\": \"/compose?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default\", \"extras\": 0}",
"ff_id": null,
"ff_shoe_id": 12212972,
"ff_order_id": "d1665b2e-04e7-4843-a253-4395bb6e652c",
"retail_id": "e5555c90-9d57-438a-96dc-2be6c8e2cf71",
"item_id": "ef8ef547-b2be-4071-aa2b-df95002ed225",
"delivery_time": 7,
"shipping_info": null,
"invoicing_info": null,
"invoice": {
"invoicer": "invoice_express",
"invoice_details": {
"finalize": false,
"series": "InMSE23",
"tax_exemption": "M16"
}
},
"transport": {
"courier": "ups",
"package": "envelope",
"weight": 1.5,
"weight_units": "kilograms",
"documents": [
"invoice",
"general-certificate"
],
"shipping_details": {
"service": "express",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
}
},
"transport_ready": false,
"tracking_number": null,
"tracking_url": null,
"return_tracking_number": null,
"return_tracking_url": null,
"pickup_number": null,
"proof_of_delivery_url": null,
"report_url_e": null,
"last_updated": 1704469975,
"last_update_touches": [],
"last_state_change": 1704469975,
"tag": null,
"states_names": [
"created",
"ready",
"sent"
],
"notes": [],
"issues": [],
"states": [
{
"_id": "659825d5ed44d3f74baaf8a4",
"id": 330945,
"enabled": true,
"description": null,
"created": 1704469973,
"modified": 1704469973,
"meta": {},
"brand_t": null,
"retailer_t": null,
"vendor_t": null,
"name": "created",
"justification": "Order import",
"timestamp": 1704469973,
"email": "docs@platforme.com",
"account": {
"_id": "5c7e68794ce4e7006b5c71c8",
"id": 30,
"enabled": true,
"description": "",
"created": 1551788153,
"modified": 1704469975,
"meta": {},
"username": "docs",
"email": "docs@platforme.com",
"facebook_id": "",
"github_login": "",
"google_id": "",
"live_id": "",
"twitter_username": "",
"type": 1,
"last_login": 1704469975,
"roles": [],
"avatar_url": "https://ripe-core-sbx.platforme.com/admin/accounts/docs/avatar"
},
"chat": null,
"attachments": []
},
{
"_id": "659825d63e27f1c070aafc5d",
"id": 330946,
"enabled": true,
"description": null,
"created": 1704469974,
"modified": 1704469974,
"meta": {},
"brand_t": null,
"retailer_t": null,
"vendor_t": null,
"name": "ready",
"justification": null,
"timestamp": 1704469974,
"email": "docs@platforme.com",
"account": {
"_id": "5c7e68794ce4e7006b5c71c8",
"id": 30,
"enabled": true,
"description": "",
"created": 1551788153,
"modified": 1704469975,
"meta": {},
"username": "docs",
"email": "docs@platforme.com",
"facebook_id": "",
"github_login": "",
"google_id": "",
"live_id": "",
"twitter_username": "",
"type": 1,
"last_login": 1704469975,
"roles": [],
"avatar_url": "https://ripe-core-sbx.platforme.com/admin/accounts/docs/avatar"
},
"chat": null,
"attachments": []
},
{
"_id": "659825d73e27f1c070aafc63",
"id": 330947,
"enabled": true,
"description": null,
"created": 1704469975,
"modified": 1704469975,
"meta": {},
"brand_t": null,
"retailer_t": null,
"vendor_t": null,
"name": "sent",
"justification": null,
"timestamp": 1704469975,
"email": "docs@platforme.com",
"account": {
"_id": "5c7e68794ce4e7006b5c71c8",
"id": 30,
"enabled": true,
"description": "",
"created": 1551788153,
"modified": 1704469975,
"meta": {},
"username": "docs",
"email": "docs@platforme.com",
"facebook_id": "",
"github_login": "",
"google_id": "",
"live_id": "",
"twitter_username": "",
"type": 1,
"last_login": 1704469975,
"roles": [],
"avatar_url": "https://ripe-core-sbx.platforme.com/admin/accounts/docs/avatar"
},
"chat": null,
"attachments": []
}
],
"attachments": [],
"account": "docs@platforme.com",
"customer": null,
"ambassador": null,
"store": null,
"chat": null,
"number_s": "#320045",
"channel": "digital",
"delivery_d": 1705074773.0,
"scale": "it",
"size_scaled": 40.0,
"details": {
"brand": "swear",
"model": "vyner",
"variant": null,
"parts_m": {
"front": {
"material": "nappa",
"color": "white"
},
"hardware": {
"material": "metal",
"color": "silver"
},
"laces": {
"material": "nylon",
"color": "white"
},
"lining": {
"material": "calf_lining",
"color": "white"
},
"side": {
"material": "nappa",
"color": "white"
},
"sole": {
"material": "rubber",
"color": "white"
},
"logo": {
"material": "metal",
"color": "silver"
},
"shadow": {
"material": "default",
"color": "default"
}
},
"size": 25,
"gender": "male",
"parts": [
{
"material": "nappa",
"color": "white",
"name": "front",
"hidden": false,
"optional": false
},
{
"material": "nappa",
"color": "white",
"name": "side",
"hidden": false,
"optional": false
},
{
"material": "calf_lining",
"color": "white",
"name": "lining",
"hidden": false,
"optional": false
},
{
"material": "nylon",
"color": "white",
"name": "laces",
"hidden": false,
"optional": false
},
{
"material": "rubber",
"color": "white",
"name": "sole",
"hidden": false,
"optional": false
},
{
"material": "metal",
"color": "silver",
"name": "hardware",
"hidden": false,
"optional": false
},
{
"material": "metal",
"color": "silver",
"name": "logo",
"hidden": true,
"optional": false
},
{
"material": "default",
"color": "default",
"name": "shadow",
"hidden": true,
"optional": false
}
],
"query": "model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"url": "/config/customization?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"image": "/compose?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"extras": 0
}
}
Set the status of a specific order to 'sent'. Returns the updated order.
Authentication credentials required.
HTTP Request
PUT https://ripe-core-sbx.platforme.com/api/orders/<number>/send
Header Fields
Field | Mandatory | Type | Default | Description |
---|---|---|---|---|
X-Secret-Key | yes | text | The X-Secret-Key to authenticate the request. |
Path Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
number | yes | numeric | Order's production number. |
Block (status)
Example Request
curl -s -X PUT "https://ripe-core-sbx.platforme.com/api/orders/4683/block" \
-H "X-Secret-Key: $RIPE_KEY"
Example Response
{"_id": "659825d83e27f1c070aafc69", "id": 320046, "number": 320046, "enabled": true, "description": "VYNER", "created": 1704469975, "modified": 1704469976, "meta": {"sku": "a529b365-52ae-402d-9978-fa68fd6ccfcb"}, "brand_t": "swear", "retailer_t": null, "vendor_t": "flaj", "quantity": 1, "key": "b6835065f49d2cf79e6ea375a0a854a815b28117", "status": "sent", "status_index": 4, "production_status": "unset", "production": "produce", "priority": null, "type": "build", "gender": "male", "scale_s": null, "currency": "USD", "country": "US", "price": 1574.13, "prices": {"components": {"front": {"rule_id": 27166, "rule_count": 5, "price_taxes": 199.0, "vat": 33.17, "vat_rate": 20.0, "price": 165.83, "currency": "USD", "hs_code": 6403999065, "notes": ["Nappa Leather"], "hs_code_priority": 1, "price_original": 199.0, "vat_included": true, "ddp_included": false, "fixed_price": false, "round_price": false, "base_country": "EU", "base_currency": "EUR", "exchanged": null, "cites": false}, "hardware": {"rule_id": 27168, "rule_count": 1, "price_taxes": 199.0, "vat": 33.17, "vat_rate": 20.0, "price": 165.83, "currency": "USD", "hs_code": 6403999065, "notes": [], "hs_code_priority": 1, "price_original": 199.0, "vat_included": true, "ddp_included": false, "fixed_price": false, "round_price": false, "base_country": "EU", "base_currency": "EUR", "exchanged": null, "cites": false}, "laces": {"rule_id": 27168, "rule_count": 1, "price_taxes": 199.0, "vat": 33.17, "vat_rate": 20.0, "price": 165.83, "currency": "USD", "hs_code": 6403999065, "notes": [], "hs_code_priority": 1, "price_original": 199.0, "vat_included": true, "ddp_included": false, "fixed_price": false, "round_price": false, "base_country": "EU", "base_currency": "EUR", "exchanged": null, "cites": false}, "lining": {"rule_id": 27168, "rule_count": 1, "price_taxes": 199.0, "vat": 33.17, "vat_rate": 20.0, "price": 165.83, "currency": "USD", "hs_code": 6403999065, "notes": [], "hs_code_priority": 1, "price_original": 199.0, "vat_included": true, "ddp_included": false, "fixed_price": false, "round_price": false, "base_country": "EU", "base_currency": "EUR", "exchanged": null, "cites": false}, "side": {"rule_id": 27168, "rule_count": 1, "price_taxes": 199.0, "vat": 33.17, "vat_rate": 20.0, "price": 165.83, "currency": "USD", "hs_code": 6403999065, "notes": ["Nappa Leather"], "hs_code_priority": 1, "price_original": 199.0, "vat_included": true, "ddp_included": false, "fixed_price": false, "round_price": false, "base_country": "EU", "base_currency": "EUR", "exchanged": null, "cites": false}, "sole": {"rule_id": 27168, "rule_count": 1, "price_taxes": 199.0, "vat": 33.17, "vat_rate": 20.0, "price": 165.83, "currency": "USD", "hs_code": 6403999065, "notes": ["Rubber"], "hs_code_priority": 1, "price_original": 199.0, "vat_included": true, "ddp_included": false, "fixed_price": false, "round_price": false, "base_country": "EU", "base_currency": "EUR", "exchanged": null, "cites": false}, "logo": {"rule_id": 27168, "rule_count": 1, "price_taxes": 199.0, "vat": 33.17, "vat_rate": 20.0, "price": 165.83, "currency": "USD", "hs_code": 6403999065, "notes": [], "hs_code_priority": 1, "price_original": 199.0, "vat_included": true, "ddp_included": false, "fixed_price": false, "round_price": false, "base_country": "EU", "base_currency": "EUR", "exchanged": null, "cites": false}, "shadow": {"rule_id": 27168, "rule_count": 1, "price_taxes": 199.0, "vat": 33.17, "vat_rate": 20.0, "price": 165.83, "currency": "USD", "hs_code": 6403999065, "notes": [], "hs_code_priority": 1, "price_original": 199.0, "vat_included": true, "ddp_included": false, "fixed_price": false, "round_price": false, "base_country": "EU", "base_currency": "EUR", "exchanged": null, "cites": false}}, "total": {"price_final": 1574.13, "price_taxes": 1326.67, "vat": 0.0, "ddp": 247.46, "ddp_percent": 18.6528544, "vat_rate": 0.0, "price": 1326.67, "currency": "USD", "country": "US", "hs_codes": [6403999065], "hs_code_priority": 1, "shipping": 0.0, "notes": ["Rubber", "Nappa Leather"], "diag": {"no_round": {"price_final": 1574.13, "price_taxes": 1326.67, "price": 1326.67, "vat": 0.0, "ddp": 247.46}, "patch": true, "round_value": true, "is_vat": false, "is_ddp": true, "is_european": false, "is_rounded": false, "vat_included": true, "ddp_included": false, "fixed_price": false, "round_price": false, "base_country": "EU", "base_currency": "EUR", "exchanged": null}, "cites": false}}, "brand": "swear", "factory": "flaj", "domain": null, "sku": "teste2", "shoe": "vyner", "variant": null, "shoe_query": "model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default", "shoe_url": "/config/customization?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default", "image_url": "/compose?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default", "minify_hash": "Mzk4NjU", "image_hash": "Mzk4NjY", "image_o_hash": "Mzk4Njc", "top_hash": "Mzk4Njg", "top_o_hash": "NDU0NTc", "bottom_hash": "Mzk4NzA", "bottom_o_hash": "NDU0NTg", "back_hash": "Mzk4NzI", "side_hash": "Mzk4NzM", "structure": "{\"brand\": \"swear\", \"model\": \"vyner\", \"variant\": null, \"parts_m\": {\"front\": {\"material\": \"nappa\", \"color\": \"white\"}, \"hardware\": {\"material\": \"metal\", \"color\": \"silver\"}, \"laces\": {\"material\": \"nylon\", \"color\": \"white\"}, \"lining\": {\"material\": \"calf_lining\", \"color\": \"white\"}, \"side\": {\"material\": \"nappa\", \"color\": \"white\"}, \"sole\": {\"material\": \"rubber\", \"color\": \"white\"}, \"logo\": {\"material\": \"metal\", \"color\": \"silver\"}, \"shadow\": {\"material\": \"default\", \"color\": \"default\"}}, \"size\": 25, \"gender\": \"male\", \"parts\": [{\"material\": \"nappa\", \"color\": \"white\", \"name\": \"front\", \"hidden\": false, \"optional\": false}, {\"material\": \"nappa\", \"color\": \"white\", \"name\": \"side\", \"hidden\": false, \"optional\": false}, {\"material\": \"calf_lining\", \"color\": \"white\", \"name\": \"lining\", \"hidden\": false, \"optional\": false}, {\"material\": \"nylon\", \"color\": \"white\", \"name\": \"laces\", \"hidden\": false, \"optional\": false}, {\"material\": \"rubber\", \"color\": \"white\", \"name\": \"sole\", \"hidden\": false, \"optional\": false}, {\"material\": \"metal\", \"color\": \"silver\", \"name\": \"hardware\", \"hidden\": false, \"optional\": false}, {\"material\": \"metal\", \"color\": \"silver\", \"name\": \"logo\", \"hidden\": true, \"optional\": false}, {\"material\": \"default\", \"color\": \"default\", \"name\": \"shadow\", \"hidden\": true, \"optional\": false}], \"query\": \"model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default\", \"url\": \"/config/customization?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default\", \"image\": \"/compose?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default\", \"extras\": 0}", "ff_id": null, "ff_shoe_id": 12212972, "ff_order_id": "d478666a-a35a-4d4e-90af-8b852a1f8e23", "retail_id": "804203c5-8c8d-4aa3-aed8-83e9dbea8f53", "item_id": "6ccfa283-1627-47d4-8d53-080914ba6286", "delivery_time": 7, "shipping_info": null, "invoicing_info": null, "invoice": {"invoicer": "invoice_express", "invoice_details": {"finalize": false, "series": "InMSE23", "tax_exemption": "M16"}}, "transport": {"courier": "ups", "package": "envelope", "weight": 1.5, "weight_units": "kilograms", "documents": ["invoice", "general-certificate"], "shipping_details": {"service": "express", "description": "sneakers", "shipper": {"name": "Coolstuffz Porto", "phone": "222333444", "address": {"line": "Rua de Santa Catarina 4", "city": "Porto", "postal_code": "4000542", "country_code": "PT"}}}}, "transport_ready": false, "tracking_number": null, "tracking_url": null, "return_tracking_number": null, "return_tracking_url": null, "pickup_number": null, "proof_of_delivery_url": null, "report_url_e": null, "last_updated": 1704469976, "last_update_touches": [], "last_state_change": 1704469976, "tag": null, "states_names": ["created", "sent"], "notes": [], "issues": [], "states": [{"_id": "659825d83e27f1c070aafc6d", "id": 330948, "enabled": true, "description": null, "created": 1704469976, "modified": 1704469976, "meta": {}, "brand_t": null, "retailer_t": null, "vendor_t": null, "name": "created", "justification": "Order import", "timestamp": 1704469976, "email": "docs@platforme.com", "account": {"_id": "5c7e68794ce4e7006b5c71c8", "id": 30, "enabled": true, "description": "", "created": 1551788153, "modified": 1704469976, "meta": {}, "username": "docs", "email": "docs@platforme.com", "facebook_id": "", "github_login": "", "google_id": "", "live_id": "", "twitter_username": "", "type": 1, "last_login": 1704469976, "roles": [], "avatar_url": "https://ripe-core-sbx.platforme.com/admin/accounts/docs/avatar"}, "chat": null, "attachments": []}, {"_id": "659825d83e27f1c070aafc73", "id": 330949, "enabled": true, "description": null, "created": 1704469976, "modified": 1704469976, "meta": {}, "brand_t": null, "retailer_t": null, "vendor_t": null, "name": "sent", "justification": null, "timestamp": 1704469976, "email": "docs@platforme.com", "account": {"_id": "5c7e68794ce4e7006b5c71c8", "id": 30, "enabled": true, "description": "", "created": 1551788153, "modified": 1704469976, "meta": {}, "username": "docs", "email": "docs@platforme.com", "facebook_id": "", "github_login": "", "google_id": "", "live_id": "", "twitter_username": "", "type": 1, "last_login": 1704469976, "roles": [], "avatar_url": "https://ripe-core-sbx.platforme.com/admin/accounts/docs/avatar"}, "chat": null, "attachments": []}], "attachments": [], "account": "docs@platforme.com", "customer": null, "ambassador": null, "store": null, "chat": null, "number_s": "#320046", "channel": "digital", "delivery_d": 1705074775.0, "scale": "it", "size_scaled": 40.0, "details": {"brand": "swear", "model": "vyner", "variant": null, "parts_m": {"front": {"material": "nappa", "color": "white"}, "hardware": {"material": "metal", "color": "silver"}, "laces": {"material": "nylon", "color": "white"}, "lining": {"material": "calf_lining", "color": "white"}, "side": {"material": "nappa", "color": "white"}, "sole": {"material": "rubber", "color": "white"}, "logo": {"material": "metal", "color": "silver"}, "shadow": {"material": "default", "color": "default"}}, "size": 25, "gender": "male", "parts": [{"material": "nappa", "color": "white", "name": "front", "hidden": false, "optional": false}, {"material": "nappa", "color": "white", "name": "side", "hidden": false, "optional": false}, {"material": "calf_lining", "color": "white", "name": "lining", "hidden": false, "optional": false}, {"material": "nylon", "color": "white", "name": "laces", "hidden": false, "optional": false}, {"material": "rubber", "color": "white", "name": "sole", "hidden": false, "optional": false}, {"material": "metal", "color": "silver", "name": "hardware", "hidden": false, "optional": false}, {"material": "metal", "color": "silver", "name": "logo", "hidden": true, "optional": false}, {"material": "default", "color": "default", "name": "shadow", "hidden": true, "optional": false}], "query": "model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default", "url": "/config/customization?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default", "image": "/compose?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default", "extras": 0}}{
"_id": "659825d83e27f1c070aafc69",
"id": 320046,
"number": 320046,
"enabled": true,
"description": "VYNER",
"created": 1704469975,
"modified": 1704469977,
"meta": {
"sku": "a529b365-52ae-402d-9978-fa68fd6ccfcb"
},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": "flaj",
"quantity": 1,
"key": "b6835065f49d2cf79e6ea375a0a854a815b28117",
"status": "blocked",
"status_index": 4,
"production_status": "unset",
"production": "produce",
"priority": null,
"type": "build",
"gender": "male",
"scale_s": null,
"currency": "USD",
"country": "US",
"price": 1574.13,
"prices": {
"components": {
"front": {
"rule_id": 27166,
"rule_count": 5,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [
"Nappa Leather"
],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"hardware": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"laces": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"lining": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"side": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [
"Nappa Leather"
],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"sole": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [
"Rubber"
],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"logo": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"shadow": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
}
},
"total": {
"price_final": 1574.13,
"price_taxes": 1326.67,
"vat": 0.0,
"ddp": 247.46,
"ddp_percent": 18.6528544,
"vat_rate": 0.0,
"price": 1326.67,
"currency": "USD",
"country": "US",
"hs_codes": [
6403999065
],
"hs_code_priority": 1,
"shipping": 0.0,
"notes": [
"Rubber",
"Nappa Leather"
],
"diag": {
"no_round": {
"price_final": 1574.13,
"price_taxes": 1326.67,
"price": 1326.67,
"vat": 0.0,
"ddp": 247.46
},
"patch": true,
"round_value": true,
"is_vat": false,
"is_ddp": true,
"is_european": false,
"is_rounded": false,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null
},
"cites": false
}
},
"brand": "swear",
"factory": "flaj",
"domain": null,
"sku": "teste2",
"shoe": "vyner",
"variant": null,
"shoe_query": "model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"shoe_url": "/config/customization?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"image_url": "/compose?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"minify_hash": "Mzk4NjU",
"image_hash": "Mzk4NjY",
"image_o_hash": "Mzk4Njc",
"top_hash": "Mzk4Njg",
"top_o_hash": "NDU0NTc",
"bottom_hash": "Mzk4NzA",
"bottom_o_hash": "NDU0NTg",
"back_hash": "Mzk4NzI",
"side_hash": "Mzk4NzM",
"structure": "{\"brand\": \"swear\", \"model\": \"vyner\", \"variant\": null, \"parts_m\": {\"front\": {\"material\": \"nappa\", \"color\": \"white\"}, \"hardware\": {\"material\": \"metal\", \"color\": \"silver\"}, \"laces\": {\"material\": \"nylon\", \"color\": \"white\"}, \"lining\": {\"material\": \"calf_lining\", \"color\": \"white\"}, \"side\": {\"material\": \"nappa\", \"color\": \"white\"}, \"sole\": {\"material\": \"rubber\", \"color\": \"white\"}, \"logo\": {\"material\": \"metal\", \"color\": \"silver\"}, \"shadow\": {\"material\": \"default\", \"color\": \"default\"}}, \"size\": 25, \"gender\": \"male\", \"parts\": [{\"material\": \"nappa\", \"color\": \"white\", \"name\": \"front\", \"hidden\": false, \"optional\": false}, {\"material\": \"nappa\", \"color\": \"white\", \"name\": \"side\", \"hidden\": false, \"optional\": false}, {\"material\": \"calf_lining\", \"color\": \"white\", \"name\": \"lining\", \"hidden\": false, \"optional\": false}, {\"material\": \"nylon\", \"color\": \"white\", \"name\": \"laces\", \"hidden\": false, \"optional\": false}, {\"material\": \"rubber\", \"color\": \"white\", \"name\": \"sole\", \"hidden\": false, \"optional\": false}, {\"material\": \"metal\", \"color\": \"silver\", \"name\": \"hardware\", \"hidden\": false, \"optional\": false}, {\"material\": \"metal\", \"color\": \"silver\", \"name\": \"logo\", \"hidden\": true, \"optional\": false}, {\"material\": \"default\", \"color\": \"default\", \"name\": \"shadow\", \"hidden\": true, \"optional\": false}], \"query\": \"model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default\", \"url\": \"/config/customization?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default\", \"image\": \"/compose?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default\", \"extras\": 0}",
"ff_id": null,
"ff_shoe_id": 12212972,
"ff_order_id": "d478666a-a35a-4d4e-90af-8b852a1f8e23",
"retail_id": "804203c5-8c8d-4aa3-aed8-83e9dbea8f53",
"item_id": "6ccfa283-1627-47d4-8d53-080914ba6286",
"delivery_time": 7,
"shipping_info": null,
"invoicing_info": null,
"invoice": {
"invoicer": "invoice_express",
"invoice_details": {
"finalize": false,
"series": "InMSE23",
"tax_exemption": "M16"
}
},
"transport": {
"courier": "ups",
"package": "envelope",
"weight": 1.5,
"weight_units": "kilograms",
"documents": [
"invoice",
"general-certificate"
],
"shipping_details": {
"service": "express",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
}
},
"transport_ready": false,
"tracking_number": null,
"tracking_url": null,
"return_tracking_number": null,
"return_tracking_url": null,
"pickup_number": null,
"proof_of_delivery_url": null,
"report_url_e": null,
"last_updated": 1704469977,
"last_update_touches": [],
"last_state_change": 1704469977,
"tag": null,
"states_names": [
"created",
"sent",
"blocked"
],
"notes": [],
"issues": [],
"states": [
{
"_id": "659825d83e27f1c070aafc6d",
"id": 330948,
"enabled": true,
"description": null,
"created": 1704469976,
"modified": 1704469976,
"meta": {},
"brand_t": null,
"retailer_t": null,
"vendor_t": null,
"name": "created",
"justification": "Order import",
"timestamp": 1704469976,
"email": "docs@platforme.com",
"account": {
"_id": "5c7e68794ce4e7006b5c71c8",
"id": 30,
"enabled": true,
"description": "",
"created": 1551788153,
"modified": 1704469977,
"meta": {},
"username": "docs",
"email": "docs@platforme.com",
"facebook_id": "",
"github_login": "",
"google_id": "",
"live_id": "",
"twitter_username": "",
"type": 1,
"last_login": 1704469977,
"roles": [],
"avatar_url": "https://ripe-core-sbx.platforme.com/admin/accounts/docs/avatar"
},
"chat": null,
"attachments": []
},
{
"_id": "659825d83e27f1c070aafc73",
"id": 330949,
"enabled": true,
"description": null,
"created": 1704469976,
"modified": 1704469976,
"meta": {},
"brand_t": null,
"retailer_t": null,
"vendor_t": null,
"name": "sent",
"justification": null,
"timestamp": 1704469976,
"email": "docs@platforme.com",
"account": {
"_id": "5c7e68794ce4e7006b5c71c8",
"id": 30,
"enabled": true,
"description": "",
"created": 1551788153,
"modified": 1704469977,
"meta": {},
"username": "docs",
"email": "docs@platforme.com",
"facebook_id": "",
"github_login": "",
"google_id": "",
"live_id": "",
"twitter_username": "",
"type": 1,
"last_login": 1704469977,
"roles": [],
"avatar_url": "https://ripe-core-sbx.platforme.com/admin/accounts/docs/avatar"
},
"chat": null,
"attachments": []
},
{
"_id": "659825d93e27f1c070aafc79",
"id": 330950,
"enabled": true,
"description": null,
"created": 1704469977,
"modified": 1704469977,
"meta": {},
"brand_t": null,
"retailer_t": null,
"vendor_t": null,
"name": "blocked",
"justification": null,
"timestamp": 1704469977,
"email": "docs@platforme.com",
"account": {
"_id": "5c7e68794ce4e7006b5c71c8",
"id": 30,
"enabled": true,
"description": "",
"created": 1551788153,
"modified": 1704469977,
"meta": {},
"username": "docs",
"email": "docs@platforme.com",
"facebook_id": "",
"github_login": "",
"google_id": "",
"live_id": "",
"twitter_username": "",
"type": 1,
"last_login": 1704469977,
"roles": [],
"avatar_url": "https://ripe-core-sbx.platforme.com/admin/accounts/docs/avatar"
},
"chat": null,
"attachments": []
}
],
"attachments": [],
"account": "docs@platforme.com",
"customer": null,
"ambassador": null,
"store": null,
"chat": null,
"number_s": "#320046",
"channel": "digital",
"delivery_d": 1705074775.0,
"scale": "it",
"size_scaled": 40.0,
"details": {
"brand": "swear",
"model": "vyner",
"variant": null,
"parts_m": {
"front": {
"material": "nappa",
"color": "white"
},
"hardware": {
"material": "metal",
"color": "silver"
},
"laces": {
"material": "nylon",
"color": "white"
},
"lining": {
"material": "calf_lining",
"color": "white"
},
"side": {
"material": "nappa",
"color": "white"
},
"sole": {
"material": "rubber",
"color": "white"
},
"logo": {
"material": "metal",
"color": "silver"
},
"shadow": {
"material": "default",
"color": "default"
}
},
"size": 25,
"gender": "male",
"parts": [
{
"material": "nappa",
"color": "white",
"name": "front",
"hidden": false,
"optional": false
},
{
"material": "nappa",
"color": "white",
"name": "side",
"hidden": false,
"optional": false
},
{
"material": "calf_lining",
"color": "white",
"name": "lining",
"hidden": false,
"optional": false
},
{
"material": "nylon",
"color": "white",
"name": "laces",
"hidden": false,
"optional": false
},
{
"material": "rubber",
"color": "white",
"name": "sole",
"hidden": false,
"optional": false
},
{
"material": "metal",
"color": "silver",
"name": "hardware",
"hidden": false,
"optional": false
},
{
"material": "metal",
"color": "silver",
"name": "logo",
"hidden": true,
"optional": false
},
{
"material": "default",
"color": "default",
"name": "shadow",
"hidden": true,
"optional": false
}
],
"query": "model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"url": "/config/customization?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"image": "/compose?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"extras": 0
}
}
Set the status of a specific order to 'blocked'. Returns the updated order.
Authentication credentials required.
HTTP Request
PUT https://ripe-core-sbx.platforme.com/api/orders/<number>/block
Header Fields
Field | Mandatory | Type | Default | Description |
---|---|---|---|---|
X-Secret-Key | yes | text | The X-Secret-Key to authenticate the request. |
Path Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
number | yes | numeric | Order's production number. |
Receive (status)
Example Request
curl -s -X PUT "https://ripe-core-sbx.platforme.com/api/orders/4683/receive" \
-H "X-Secret-Key: $RIPE_KEY"
Example Response
{"_id": "659825dabb11325081aafd70", "id": 320047, "number": 320047, "enabled": true, "description": "VYNER", "created": 1704469977, "modified": 1704469978, "meta": {"sku": "c68598bb-4735-46ae-aed4-d9842920a7b4"}, "brand_t": "swear", "retailer_t": null, "vendor_t": "flaj", "quantity": 1, "key": "6ebd15e05ae803a8f031d21d12c46950b82e16e6", "status": "sent", "status_index": 4, "production_status": "unset", "production": "produce", "priority": null, "type": "build", "gender": "male", "scale_s": null, "currency": "USD", "country": "US", "price": 1574.13, "prices": {"components": {"front": {"rule_id": 27166, "rule_count": 5, "price_taxes": 199.0, "vat": 33.17, "vat_rate": 20.0, "price": 165.83, "currency": "USD", "hs_code": 6403999065, "notes": ["Nappa Leather"], "hs_code_priority": 1, "price_original": 199.0, "vat_included": true, "ddp_included": false, "fixed_price": false, "round_price": false, "base_country": "EU", "base_currency": "EUR", "exchanged": null, "cites": false}, "hardware": {"rule_id": 27168, "rule_count": 1, "price_taxes": 199.0, "vat": 33.17, "vat_rate": 20.0, "price": 165.83, "currency": "USD", "hs_code": 6403999065, "notes": [], "hs_code_priority": 1, "price_original": 199.0, "vat_included": true, "ddp_included": false, "fixed_price": false, "round_price": false, "base_country": "EU", "base_currency": "EUR", "exchanged": null, "cites": false}, "laces": {"rule_id": 27168, "rule_count": 1, "price_taxes": 199.0, "vat": 33.17, "vat_rate": 20.0, "price": 165.83, "currency": "USD", "hs_code": 6403999065, "notes": [], "hs_code_priority": 1, "price_original": 199.0, "vat_included": true, "ddp_included": false, "fixed_price": false, "round_price": false, "base_country": "EU", "base_currency": "EUR", "exchanged": null, "cites": false}, "lining": {"rule_id": 27168, "rule_count": 1, "price_taxes": 199.0, "vat": 33.17, "vat_rate": 20.0, "price": 165.83, "currency": "USD", "hs_code": 6403999065, "notes": [], "hs_code_priority": 1, "price_original": 199.0, "vat_included": true, "ddp_included": false, "fixed_price": false, "round_price": false, "base_country": "EU", "base_currency": "EUR", "exchanged": null, "cites": false}, "side": {"rule_id": 27168, "rule_count": 1, "price_taxes": 199.0, "vat": 33.17, "vat_rate": 20.0, "price": 165.83, "currency": "USD", "hs_code": 6403999065, "notes": ["Nappa Leather"], "hs_code_priority": 1, "price_original": 199.0, "vat_included": true, "ddp_included": false, "fixed_price": false, "round_price": false, "base_country": "EU", "base_currency": "EUR", "exchanged": null, "cites": false}, "sole": {"rule_id": 27168, "rule_count": 1, "price_taxes": 199.0, "vat": 33.17, "vat_rate": 20.0, "price": 165.83, "currency": "USD", "hs_code": 6403999065, "notes": ["Rubber"], "hs_code_priority": 1, "price_original": 199.0, "vat_included": true, "ddp_included": false, "fixed_price": false, "round_price": false, "base_country": "EU", "base_currency": "EUR", "exchanged": null, "cites": false}, "logo": {"rule_id": 27168, "rule_count": 1, "price_taxes": 199.0, "vat": 33.17, "vat_rate": 20.0, "price": 165.83, "currency": "USD", "hs_code": 6403999065, "notes": [], "hs_code_priority": 1, "price_original": 199.0, "vat_included": true, "ddp_included": false, "fixed_price": false, "round_price": false, "base_country": "EU", "base_currency": "EUR", "exchanged": null, "cites": false}, "shadow": {"rule_id": 27168, "rule_count": 1, "price_taxes": 199.0, "vat": 33.17, "vat_rate": 20.0, "price": 165.83, "currency": "USD", "hs_code": 6403999065, "notes": [], "hs_code_priority": 1, "price_original": 199.0, "vat_included": true, "ddp_included": false, "fixed_price": false, "round_price": false, "base_country": "EU", "base_currency": "EUR", "exchanged": null, "cites": false}}, "total": {"price_final": 1574.13, "price_taxes": 1326.67, "vat": 0.0, "ddp": 247.46, "ddp_percent": 18.6528544, "vat_rate": 0.0, "price": 1326.67, "currency": "USD", "country": "US", "hs_codes": [6403999065], "hs_code_priority": 1, "shipping": 0.0, "notes": ["Rubber", "Nappa Leather"], "diag": {"no_round": {"price_final": 1574.13, "price_taxes": 1326.67, "price": 1326.67, "vat": 0.0, "ddp": 247.46}, "patch": true, "round_value": true, "is_vat": false, "is_ddp": true, "is_european": false, "is_rounded": false, "vat_included": true, "ddp_included": false, "fixed_price": false, "round_price": false, "base_country": "EU", "base_currency": "EUR", "exchanged": null}, "cites": false}}, "brand": "swear", "factory": "flaj", "domain": null, "sku": "teste2", "shoe": "vyner", "variant": null, "shoe_query": "model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default", "shoe_url": "/config/customization?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default", "image_url": "/compose?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default", "minify_hash": "Mzk4NjU", "image_hash": "Mzk4NjY", "image_o_hash": "Mzk4Njc", "top_hash": "Mzk4Njg", "top_o_hash": "NDU0NTc", "bottom_hash": "Mzk4NzA", "bottom_o_hash": "NDU0NTg", "back_hash": "Mzk4NzI", "side_hash": "Mzk4NzM", "structure": "{\"brand\": \"swear\", \"model\": \"vyner\", \"variant\": null, \"parts_m\": {\"front\": {\"material\": \"nappa\", \"color\": \"white\"}, \"hardware\": {\"material\": \"metal\", \"color\": \"silver\"}, \"laces\": {\"material\": \"nylon\", \"color\": \"white\"}, \"lining\": {\"material\": \"calf_lining\", \"color\": \"white\"}, \"side\": {\"material\": \"nappa\", \"color\": \"white\"}, \"sole\": {\"material\": \"rubber\", \"color\": \"white\"}, \"logo\": {\"material\": \"metal\", \"color\": \"silver\"}, \"shadow\": {\"material\": \"default\", \"color\": \"default\"}}, \"size\": 25, \"gender\": \"male\", \"parts\": [{\"material\": \"nappa\", \"color\": \"white\", \"name\": \"front\", \"hidden\": false, \"optional\": false}, {\"material\": \"nappa\", \"color\": \"white\", \"name\": \"side\", \"hidden\": false, \"optional\": false}, {\"material\": \"calf_lining\", \"color\": \"white\", \"name\": \"lining\", \"hidden\": false, \"optional\": false}, {\"material\": \"nylon\", \"color\": \"white\", \"name\": \"laces\", \"hidden\": false, \"optional\": false}, {\"material\": \"rubber\", \"color\": \"white\", \"name\": \"sole\", \"hidden\": false, \"optional\": false}, {\"material\": \"metal\", \"color\": \"silver\", \"name\": \"hardware\", \"hidden\": false, \"optional\": false}, {\"material\": \"metal\", \"color\": \"silver\", \"name\": \"logo\", \"hidden\": true, \"optional\": false}, {\"material\": \"default\", \"color\": \"default\", \"name\": \"shadow\", \"hidden\": true, \"optional\": false}], \"query\": \"model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default\", \"url\": \"/config/customization?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default\", \"image\": \"/compose?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default\", \"extras\": 0}", "ff_id": null, "ff_shoe_id": 12212972, "ff_order_id": "824e9c6b-4c9f-4364-bf75-51509c0b24b4", "retail_id": "79cd6099-4d9f-44db-b294-cd38d7950e3b", "item_id": "db4924d0-6174-4908-8155-a6e3c3a543fe", "delivery_time": 7, "shipping_info": null, "invoicing_info": null, "invoice": {"invoicer": "invoice_express", "invoice_details": {"finalize": false, "series": "InMSE23", "tax_exemption": "M16"}}, "transport": {"courier": "ups", "package": "envelope", "weight": 1.5, "weight_units": "kilograms", "documents": ["invoice", "general-certificate"], "shipping_details": {"service": "express", "description": "sneakers", "shipper": {"name": "Coolstuffz Porto", "phone": "222333444", "address": {"line": "Rua de Santa Catarina 4", "city": "Porto", "postal_code": "4000542", "country_code": "PT"}}}}, "transport_ready": false, "tracking_number": null, "tracking_url": null, "return_tracking_number": null, "return_tracking_url": null, "pickup_number": null, "proof_of_delivery_url": null, "report_url_e": null, "last_updated": 1704469978, "last_update_touches": [], "last_state_change": 1704469978, "tag": null, "states_names": ["created", "sent"], "notes": [], "issues": [], "states": [{"_id": "659825dabb11325081aafd74", "id": 330951, "enabled": true, "description": null, "created": 1704469978, "modified": 1704469978, "meta": {}, "brand_t": null, "retailer_t": null, "vendor_t": null, "name": "created", "justification": "Order import", "timestamp": 1704469978, "email": "docs@platforme.com", "account": {"_id": "5c7e68794ce4e7006b5c71c8", "id": 30, "enabled": true, "description": "", "created": 1551788153, "modified": 1704469978, "meta": {}, "username": "docs", "email": "docs@platforme.com", "facebook_id": "", "github_login": "", "google_id": "", "live_id": "", "twitter_username": "", "type": 1, "last_login": 1704469978, "roles": [], "avatar_url": "https://ripe-core-sbx.platforme.com/admin/accounts/docs/avatar"}, "chat": null, "attachments": []}, {"_id": "659825da3e27f1c070aafc7f", "id": 330952, "enabled": true, "description": null, "created": 1704469978, "modified": 1704469978, "meta": {}, "brand_t": null, "retailer_t": null, "vendor_t": null, "name": "sent", "justification": null, "timestamp": 1704469978, "email": "docs@platforme.com", "account": {"_id": "5c7e68794ce4e7006b5c71c8", "id": 30, "enabled": true, "description": "", "created": 1551788153, "modified": 1704469978, "meta": {}, "username": "docs", "email": "docs@platforme.com", "facebook_id": "", "github_login": "", "google_id": "", "live_id": "", "twitter_username": "", "type": 1, "last_login": 1704469978, "roles": [], "avatar_url": "https://ripe-core-sbx.platforme.com/admin/accounts/docs/avatar"}, "chat": null, "attachments": []}], "attachments": [], "account": "docs@platforme.com", "customer": null, "ambassador": null, "store": null, "chat": null, "number_s": "#320047", "channel": "digital", "delivery_d": 1705074777.0, "scale": "it", "size_scaled": 40.0, "details": {"brand": "swear", "model": "vyner", "variant": null, "parts_m": {"front": {"material": "nappa", "color": "white"}, "hardware": {"material": "metal", "color": "silver"}, "laces": {"material": "nylon", "color": "white"}, "lining": {"material": "calf_lining", "color": "white"}, "side": {"material": "nappa", "color": "white"}, "sole": {"material": "rubber", "color": "white"}, "logo": {"material": "metal", "color": "silver"}, "shadow": {"material": "default", "color": "default"}}, "size": 25, "gender": "male", "parts": [{"material": "nappa", "color": "white", "name": "front", "hidden": false, "optional": false}, {"material": "nappa", "color": "white", "name": "side", "hidden": false, "optional": false}, {"material": "calf_lining", "color": "white", "name": "lining", "hidden": false, "optional": false}, {"material": "nylon", "color": "white", "name": "laces", "hidden": false, "optional": false}, {"material": "rubber", "color": "white", "name": "sole", "hidden": false, "optional": false}, {"material": "metal", "color": "silver", "name": "hardware", "hidden": false, "optional": false}, {"material": "metal", "color": "silver", "name": "logo", "hidden": true, "optional": false}, {"material": "default", "color": "default", "name": "shadow", "hidden": true, "optional": false}], "query": "model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default", "url": "/config/customization?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default", "image": "/compose?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default", "extras": 0}}{
"_id": "659825dabb11325081aafd70",
"id": 320047,
"number": 320047,
"enabled": true,
"description": "VYNER",
"created": 1704469977,
"modified": 1704469979,
"meta": {
"sku": "c68598bb-4735-46ae-aed4-d9842920a7b4"
},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": "flaj",
"quantity": 1,
"key": "6ebd15e05ae803a8f031d21d12c46950b82e16e6",
"status": "received",
"status_index": 5,
"production_status": "unset",
"production": "produce",
"priority": null,
"type": "build",
"gender": "male",
"scale_s": null,
"currency": "USD",
"country": "US",
"price": 1574.13,
"prices": {
"components": {
"front": {
"rule_id": 27166,
"rule_count": 5,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [
"Nappa Leather"
],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"hardware": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"laces": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"lining": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"side": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [
"Nappa Leather"
],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"sole": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [
"Rubber"
],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"logo": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"shadow": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
}
},
"total": {
"price_final": 1574.13,
"price_taxes": 1326.67,
"vat": 0.0,
"ddp": 247.46,
"ddp_percent": 18.6528544,
"vat_rate": 0.0,
"price": 1326.67,
"currency": "USD",
"country": "US",
"hs_codes": [
6403999065
],
"hs_code_priority": 1,
"shipping": 0.0,
"notes": [
"Rubber",
"Nappa Leather"
],
"diag": {
"no_round": {
"price_final": 1574.13,
"price_taxes": 1326.67,
"price": 1326.67,
"vat": 0.0,
"ddp": 247.46
},
"patch": true,
"round_value": true,
"is_vat": false,
"is_ddp": true,
"is_european": false,
"is_rounded": false,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null
},
"cites": false
}
},
"brand": "swear",
"factory": "flaj",
"domain": null,
"sku": "teste2",
"shoe": "vyner",
"variant": null,
"shoe_query": "model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"shoe_url": "/config/customization?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"image_url": "/compose?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"minify_hash": "Mzk4NjU",
"image_hash": "Mzk4NjY",
"image_o_hash": "Mzk4Njc",
"top_hash": "Mzk4Njg",
"top_o_hash": "NDU0NTc",
"bottom_hash": "Mzk4NzA",
"bottom_o_hash": "NDU0NTg",
"back_hash": "Mzk4NzI",
"side_hash": "Mzk4NzM",
"structure": "{\"brand\": \"swear\", \"model\": \"vyner\", \"variant\": null, \"parts_m\": {\"front\": {\"material\": \"nappa\", \"color\": \"white\"}, \"hardware\": {\"material\": \"metal\", \"color\": \"silver\"}, \"laces\": {\"material\": \"nylon\", \"color\": \"white\"}, \"lining\": {\"material\": \"calf_lining\", \"color\": \"white\"}, \"side\": {\"material\": \"nappa\", \"color\": \"white\"}, \"sole\": {\"material\": \"rubber\", \"color\": \"white\"}, \"logo\": {\"material\": \"metal\", \"color\": \"silver\"}, \"shadow\": {\"material\": \"default\", \"color\": \"default\"}}, \"size\": 25, \"gender\": \"male\", \"parts\": [{\"material\": \"nappa\", \"color\": \"white\", \"name\": \"front\", \"hidden\": false, \"optional\": false}, {\"material\": \"nappa\", \"color\": \"white\", \"name\": \"side\", \"hidden\": false, \"optional\": false}, {\"material\": \"calf_lining\", \"color\": \"white\", \"name\": \"lining\", \"hidden\": false, \"optional\": false}, {\"material\": \"nylon\", \"color\": \"white\", \"name\": \"laces\", \"hidden\": false, \"optional\": false}, {\"material\": \"rubber\", \"color\": \"white\", \"name\": \"sole\", \"hidden\": false, \"optional\": false}, {\"material\": \"metal\", \"color\": \"silver\", \"name\": \"hardware\", \"hidden\": false, \"optional\": false}, {\"material\": \"metal\", \"color\": \"silver\", \"name\": \"logo\", \"hidden\": true, \"optional\": false}, {\"material\": \"default\", \"color\": \"default\", \"name\": \"shadow\", \"hidden\": true, \"optional\": false}], \"query\": \"model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default\", \"url\": \"/config/customization?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default\", \"image\": \"/compose?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default\", \"extras\": 0}",
"ff_id": null,
"ff_shoe_id": 12212972,
"ff_order_id": "824e9c6b-4c9f-4364-bf75-51509c0b24b4",
"retail_id": "79cd6099-4d9f-44db-b294-cd38d7950e3b",
"item_id": "db4924d0-6174-4908-8155-a6e3c3a543fe",
"delivery_time": 7,
"shipping_info": null,
"invoicing_info": null,
"invoice": {
"invoicer": "invoice_express",
"invoice_details": {
"finalize": false,
"series": "InMSE23",
"tax_exemption": "M16"
}
},
"transport": {
"courier": "ups",
"package": "envelope",
"weight": 1.5,
"weight_units": "kilograms",
"documents": [
"invoice",
"general-certificate"
],
"shipping_details": {
"service": "express",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
}
},
"transport_ready": false,
"tracking_number": null,
"tracking_url": null,
"return_tracking_number": null,
"return_tracking_url": null,
"pickup_number": null,
"proof_of_delivery_url": null,
"report_url_e": null,
"last_updated": 1704469979,
"last_update_touches": [],
"last_state_change": 1704469979,
"tag": null,
"states_names": [
"created",
"sent",
"received"
],
"notes": [],
"issues": [],
"states": [
{
"_id": "659825dabb11325081aafd74",
"id": 330951,
"enabled": true,
"description": null,
"created": 1704469978,
"modified": 1704469978,
"meta": {},
"brand_t": null,
"retailer_t": null,
"vendor_t": null,
"name": "created",
"justification": "Order import",
"timestamp": 1704469978,
"email": "docs@platforme.com",
"account": {
"_id": "5c7e68794ce4e7006b5c71c8",
"id": 30,
"enabled": true,
"description": "",
"created": 1551788153,
"modified": 1704469979,
"meta": {},
"username": "docs",
"email": "docs@platforme.com",
"facebook_id": "",
"github_login": "",
"google_id": "",
"live_id": "",
"twitter_username": "",
"type": 1,
"last_login": 1704469979,
"roles": [],
"avatar_url": "https://ripe-core-sbx.platforme.com/admin/accounts/docs/avatar"
},
"chat": null,
"attachments": []
},
{
"_id": "659825da3e27f1c070aafc7f",
"id": 330952,
"enabled": true,
"description": null,
"created": 1704469978,
"modified": 1704469978,
"meta": {},
"brand_t": null,
"retailer_t": null,
"vendor_t": null,
"name": "sent",
"justification": null,
"timestamp": 1704469978,
"email": "docs@platforme.com",
"account": {
"_id": "5c7e68794ce4e7006b5c71c8",
"id": 30,
"enabled": true,
"description": "",
"created": 1551788153,
"modified": 1704469979,
"meta": {},
"username": "docs",
"email": "docs@platforme.com",
"facebook_id": "",
"github_login": "",
"google_id": "",
"live_id": "",
"twitter_username": "",
"type": 1,
"last_login": 1704469979,
"roles": [],
"avatar_url": "https://ripe-core-sbx.platforme.com/admin/accounts/docs/avatar"
},
"chat": null,
"attachments": []
},
{
"_id": "659825db3e27f1c070aafc85",
"id": 330953,
"enabled": true,
"description": null,
"created": 1704469979,
"modified": 1704469979,
"meta": {},
"brand_t": null,
"retailer_t": null,
"vendor_t": null,
"name": "received",
"justification": null,
"timestamp": 1704469979,
"email": "docs@platforme.com",
"account": {
"_id": "5c7e68794ce4e7006b5c71c8",
"id": 30,
"enabled": true,
"description": "",
"created": 1551788153,
"modified": 1704469979,
"meta": {},
"username": "docs",
"email": "docs@platforme.com",
"facebook_id": "",
"github_login": "",
"google_id": "",
"live_id": "",
"twitter_username": "",
"type": 1,
"last_login": 1704469979,
"roles": [],
"avatar_url": "https://ripe-core-sbx.platforme.com/admin/accounts/docs/avatar"
},
"chat": null,
"attachments": []
}
],
"attachments": [],
"account": "docs@platforme.com",
"customer": null,
"ambassador": null,
"store": null,
"chat": null,
"number_s": "#320047",
"channel": "digital",
"delivery_d": 1705074777.0,
"scale": "it",
"size_scaled": 40.0,
"details": {
"brand": "swear",
"model": "vyner",
"variant": null,
"parts_m": {
"front": {
"material": "nappa",
"color": "white"
},
"hardware": {
"material": "metal",
"color": "silver"
},
"laces": {
"material": "nylon",
"color": "white"
},
"lining": {
"material": "calf_lining",
"color": "white"
},
"side": {
"material": "nappa",
"color": "white"
},
"sole": {
"material": "rubber",
"color": "white"
},
"logo": {
"material": "metal",
"color": "silver"
},
"shadow": {
"material": "default",
"color": "default"
}
},
"size": 25,
"gender": "male",
"parts": [
{
"material": "nappa",
"color": "white",
"name": "front",
"hidden": false,
"optional": false
},
{
"material": "nappa",
"color": "white",
"name": "side",
"hidden": false,
"optional": false
},
{
"material": "calf_lining",
"color": "white",
"name": "lining",
"hidden": false,
"optional": false
},
{
"material": "nylon",
"color": "white",
"name": "laces",
"hidden": false,
"optional": false
},
{
"material": "rubber",
"color": "white",
"name": "sole",
"hidden": false,
"optional": false
},
{
"material": "metal",
"color": "silver",
"name": "hardware",
"hidden": false,
"optional": false
},
{
"material": "metal",
"color": "silver",
"name": "logo",
"hidden": true,
"optional": false
},
{
"material": "default",
"color": "default",
"name": "shadow",
"hidden": true,
"optional": false
}
],
"query": "model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"url": "/config/customization?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"image": "/compose?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"extras": 0
}
}
Set the status of a specific order to 'received'. Returns the updated order.
Authentication credentials required.
HTTP Request
PUT https://ripe-core-sbx.platforme.com/api/orders/<number>/receive
Header Fields
Field | Mandatory | Type | Default | Description |
---|---|---|---|---|
X-Secret-Key | yes | text | The X-Secret-Key to authenticate the request. |
Path Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
number | yes | numeric | Order's production number. |
Return (status)
Example Request
curl -s -X PUT "https://ripe-core-sbx.platforme.com/api/orders/4683/return" \
-H "X-Secret-Key: $RIPE_KEY"
Example Response
{"_id": "659825dc3e27f1c070aafc8b", "id": 320048, "number": 320048, "enabled": true, "description": "VYNER", "created": 1704469980, "modified": 1704469980, "meta": {"sku": "8bb02ce9-afcd-4f6a-91f1-2131bdbdd9b4"}, "brand_t": "swear", "retailer_t": null, "vendor_t": "flaj", "quantity": 1, "key": "8f0d5d8af625efdb7d93eb2f22c612845c62d819", "status": "sent", "status_index": 4, "production_status": "unset", "production": "produce", "priority": null, "type": "build", "gender": "male", "scale_s": null, "currency": "USD", "country": "US", "price": 1574.13, "prices": {"components": {"front": {"rule_id": 27166, "rule_count": 5, "price_taxes": 199.0, "vat": 33.17, "vat_rate": 20.0, "price": 165.83, "currency": "USD", "hs_code": 6403999065, "notes": ["Nappa Leather"], "hs_code_priority": 1, "price_original": 199.0, "vat_included": true, "ddp_included": false, "fixed_price": false, "round_price": false, "base_country": "EU", "base_currency": "EUR", "exchanged": null, "cites": false}, "hardware": {"rule_id": 27168, "rule_count": 1, "price_taxes": 199.0, "vat": 33.17, "vat_rate": 20.0, "price": 165.83, "currency": "USD", "hs_code": 6403999065, "notes": [], "hs_code_priority": 1, "price_original": 199.0, "vat_included": true, "ddp_included": false, "fixed_price": false, "round_price": false, "base_country": "EU", "base_currency": "EUR", "exchanged": null, "cites": false}, "laces": {"rule_id": 27168, "rule_count": 1, "price_taxes": 199.0, "vat": 33.17, "vat_rate": 20.0, "price": 165.83, "currency": "USD", "hs_code": 6403999065, "notes": [], "hs_code_priority": 1, "price_original": 199.0, "vat_included": true, "ddp_included": false, "fixed_price": false, "round_price": false, "base_country": "EU", "base_currency": "EUR", "exchanged": null, "cites": false}, "lining": {"rule_id": 27168, "rule_count": 1, "price_taxes": 199.0, "vat": 33.17, "vat_rate": 20.0, "price": 165.83, "currency": "USD", "hs_code": 6403999065, "notes": [], "hs_code_priority": 1, "price_original": 199.0, "vat_included": true, "ddp_included": false, "fixed_price": false, "round_price": false, "base_country": "EU", "base_currency": "EUR", "exchanged": null, "cites": false}, "side": {"rule_id": 27168, "rule_count": 1, "price_taxes": 199.0, "vat": 33.17, "vat_rate": 20.0, "price": 165.83, "currency": "USD", "hs_code": 6403999065, "notes": ["Nappa Leather"], "hs_code_priority": 1, "price_original": 199.0, "vat_included": true, "ddp_included": false, "fixed_price": false, "round_price": false, "base_country": "EU", "base_currency": "EUR", "exchanged": null, "cites": false}, "sole": {"rule_id": 27168, "rule_count": 1, "price_taxes": 199.0, "vat": 33.17, "vat_rate": 20.0, "price": 165.83, "currency": "USD", "hs_code": 6403999065, "notes": ["Rubber"], "hs_code_priority": 1, "price_original": 199.0, "vat_included": true, "ddp_included": false, "fixed_price": false, "round_price": false, "base_country": "EU", "base_currency": "EUR", "exchanged": null, "cites": false}, "logo": {"rule_id": 27168, "rule_count": 1, "price_taxes": 199.0, "vat": 33.17, "vat_rate": 20.0, "price": 165.83, "currency": "USD", "hs_code": 6403999065, "notes": [], "hs_code_priority": 1, "price_original": 199.0, "vat_included": true, "ddp_included": false, "fixed_price": false, "round_price": false, "base_country": "EU", "base_currency": "EUR", "exchanged": null, "cites": false}, "shadow": {"rule_id": 27168, "rule_count": 1, "price_taxes": 199.0, "vat": 33.17, "vat_rate": 20.0, "price": 165.83, "currency": "USD", "hs_code": 6403999065, "notes": [], "hs_code_priority": 1, "price_original": 199.0, "vat_included": true, "ddp_included": false, "fixed_price": false, "round_price": false, "base_country": "EU", "base_currency": "EUR", "exchanged": null, "cites": false}}, "total": {"price_final": 1574.13, "price_taxes": 1326.67, "vat": 0.0, "ddp": 247.46, "ddp_percent": 18.6528544, "vat_rate": 0.0, "price": 1326.67, "currency": "USD", "country": "US", "hs_codes": [6403999065], "hs_code_priority": 1, "shipping": 0.0, "notes": ["Rubber", "Nappa Leather"], "diag": {"no_round": {"price_final": 1574.13, "price_taxes": 1326.67, "price": 1326.67, "vat": 0.0, "ddp": 247.46}, "patch": true, "round_value": true, "is_vat": false, "is_ddp": true, "is_european": false, "is_rounded": false, "vat_included": true, "ddp_included": false, "fixed_price": false, "round_price": false, "base_country": "EU", "base_currency": "EUR", "exchanged": null}, "cites": false}}, "brand": "swear", "factory": "flaj", "domain": null, "sku": "teste2", "shoe": "vyner", "variant": null, "shoe_query": "model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default", "shoe_url": "/config/customization?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default", "image_url": "/compose?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default", "minify_hash": "Mzk4NjU", "image_hash": "Mzk4NjY", "image_o_hash": "Mzk4Njc", "top_hash": "Mzk4Njg", "top_o_hash": "NDU0NTc", "bottom_hash": "Mzk4NzA", "bottom_o_hash": "NDU0NTg", "back_hash": "Mzk4NzI", "side_hash": "Mzk4NzM", "structure": "{\"brand\": \"swear\", \"model\": \"vyner\", \"variant\": null, \"parts_m\": {\"front\": {\"material\": \"nappa\", \"color\": \"white\"}, \"hardware\": {\"material\": \"metal\", \"color\": \"silver\"}, \"laces\": {\"material\": \"nylon\", \"color\": \"white\"}, \"lining\": {\"material\": \"calf_lining\", \"color\": \"white\"}, \"side\": {\"material\": \"nappa\", \"color\": \"white\"}, \"sole\": {\"material\": \"rubber\", \"color\": \"white\"}, \"logo\": {\"material\": \"metal\", \"color\": \"silver\"}, \"shadow\": {\"material\": \"default\", \"color\": \"default\"}}, \"size\": 25, \"gender\": \"male\", \"parts\": [{\"material\": \"nappa\", \"color\": \"white\", \"name\": \"front\", \"hidden\": false, \"optional\": false}, {\"material\": \"nappa\", \"color\": \"white\", \"name\": \"side\", \"hidden\": false, \"optional\": false}, {\"material\": \"calf_lining\", \"color\": \"white\", \"name\": \"lining\", \"hidden\": false, \"optional\": false}, {\"material\": \"nylon\", \"color\": \"white\", \"name\": \"laces\", \"hidden\": false, \"optional\": false}, {\"material\": \"rubber\", \"color\": \"white\", \"name\": \"sole\", \"hidden\": false, \"optional\": false}, {\"material\": \"metal\", \"color\": \"silver\", \"name\": \"hardware\", \"hidden\": false, \"optional\": false}, {\"material\": \"metal\", \"color\": \"silver\", \"name\": \"logo\", \"hidden\": true, \"optional\": false}, {\"material\": \"default\", \"color\": \"default\", \"name\": \"shadow\", \"hidden\": true, \"optional\": false}], \"query\": \"model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default\", \"url\": \"/config/customization?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default\", \"image\": \"/compose?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default\", \"extras\": 0}", "ff_id": null, "ff_shoe_id": 12212972, "ff_order_id": "a31bfd36-9a3b-4801-83c8-f27bd71b61ac", "retail_id": "11c56483-1218-4eaa-9a97-63063c88c528", "item_id": "2daaf86e-2c45-4657-897d-d31e0e9b5059", "delivery_time": 7, "shipping_info": null, "invoicing_info": null, "invoice": {"invoicer": "invoice_express", "invoice_details": {"finalize": false, "series": "InMSE23", "tax_exemption": "M16"}}, "transport": {"courier": "ups", "package": "envelope", "weight": 1.5, "weight_units": "kilograms", "documents": ["invoice", "general-certificate"], "shipping_details": {"service": "express", "description": "sneakers", "shipper": {"name": "Coolstuffz Porto", "phone": "222333444", "address": {"line": "Rua de Santa Catarina 4", "city": "Porto", "postal_code": "4000542", "country_code": "PT"}}}}, "transport_ready": false, "tracking_number": null, "tracking_url": null, "return_tracking_number": null, "return_tracking_url": null, "pickup_number": null, "proof_of_delivery_url": null, "report_url_e": null, "last_updated": 1704469980, "last_update_touches": [], "last_state_change": 1704469980, "tag": null, "states_names": ["created", "sent"], "notes": [], "issues": [], "states": [{"_id": "659825dc3e27f1c070aafc8f", "id": 330954, "enabled": true, "description": null, "created": 1704469980, "modified": 1704469980, "meta": {}, "brand_t": null, "retailer_t": null, "vendor_t": null, "name": "created", "justification": "Order import", "timestamp": 1704469980, "email": "docs@platforme.com", "account": {"_id": "5c7e68794ce4e7006b5c71c8", "id": 30, "enabled": true, "description": "", "created": 1551788153, "modified": 1704469980, "meta": {}, "username": "docs", "email": "docs@platforme.com", "facebook_id": "", "github_login": "", "google_id": "", "live_id": "", "twitter_username": "", "type": 1, "last_login": 1704469980, "roles": [], "avatar_url": "https://ripe-core-sbx.platforme.com/admin/accounts/docs/avatar"}, "chat": null, "attachments": []}, {"_id": "659825dc3e27f1c070aafc95", "id": 330955, "enabled": true, "description": null, "created": 1704469980, "modified": 1704469980, "meta": {}, "brand_t": null, "retailer_t": null, "vendor_t": null, "name": "sent", "justification": null, "timestamp": 1704469980, "email": "docs@platforme.com", "account": {"_id": "5c7e68794ce4e7006b5c71c8", "id": 30, "enabled": true, "description": "", "created": 1551788153, "modified": 1704469980, "meta": {}, "username": "docs", "email": "docs@platforme.com", "facebook_id": "", "github_login": "", "google_id": "", "live_id": "", "twitter_username": "", "type": 1, "last_login": 1704469980, "roles": [], "avatar_url": "https://ripe-core-sbx.platforme.com/admin/accounts/docs/avatar"}, "chat": null, "attachments": []}], "attachments": [], "account": "docs@platforme.com", "customer": null, "ambassador": null, "store": null, "chat": null, "number_s": "#320048", "channel": "digital", "delivery_d": 1705074780.0, "scale": "it", "size_scaled": 40.0, "details": {"brand": "swear", "model": "vyner", "variant": null, "parts_m": {"front": {"material": "nappa", "color": "white"}, "hardware": {"material": "metal", "color": "silver"}, "laces": {"material": "nylon", "color": "white"}, "lining": {"material": "calf_lining", "color": "white"}, "side": {"material": "nappa", "color": "white"}, "sole": {"material": "rubber", "color": "white"}, "logo": {"material": "metal", "color": "silver"}, "shadow": {"material": "default", "color": "default"}}, "size": 25, "gender": "male", "parts": [{"material": "nappa", "color": "white", "name": "front", "hidden": false, "optional": false}, {"material": "nappa", "color": "white", "name": "side", "hidden": false, "optional": false}, {"material": "calf_lining", "color": "white", "name": "lining", "hidden": false, "optional": false}, {"material": "nylon", "color": "white", "name": "laces", "hidden": false, "optional": false}, {"material": "rubber", "color": "white", "name": "sole", "hidden": false, "optional": false}, {"material": "metal", "color": "silver", "name": "hardware", "hidden": false, "optional": false}, {"material": "metal", "color": "silver", "name": "logo", "hidden": true, "optional": false}, {"material": "default", "color": "default", "name": "shadow", "hidden": true, "optional": false}], "query": "model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default", "url": "/config/customization?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default", "image": "/compose?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default", "extras": 0}}{
"_id": "659825dc3e27f1c070aafc8b",
"id": 320048,
"number": 320048,
"enabled": true,
"description": "VYNER",
"created": 1704469980,
"modified": 1704469981,
"meta": {
"sku": "8bb02ce9-afcd-4f6a-91f1-2131bdbdd9b4"
},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": "flaj",
"quantity": 1,
"key": "8f0d5d8af625efdb7d93eb2f22c612845c62d819",
"status": "returned",
"status_index": 5,
"production_status": "unset",
"production": "produce",
"priority": null,
"type": "build",
"gender": "male",
"scale_s": null,
"currency": "USD",
"country": "US",
"price": 1574.13,
"prices": {
"components": {
"front": {
"rule_id": 27166,
"rule_count": 5,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [
"Nappa Leather"
],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"hardware": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"laces": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"lining": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"side": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [
"Nappa Leather"
],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"sole": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [
"Rubber"
],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"logo": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"shadow": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
}
},
"total": {
"price_final": 1574.13,
"price_taxes": 1326.67,
"vat": 0.0,
"ddp": 247.46,
"ddp_percent": 18.6528544,
"vat_rate": 0.0,
"price": 1326.67,
"currency": "USD",
"country": "US",
"hs_codes": [
6403999065
],
"hs_code_priority": 1,
"shipping": 0.0,
"notes": [
"Rubber",
"Nappa Leather"
],
"diag": {
"no_round": {
"price_final": 1574.13,
"price_taxes": 1326.67,
"price": 1326.67,
"vat": 0.0,
"ddp": 247.46
},
"patch": true,
"round_value": true,
"is_vat": false,
"is_ddp": true,
"is_european": false,
"is_rounded": false,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null
},
"cites": false
}
},
"brand": "swear",
"factory": "flaj",
"domain": null,
"sku": "teste2",
"shoe": "vyner",
"variant": null,
"shoe_query": "model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"shoe_url": "/config/customization?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"image_url": "/compose?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"minify_hash": "Mzk4NjU",
"image_hash": "Mzk4NjY",
"image_o_hash": "Mzk4Njc",
"top_hash": "Mzk4Njg",
"top_o_hash": "NDU0NTc",
"bottom_hash": "Mzk4NzA",
"bottom_o_hash": "NDU0NTg",
"back_hash": "Mzk4NzI",
"side_hash": "Mzk4NzM",
"structure": "{\"brand\": \"swear\", \"model\": \"vyner\", \"variant\": null, \"parts_m\": {\"front\": {\"material\": \"nappa\", \"color\": \"white\"}, \"hardware\": {\"material\": \"metal\", \"color\": \"silver\"}, \"laces\": {\"material\": \"nylon\", \"color\": \"white\"}, \"lining\": {\"material\": \"calf_lining\", \"color\": \"white\"}, \"side\": {\"material\": \"nappa\", \"color\": \"white\"}, \"sole\": {\"material\": \"rubber\", \"color\": \"white\"}, \"logo\": {\"material\": \"metal\", \"color\": \"silver\"}, \"shadow\": {\"material\": \"default\", \"color\": \"default\"}}, \"size\": 25, \"gender\": \"male\", \"parts\": [{\"material\": \"nappa\", \"color\": \"white\", \"name\": \"front\", \"hidden\": false, \"optional\": false}, {\"material\": \"nappa\", \"color\": \"white\", \"name\": \"side\", \"hidden\": false, \"optional\": false}, {\"material\": \"calf_lining\", \"color\": \"white\", \"name\": \"lining\", \"hidden\": false, \"optional\": false}, {\"material\": \"nylon\", \"color\": \"white\", \"name\": \"laces\", \"hidden\": false, \"optional\": false}, {\"material\": \"rubber\", \"color\": \"white\", \"name\": \"sole\", \"hidden\": false, \"optional\": false}, {\"material\": \"metal\", \"color\": \"silver\", \"name\": \"hardware\", \"hidden\": false, \"optional\": false}, {\"material\": \"metal\", \"color\": \"silver\", \"name\": \"logo\", \"hidden\": true, \"optional\": false}, {\"material\": \"default\", \"color\": \"default\", \"name\": \"shadow\", \"hidden\": true, \"optional\": false}], \"query\": \"model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default\", \"url\": \"/config/customization?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default\", \"image\": \"/compose?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default\", \"extras\": 0}",
"ff_id": null,
"ff_shoe_id": 12212972,
"ff_order_id": "a31bfd36-9a3b-4801-83c8-f27bd71b61ac",
"retail_id": "11c56483-1218-4eaa-9a97-63063c88c528",
"item_id": "2daaf86e-2c45-4657-897d-d31e0e9b5059",
"delivery_time": 7,
"shipping_info": null,
"invoicing_info": null,
"invoice": {
"invoicer": "invoice_express",
"invoice_details": {
"finalize": false,
"series": "InMSE23",
"tax_exemption": "M16"
}
},
"transport": {
"courier": "ups",
"package": "envelope",
"weight": 1.5,
"weight_units": "kilograms",
"documents": [
"invoice",
"general-certificate"
],
"shipping_details": {
"service": "express",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
}
},
"transport_ready": false,
"tracking_number": null,
"tracking_url": null,
"return_tracking_number": null,
"return_tracking_url": null,
"pickup_number": null,
"proof_of_delivery_url": null,
"report_url_e": null,
"last_updated": 1704469981,
"last_update_touches": [],
"last_state_change": 1704469981,
"tag": null,
"states_names": [
"created",
"sent",
"returned"
],
"notes": [],
"issues": [],
"states": [
{
"_id": "659825dc3e27f1c070aafc8f",
"id": 330954,
"enabled": true,
"description": null,
"created": 1704469980,
"modified": 1704469980,
"meta": {},
"brand_t": null,
"retailer_t": null,
"vendor_t": null,
"name": "created",
"justification": "Order import",
"timestamp": 1704469980,
"email": "docs@platforme.com",
"account": {
"_id": "5c7e68794ce4e7006b5c71c8",
"id": 30,
"enabled": true,
"description": "",
"created": 1551788153,
"modified": 1704469981,
"meta": {},
"username": "docs",
"email": "docs@platforme.com",
"facebook_id": "",
"github_login": "",
"google_id": "",
"live_id": "",
"twitter_username": "",
"type": 1,
"last_login": 1704469981,
"roles": [],
"avatar_url": "https://ripe-core-sbx.platforme.com/admin/accounts/docs/avatar"
},
"chat": null,
"attachments": []
},
{
"_id": "659825dc3e27f1c070aafc95",
"id": 330955,
"enabled": true,
"description": null,
"created": 1704469980,
"modified": 1704469980,
"meta": {},
"brand_t": null,
"retailer_t": null,
"vendor_t": null,
"name": "sent",
"justification": null,
"timestamp": 1704469980,
"email": "docs@platforme.com",
"account": {
"_id": "5c7e68794ce4e7006b5c71c8",
"id": 30,
"enabled": true,
"description": "",
"created": 1551788153,
"modified": 1704469981,
"meta": {},
"username": "docs",
"email": "docs@platforme.com",
"facebook_id": "",
"github_login": "",
"google_id": "",
"live_id": "",
"twitter_username": "",
"type": 1,
"last_login": 1704469981,
"roles": [],
"avatar_url": "https://ripe-core-sbx.platforme.com/admin/accounts/docs/avatar"
},
"chat": null,
"attachments": []
},
{
"_id": "659825dd3e27f1c070aafc9b",
"id": 330956,
"enabled": true,
"description": null,
"created": 1704469981,
"modified": 1704469981,
"meta": {},
"brand_t": null,
"retailer_t": null,
"vendor_t": null,
"name": "returned",
"justification": null,
"timestamp": 1704469981,
"email": "docs@platforme.com",
"account": {
"_id": "5c7e68794ce4e7006b5c71c8",
"id": 30,
"enabled": true,
"description": "",
"created": 1551788153,
"modified": 1704469981,
"meta": {},
"username": "docs",
"email": "docs@platforme.com",
"facebook_id": "",
"github_login": "",
"google_id": "",
"live_id": "",
"twitter_username": "",
"type": 1,
"last_login": 1704469981,
"roles": [],
"avatar_url": "https://ripe-core-sbx.platforme.com/admin/accounts/docs/avatar"
},
"chat": null,
"attachments": []
}
],
"attachments": [],
"account": "docs@platforme.com",
"customer": null,
"ambassador": null,
"store": null,
"chat": null,
"number_s": "#320048",
"channel": "digital",
"delivery_d": 1705074780.0,
"scale": "it",
"size_scaled": 40.0,
"details": {
"brand": "swear",
"model": "vyner",
"variant": null,
"parts_m": {
"front": {
"material": "nappa",
"color": "white"
},
"hardware": {
"material": "metal",
"color": "silver"
},
"laces": {
"material": "nylon",
"color": "white"
},
"lining": {
"material": "calf_lining",
"color": "white"
},
"side": {
"material": "nappa",
"color": "white"
},
"sole": {
"material": "rubber",
"color": "white"
},
"logo": {
"material": "metal",
"color": "silver"
},
"shadow": {
"material": "default",
"color": "default"
}
},
"size": 25,
"gender": "male",
"parts": [
{
"material": "nappa",
"color": "white",
"name": "front",
"hidden": false,
"optional": false
},
{
"material": "nappa",
"color": "white",
"name": "side",
"hidden": false,
"optional": false
},
{
"material": "calf_lining",
"color": "white",
"name": "lining",
"hidden": false,
"optional": false
},
{
"material": "nylon",
"color": "white",
"name": "laces",
"hidden": false,
"optional": false
},
{
"material": "rubber",
"color": "white",
"name": "sole",
"hidden": false,
"optional": false
},
{
"material": "metal",
"color": "silver",
"name": "hardware",
"hidden": false,
"optional": false
},
{
"material": "metal",
"color": "silver",
"name": "logo",
"hidden": true,
"optional": false
},
{
"material": "default",
"color": "default",
"name": "shadow",
"hidden": true,
"optional": false
}
],
"query": "model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"url": "/config/customization?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"image": "/compose?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"extras": 0
}
}
Set the status of a specific order to 'returned'. Returns the updated order.
Authentication credentials required.
HTTP Request
PUT https://ripe-core-sbx.platforme.com/api/orders/<number>/return
Header Fields
Field | Mandatory | Type | Default | Description |
---|---|---|---|---|
X-Secret-Key | yes | text | The X-Secret-Key to authenticate the request. |
Path Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
number | yes | numeric | Order's production number. |
Cancel (status)
Example Request
curl -s -X PUT "https://ripe-core-sbx.platforme.com/api/orders/4683/cancel" \
-H "X-Secret-Key: $RIPE_KEY"
Example Response
{
"_id": "659825de3e27f1c070aafca1",
"id": 320049,
"number": 320049,
"enabled": true,
"description": "VYNER",
"created": 1704469982,
"modified": 1704469982,
"meta": {
"sku": "7ce17985-fa6f-4ad5-a03d-7e5ac9152bc2"
},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": "flaj",
"quantity": 1,
"key": "a8b3a5d470fbea7321b1dd718e7a33a922a09373",
"status": "canceled",
"status_index": 5,
"production_status": "unset",
"production": "produce",
"priority": null,
"type": "build",
"gender": "male",
"scale_s": null,
"currency": "USD",
"country": "US",
"price": 1574.13,
"prices": {
"components": {
"front": {
"rule_id": 27166,
"rule_count": 5,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [
"Nappa Leather"
],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"hardware": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"laces": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"lining": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"side": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [
"Nappa Leather"
],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"sole": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [
"Rubber"
],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"logo": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"shadow": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
}
},
"total": {
"price_final": 1574.13,
"price_taxes": 1326.67,
"vat": 0.0,
"ddp": 247.46,
"ddp_percent": 18.6528544,
"vat_rate": 0.0,
"price": 1326.67,
"currency": "USD",
"country": "US",
"hs_codes": [
6403999065
],
"hs_code_priority": 1,
"shipping": 0.0,
"notes": [
"Rubber",
"Nappa Leather"
],
"diag": {
"no_round": {
"price_final": 1574.13,
"price_taxes": 1326.67,
"price": 1326.67,
"vat": 0.0,
"ddp": 247.46
},
"patch": true,
"round_value": true,
"is_vat": false,
"is_ddp": true,
"is_european": false,
"is_rounded": false,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null
},
"cites": false
}
},
"brand": "swear",
"factory": "flaj",
"domain": null,
"sku": "teste2",
"shoe": "vyner",
"variant": null,
"shoe_query": "model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"shoe_url": "/config/customization?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"image_url": "/compose?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"minify_hash": "Mzk4NjU",
"image_hash": "Mzk4NjY",
"image_o_hash": "Mzk4Njc",
"top_hash": "Mzk4Njg",
"top_o_hash": "NDU0NTc",
"bottom_hash": "Mzk4NzA",
"bottom_o_hash": "NDU0NTg",
"back_hash": "Mzk4NzI",
"side_hash": "Mzk4NzM",
"structure": "{\"brand\": \"swear\", \"model\": \"vyner\", \"variant\": null, \"parts_m\": {\"front\": {\"material\": \"nappa\", \"color\": \"white\"}, \"hardware\": {\"material\": \"metal\", \"color\": \"silver\"}, \"laces\": {\"material\": \"nylon\", \"color\": \"white\"}, \"lining\": {\"material\": \"calf_lining\", \"color\": \"white\"}, \"side\": {\"material\": \"nappa\", \"color\": \"white\"}, \"sole\": {\"material\": \"rubber\", \"color\": \"white\"}, \"logo\": {\"material\": \"metal\", \"color\": \"silver\"}, \"shadow\": {\"material\": \"default\", \"color\": \"default\"}}, \"size\": 25, \"gender\": \"male\", \"parts\": [{\"material\": \"nappa\", \"color\": \"white\", \"name\": \"front\", \"hidden\": false, \"optional\": false}, {\"material\": \"nappa\", \"color\": \"white\", \"name\": \"side\", \"hidden\": false, \"optional\": false}, {\"material\": \"calf_lining\", \"color\": \"white\", \"name\": \"lining\", \"hidden\": false, \"optional\": false}, {\"material\": \"nylon\", \"color\": \"white\", \"name\": \"laces\", \"hidden\": false, \"optional\": false}, {\"material\": \"rubber\", \"color\": \"white\", \"name\": \"sole\", \"hidden\": false, \"optional\": false}, {\"material\": \"metal\", \"color\": \"silver\", \"name\": \"hardware\", \"hidden\": false, \"optional\": false}, {\"material\": \"metal\", \"color\": \"silver\", \"name\": \"logo\", \"hidden\": true, \"optional\": false}, {\"material\": \"default\", \"color\": \"default\", \"name\": \"shadow\", \"hidden\": true, \"optional\": false}], \"query\": \"model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default\", \"url\": \"/config/customization?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default\", \"image\": \"/compose?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default\", \"extras\": 0}",
"ff_id": null,
"ff_shoe_id": 12212972,
"ff_order_id": "e4830a6d-f5f1-436d-befb-177ebabb37d5",
"retail_id": "34f72caa-6cb0-435d-bf85-2ff64990443b",
"item_id": "e5ac2ace-c12c-44d6-a0f6-118713030e3f",
"delivery_time": 7,
"shipping_info": null,
"invoicing_info": null,
"invoice": {
"invoicer": "invoice_express",
"invoice_details": {
"finalize": false,
"series": "InMSE23",
"tax_exemption": "M16"
}
},
"transport": {
"courier": "ups",
"package": "envelope",
"weight": 1.5,
"weight_units": "kilograms",
"documents": [
"invoice",
"general-certificate"
],
"shipping_details": {
"service": "express",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
}
},
"transport_ready": false,
"tracking_number": null,
"tracking_url": null,
"return_tracking_number": null,
"return_tracking_url": null,
"pickup_number": null,
"proof_of_delivery_url": null,
"report_url_e": null,
"last_updated": 1704469982,
"last_update_touches": [],
"last_state_change": 1704469982,
"tag": null,
"states_names": [
"created",
"canceled"
],
"notes": [],
"issues": [],
"states": [
{
"_id": "659825de3e27f1c070aafca5",
"id": 330957,
"enabled": true,
"description": null,
"created": 1704469982,
"modified": 1704469982,
"meta": {},
"brand_t": null,
"retailer_t": null,
"vendor_t": null,
"name": "created",
"justification": "Order import",
"timestamp": 1704469982,
"email": "docs@platforme.com",
"account": {
"_id": "5c7e68794ce4e7006b5c71c8",
"id": 30,
"enabled": true,
"description": "",
"created": 1551788153,
"modified": 1704469982,
"meta": {},
"username": "docs",
"email": "docs@platforme.com",
"facebook_id": "",
"github_login": "",
"google_id": "",
"live_id": "",
"twitter_username": "",
"type": 1,
"last_login": 1704469982,
"roles": [],
"avatar_url": "https://ripe-core-sbx.platforme.com/admin/accounts/docs/avatar"
},
"chat": null,
"attachments": []
},
{
"_id": "659825de3e27f1c070aafcab",
"id": 330958,
"enabled": true,
"description": null,
"created": 1704469982,
"modified": 1704469982,
"meta": {},
"brand_t": null,
"retailer_t": null,
"vendor_t": null,
"name": "canceled",
"justification": null,
"timestamp": 1704469982,
"email": "docs@platforme.com",
"account": {
"_id": "5c7e68794ce4e7006b5c71c8",
"id": 30,
"enabled": true,
"description": "",
"created": 1551788153,
"modified": 1704469982,
"meta": {},
"username": "docs",
"email": "docs@platforme.com",
"facebook_id": "",
"github_login": "",
"google_id": "",
"live_id": "",
"twitter_username": "",
"type": 1,
"last_login": 1704469982,
"roles": [],
"avatar_url": "https://ripe-core-sbx.platforme.com/admin/accounts/docs/avatar"
},
"chat": null,
"attachments": []
}
],
"attachments": [],
"account": "docs@platforme.com",
"customer": null,
"ambassador": null,
"store": null,
"chat": null,
"number_s": "#320049",
"channel": "digital",
"delivery_d": 1705074782.0,
"scale": "it",
"size_scaled": 40.0,
"details": {
"brand": "swear",
"model": "vyner",
"variant": null,
"parts_m": {
"front": {
"material": "nappa",
"color": "white"
},
"hardware": {
"material": "metal",
"color": "silver"
},
"laces": {
"material": "nylon",
"color": "white"
},
"lining": {
"material": "calf_lining",
"color": "white"
},
"side": {
"material": "nappa",
"color": "white"
},
"sole": {
"material": "rubber",
"color": "white"
},
"logo": {
"material": "metal",
"color": "silver"
},
"shadow": {
"material": "default",
"color": "default"
}
},
"size": 25,
"gender": "male",
"parts": [
{
"material": "nappa",
"color": "white",
"name": "front",
"hidden": false,
"optional": false
},
{
"material": "nappa",
"color": "white",
"name": "side",
"hidden": false,
"optional": false
},
{
"material": "calf_lining",
"color": "white",
"name": "lining",
"hidden": false,
"optional": false
},
{
"material": "nylon",
"color": "white",
"name": "laces",
"hidden": false,
"optional": false
},
{
"material": "rubber",
"color": "white",
"name": "sole",
"hidden": false,
"optional": false
},
{
"material": "metal",
"color": "silver",
"name": "hardware",
"hidden": false,
"optional": false
},
{
"material": "metal",
"color": "silver",
"name": "logo",
"hidden": true,
"optional": false
},
{
"material": "default",
"color": "default",
"name": "shadow",
"hidden": true,
"optional": false
}
],
"query": "model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"url": "/config/customization?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"image": "/compose?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"extras": 0
}
}
Set the status of a specific order to 'canceled'. Returns the updated order.
Authentication credentials required.
HTTP Request
PUT https://ripe-core-sbx.platforme.com/api/orders/<number>/cancel
Header Fields
Field | Mandatory | Type | Default | Description |
---|---|---|---|---|
X-Secret-Key | yes | text | The X-Secret-Key to authenticate the request. |
Path Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
number | yes | numeric | Order's production number. |
Show Order Subscription
Example Request
curl "https://ripe-core-sbx.platforme.com/api/orders/4683/subscription" \
-H "X-Secret-Key: $RIPE_KEY"
Example Response
{
"subscribed": false
}
Checks if the logged in user (in session) is subscribed to events of a specific order. Authentication credentials required.
HTTP Request
GET https://ripe-core-sbx.platforme.com/api/orders/<number>/subscription
Header Fields
Field | Mandatory | Type | Default | Description |
---|---|---|---|---|
X-Secret-Key | yes | text | The X-Secret-Key to authenticate the request. |
Path Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
number | yes | numeric | Order's production number. |
Subscribe to Order
Example Request
curl -X PUT "https://ripe-core-sbx.platforme.com/api/orders/4683/subscription" \
-H "X-Secret-Key: $RIPE_KEY"
Example Response
{
"subscribed": true
}
Subscribes the logged in user (in session) to events of a specific order. Authentication credentials required.
HTTP Request
PUT https://ripe-core-sbx.platforme.com/api/orders/<number>/subscription
Header Fields
Field | Mandatory | Type | Default | Description |
---|---|---|---|---|
X-Secret-Key | yes | text | The X-Secret-Key to authenticate the request. |
Path Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
number | yes | numeric | Order's production number. |
Remove Order Subscription
Example Request
curl -X DELETE "https://ripe-core-sbx.platforme.com/api/orders/4683/subscription" \
-H "X-Secret-Key: $RIPE_KEY"
Example Response
{
"subscribed": false
}
Removes the subscription to events of a specific order for the logged in user (in session). Authentication credentials required.
HTTP Request
DELETE https://ripe-core-sbx.platforme.com/api/orders/<number>/subscription
Header Fields
Field | Mandatory | Type | Default | Description |
---|---|---|---|---|
X-Secret-Key | yes | text | The X-Secret-Key to authenticate the request. |
Path Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
number | yes | numeric | Order's production number. |
Set Meta
Example Request
curl -X PUT "https://ripe-core-sbx.platforme.com/api/orders/4683/meta" \
-H "X-Secret-Key: $RIPE_KEY" \
-d '{
"key":"flag",
"value":"true"
}'
Example Response
{
"_id": "659825e43e27f1c070aafcdc",
"id": 320053,
"number": 320053,
"enabled": true,
"description": "VYNER",
"created": 1704469988,
"modified": 1704469989,
"meta": {
"sku": "839e7f18-ab53-4c5a-b8a6-06c7ac4494c2",
"flag": "true"
},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": "flaj",
"quantity": 1,
"key": "d27407f8772721992e27b9ed293ef1cad1181c39",
"status": "created",
"status_index": 1,
"production_status": "unset",
"production": "produce",
"priority": null,
"type": "build",
"gender": "male",
"scale_s": null,
"currency": "USD",
"country": "US",
"price": 1574.13,
"prices": {
"components": {
"front": {
"rule_id": 27166,
"rule_count": 5,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [
"Nappa Leather"
],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"hardware": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"laces": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"lining": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"side": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [
"Nappa Leather"
],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"sole": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [
"Rubber"
],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"logo": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"shadow": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
}
},
"total": {
"price_final": 1574.13,
"price_taxes": 1326.67,
"vat": 0.0,
"ddp": 247.46,
"ddp_percent": 18.6528544,
"vat_rate": 0.0,
"price": 1326.67,
"currency": "USD",
"country": "US",
"hs_codes": [
6403999065
],
"hs_code_priority": 1,
"shipping": 0.0,
"notes": [
"Rubber",
"Nappa Leather"
],
"diag": {
"no_round": {
"price_final": 1574.13,
"price_taxes": 1326.67,
"price": 1326.67,
"vat": 0.0,
"ddp": 247.46
},
"patch": true,
"round_value": true,
"is_vat": false,
"is_ddp": true,
"is_european": false,
"is_rounded": false,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null
},
"cites": false
}
},
"brand": "swear",
"factory": "flaj",
"domain": null,
"sku": "teste2",
"shoe": "vyner",
"variant": null,
"shoe_query": "model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"shoe_url": "/config/customization?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"image_url": "/compose?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"minify_hash": "Mzk4NjU",
"image_hash": "Mzk4NjY",
"image_o_hash": "Mzk4Njc",
"top_hash": "Mzk4Njg",
"top_o_hash": "NDU0NTc",
"bottom_hash": "Mzk4NzA",
"bottom_o_hash": "NDU0NTg",
"back_hash": "Mzk4NzI",
"side_hash": "Mzk4NzM",
"structure": "{\"brand\": \"swear\", \"model\": \"vyner\", \"variant\": null, \"parts_m\": {\"front\": {\"material\": \"nappa\", \"color\": \"white\"}, \"hardware\": {\"material\": \"metal\", \"color\": \"silver\"}, \"laces\": {\"material\": \"nylon\", \"color\": \"white\"}, \"lining\": {\"material\": \"calf_lining\", \"color\": \"white\"}, \"side\": {\"material\": \"nappa\", \"color\": \"white\"}, \"sole\": {\"material\": \"rubber\", \"color\": \"white\"}, \"logo\": {\"material\": \"metal\", \"color\": \"silver\"}, \"shadow\": {\"material\": \"default\", \"color\": \"default\"}}, \"size\": 25, \"gender\": \"male\", \"parts\": [{\"material\": \"nappa\", \"color\": \"white\", \"name\": \"front\", \"hidden\": false, \"optional\": false}, {\"material\": \"nappa\", \"color\": \"white\", \"name\": \"side\", \"hidden\": false, \"optional\": false}, {\"material\": \"calf_lining\", \"color\": \"white\", \"name\": \"lining\", \"hidden\": false, \"optional\": false}, {\"material\": \"nylon\", \"color\": \"white\", \"name\": \"laces\", \"hidden\": false, \"optional\": false}, {\"material\": \"rubber\", \"color\": \"white\", \"name\": \"sole\", \"hidden\": false, \"optional\": false}, {\"material\": \"metal\", \"color\": \"silver\", \"name\": \"hardware\", \"hidden\": false, \"optional\": false}, {\"material\": \"metal\", \"color\": \"silver\", \"name\": \"logo\", \"hidden\": true, \"optional\": false}, {\"material\": \"default\", \"color\": \"default\", \"name\": \"shadow\", \"hidden\": true, \"optional\": false}], \"query\": \"model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default\", \"url\": \"/config/customization?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default\", \"image\": \"/compose?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default\", \"extras\": 0}",
"ff_id": null,
"ff_shoe_id": 12212972,
"ff_order_id": "40fa33ec-a1a7-409c-a055-88b7e18183ec",
"retail_id": "80f53fa5-0252-4244-a1ad-5384551f1fed",
"item_id": "ac117850-b464-4774-a5bb-eaa213a82c10",
"delivery_time": 7,
"shipping_info": null,
"invoicing_info": null,
"invoice": {
"invoicer": "invoice_express",
"invoice_details": {
"finalize": false,
"series": "InMSE23",
"tax_exemption": "M16"
}
},
"transport": {
"courier": "ups",
"package": "envelope",
"weight": 1.5,
"weight_units": "kilograms",
"documents": [
"invoice",
"general-certificate"
],
"shipping_details": {
"service": "express",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
}
},
"transport_ready": false,
"tracking_number": null,
"tracking_url": null,
"return_tracking_number": null,
"return_tracking_url": null,
"pickup_number": null,
"proof_of_delivery_url": null,
"report_url_e": null,
"last_updated": 1704469988,
"last_update_touches": [],
"last_state_change": 1704469988,
"tag": null,
"states_names": [
"created"
],
"notes": [],
"issues": [],
"states": [
{
"_id": "659825e43e27f1c070aafce0",
"id": 330962,
"enabled": true,
"description": null,
"created": 1704469988,
"modified": 1704469988,
"meta": {},
"brand_t": null,
"retailer_t": null,
"vendor_t": null,
"name": "created",
"justification": "Order import",
"timestamp": 1704469988,
"email": "docs@platforme.com",
"account": {
"_id": "5c7e68794ce4e7006b5c71c8",
"id": 30,
"enabled": true,
"description": "",
"created": 1551788153,
"modified": 1704469989,
"meta": {},
"username": "docs",
"email": "docs@platforme.com",
"facebook_id": "",
"github_login": "",
"google_id": "",
"live_id": "",
"twitter_username": "",
"type": 1,
"last_login": 1704469989,
"roles": [],
"avatar_url": "https://ripe-core-sbx.platforme.com/admin/accounts/docs/avatar"
},
"chat": null,
"attachments": []
}
],
"attachments": [],
"account": "docs@platforme.com",
"customer": null,
"ambassador": null,
"store": null,
"chat": null,
"number_s": "#320053",
"channel": "digital",
"delivery_d": 1705074788.0,
"scale": "it",
"size_scaled": 40.0,
"details": {
"brand": "swear",
"model": "vyner",
"variant": null,
"parts_m": {
"front": {
"material": "nappa",
"color": "white"
},
"hardware": {
"material": "metal",
"color": "silver"
},
"laces": {
"material": "nylon",
"color": "white"
},
"lining": {
"material": "calf_lining",
"color": "white"
},
"side": {
"material": "nappa",
"color": "white"
},
"sole": {
"material": "rubber",
"color": "white"
},
"logo": {
"material": "metal",
"color": "silver"
},
"shadow": {
"material": "default",
"color": "default"
}
},
"size": 25,
"gender": "male",
"parts": [
{
"material": "nappa",
"color": "white",
"name": "front",
"hidden": false,
"optional": false
},
{
"material": "nappa",
"color": "white",
"name": "side",
"hidden": false,
"optional": false
},
{
"material": "calf_lining",
"color": "white",
"name": "lining",
"hidden": false,
"optional": false
},
{
"material": "nylon",
"color": "white",
"name": "laces",
"hidden": false,
"optional": false
},
{
"material": "rubber",
"color": "white",
"name": "sole",
"hidden": false,
"optional": false
},
{
"material": "metal",
"color": "silver",
"name": "hardware",
"hidden": false,
"optional": false
},
{
"material": "metal",
"color": "silver",
"name": "logo",
"hidden": true,
"optional": false
},
{
"material": "default",
"color": "default",
"name": "shadow",
"hidden": true,
"optional": false
}
],
"query": "model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"url": "/config/customization?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"image": "/compose?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"extras": 0
}
}
Adds a meta field key-value pairs to a specific order. Authentication credentials required.
HTTP Request
PUT https://ripe-core-sbx.platforme.com/api/orders/<number>/meta
Header Fields
Field | Mandatory | Type | Default | Description |
---|---|---|---|---|
X-Secret-Key | yes | text | The X-Secret-Key to authenticate the request. |
Path Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
number | yes | numeric | Order's production number. |
POST Body
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
key | yes | text | The key of the meta field data. | |
value | yes | text | The value of the meta field data. |
Set Production Status
Example Request
curl -X PUT "https://ripe-core-sbx.platforme.com/api/orders/4683/production_status" \
-H "X-Secret-Key: $RIPE_KEY" \
-d '{
"status":"assembling"
}'
Example Response
{
"_id": "659825e6bb11325081aafd7e",
"id": 320054,
"number": 320054,
"enabled": true,
"description": "VYNER",
"created": 1704469990,
"modified": 1704469991,
"meta": {
"sku": "99089616-199a-441f-a162-cdef964e758e"
},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": "flaj",
"quantity": 1,
"key": "de3e999800359c17f839c10d74a4ce26a21f64fa",
"status": "created",
"status_index": 1,
"production_status": "assembling",
"production": "produce",
"priority": null,
"type": "build",
"gender": "male",
"scale_s": null,
"currency": "USD",
"country": "US",
"price": 1574.13,
"prices": {
"components": {
"front": {
"rule_id": 27166,
"rule_count": 5,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [
"Nappa Leather"
],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"hardware": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"laces": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"lining": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"side": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [
"Nappa Leather"
],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"sole": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [
"Rubber"
],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"logo": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"shadow": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
}
},
"total": {
"price_final": 1574.13,
"price_taxes": 1326.67,
"vat": 0.0,
"ddp": 247.46,
"ddp_percent": 18.6528544,
"vat_rate": 0.0,
"price": 1326.67,
"currency": "USD",
"country": "US",
"hs_codes": [
6403999065
],
"hs_code_priority": 1,
"shipping": 0.0,
"notes": [
"Rubber",
"Nappa Leather"
],
"diag": {
"no_round": {
"price_final": 1574.13,
"price_taxes": 1326.67,
"price": 1326.67,
"vat": 0.0,
"ddp": 247.46
},
"patch": true,
"round_value": true,
"is_vat": false,
"is_ddp": true,
"is_european": false,
"is_rounded": false,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null
},
"cites": false
}
},
"brand": "swear",
"factory": "flaj",
"domain": null,
"sku": "teste2",
"shoe": "vyner",
"variant": null,
"shoe_query": "model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"shoe_url": "/config/customization?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"image_url": "/compose?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"minify_hash": "Mzk4NjU",
"image_hash": "Mzk4NjY",
"image_o_hash": "Mzk4Njc",
"top_hash": "Mzk4Njg",
"top_o_hash": "NDU0NTc",
"bottom_hash": "Mzk4NzA",
"bottom_o_hash": "NDU0NTg",
"back_hash": "Mzk4NzI",
"side_hash": "Mzk4NzM",
"structure": "{\"brand\": \"swear\", \"model\": \"vyner\", \"variant\": null, \"parts_m\": {\"front\": {\"material\": \"nappa\", \"color\": \"white\"}, \"hardware\": {\"material\": \"metal\", \"color\": \"silver\"}, \"laces\": {\"material\": \"nylon\", \"color\": \"white\"}, \"lining\": {\"material\": \"calf_lining\", \"color\": \"white\"}, \"side\": {\"material\": \"nappa\", \"color\": \"white\"}, \"sole\": {\"material\": \"rubber\", \"color\": \"white\"}, \"logo\": {\"material\": \"metal\", \"color\": \"silver\"}, \"shadow\": {\"material\": \"default\", \"color\": \"default\"}}, \"size\": 25, \"gender\": \"male\", \"parts\": [{\"material\": \"nappa\", \"color\": \"white\", \"name\": \"front\", \"hidden\": false, \"optional\": false}, {\"material\": \"nappa\", \"color\": \"white\", \"name\": \"side\", \"hidden\": false, \"optional\": false}, {\"material\": \"calf_lining\", \"color\": \"white\", \"name\": \"lining\", \"hidden\": false, \"optional\": false}, {\"material\": \"nylon\", \"color\": \"white\", \"name\": \"laces\", \"hidden\": false, \"optional\": false}, {\"material\": \"rubber\", \"color\": \"white\", \"name\": \"sole\", \"hidden\": false, \"optional\": false}, {\"material\": \"metal\", \"color\": \"silver\", \"name\": \"hardware\", \"hidden\": false, \"optional\": false}, {\"material\": \"metal\", \"color\": \"silver\", \"name\": \"logo\", \"hidden\": true, \"optional\": false}, {\"material\": \"default\", \"color\": \"default\", \"name\": \"shadow\", \"hidden\": true, \"optional\": false}], \"query\": \"model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default\", \"url\": \"/config/customization?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default\", \"image\": \"/compose?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default\", \"extras\": 0}",
"ff_id": null,
"ff_shoe_id": 12212972,
"ff_order_id": "1c8b2387-6a6f-4683-93ea-f3f2adc6a5e0",
"retail_id": "bf61c094-8693-4b16-af27-f92dfd32abdb",
"item_id": "d0e2dde5-f8cb-417e-aa8a-5f9baedc502d",
"delivery_time": 7,
"shipping_info": null,
"invoicing_info": null,
"invoice": {
"invoicer": "invoice_express",
"invoice_details": {
"finalize": false,
"series": "InMSE23",
"tax_exemption": "M16"
}
},
"transport": {
"courier": "ups",
"package": "envelope",
"weight": 1.5,
"weight_units": "kilograms",
"documents": [
"invoice",
"general-certificate"
],
"shipping_details": {
"service": "express",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
}
},
"transport_ready": false,
"tracking_number": null,
"tracking_url": null,
"return_tracking_number": null,
"return_tracking_url": null,
"pickup_number": null,
"proof_of_delivery_url": null,
"report_url_e": null,
"last_updated": 1704469990,
"last_update_touches": [],
"last_state_change": 1704469990,
"tag": null,
"states_names": [
"created"
],
"notes": [],
"issues": [],
"states": [
{
"_id": "659825e6bb11325081aafd82",
"id": 330963,
"enabled": true,
"description": null,
"created": 1704469990,
"modified": 1704469990,
"meta": {},
"brand_t": null,
"retailer_t": null,
"vendor_t": null,
"name": "created",
"justification": "Order import",
"timestamp": 1704469990,
"email": "docs@platforme.com",
"account": {
"_id": "5c7e68794ce4e7006b5c71c8",
"id": 30,
"enabled": true,
"description": "",
"created": 1551788153,
"modified": 1704469991,
"meta": {},
"username": "docs",
"email": "docs@platforme.com",
"facebook_id": "",
"github_login": "",
"google_id": "",
"live_id": "",
"twitter_username": "",
"type": 1,
"last_login": 1704469991,
"roles": [],
"avatar_url": "https://ripe-core-sbx.platforme.com/admin/accounts/docs/avatar"
},
"chat": null,
"attachments": []
},
{
"_id": "659825e7bb11325081aafd88",
"id": 330964,
"enabled": true,
"description": null,
"created": 1704469991,
"modified": 1704469991,
"meta": {},
"brand_t": null,
"retailer_t": null,
"vendor_t": null,
"name": "assembling",
"justification": null,
"timestamp": 1704469991,
"email": "docs@platforme.com",
"account": {
"_id": "5c7e68794ce4e7006b5c71c8",
"id": 30,
"enabled": true,
"description": "",
"created": 1551788153,
"modified": 1704469991,
"meta": {},
"username": "docs",
"email": "docs@platforme.com",
"facebook_id": "",
"github_login": "",
"google_id": "",
"live_id": "",
"twitter_username": "",
"type": 1,
"last_login": 1704469991,
"roles": [],
"avatar_url": "https://ripe-core-sbx.platforme.com/admin/accounts/docs/avatar"
},
"chat": null,
"attachments": []
}
],
"attachments": [],
"account": "docs@platforme.com",
"customer": null,
"ambassador": null,
"store": null,
"chat": null,
"number_s": "#320054",
"channel": "digital",
"delivery_d": 1705074790.0,
"scale": "it",
"size_scaled": 40.0,
"details": {
"brand": "swear",
"model": "vyner",
"variant": null,
"parts_m": {
"front": {
"material": "nappa",
"color": "white"
},
"hardware": {
"material": "metal",
"color": "silver"
},
"laces": {
"material": "nylon",
"color": "white"
},
"lining": {
"material": "calf_lining",
"color": "white"
},
"side": {
"material": "nappa",
"color": "white"
},
"sole": {
"material": "rubber",
"color": "white"
},
"logo": {
"material": "metal",
"color": "silver"
},
"shadow": {
"material": "default",
"color": "default"
}
},
"size": 25,
"gender": "male",
"parts": [
{
"material": "nappa",
"color": "white",
"name": "front",
"hidden": false,
"optional": false
},
{
"material": "nappa",
"color": "white",
"name": "side",
"hidden": false,
"optional": false
},
{
"material": "calf_lining",
"color": "white",
"name": "lining",
"hidden": false,
"optional": false
},
{
"material": "nylon",
"color": "white",
"name": "laces",
"hidden": false,
"optional": false
},
{
"material": "rubber",
"color": "white",
"name": "sole",
"hidden": false,
"optional": false
},
{
"material": "metal",
"color": "silver",
"name": "hardware",
"hidden": false,
"optional": false
},
{
"material": "metal",
"color": "silver",
"name": "logo",
"hidden": true,
"optional": false
},
{
"material": "default",
"color": "default",
"name": "shadow",
"hidden": true,
"optional": false
}
],
"query": "model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"url": "/config/customization?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"image": "/compose?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"extras": 0
}
}
Updates the production status of a specific order. Authentication credentials required.
HTTP Request
PUT https://ripe-core-sbx.platforme.com/api/orders/<number>/production_status
Header Fields
Field | Mandatory | Type | Default | Description |
---|---|---|---|---|
X-Secret-Key | yes | text | The X-Secret-Key to authenticate the request. |
Path Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
number | yes | numeric | Order's production number. |
POST Body
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
status | no | text | null |
The production status of an order. Can be one of (unset , waiting , cutting , sewing , assembling , produced and canceled ). |
production_status | no | text | null |
The production status of an order. The same as status . |
Set Priority
Example Request
curl -X PUT "https://ripe-core-sbx.platforme.com/api/orders/4683/priority" \
-H "X-Secret-Key: $RIPE_KEY" \
-d '{
"priority":"1"
}'
Example Response
{
"_id": "659825e8bb11325081aafd8e",
"id": 320055,
"number": 320055,
"enabled": true,
"description": "VYNER",
"created": 1704469992,
"modified": 1704469992,
"meta": {
"sku": "a82c748f-7ac8-4c27-877a-ec6770be8cef"
},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": "flaj",
"quantity": 1,
"key": "9fc838cbc41b4b269bf2700286939ae31a57948e",
"status": "created",
"status_index": 1,
"production_status": "unset",
"production": "produce",
"priority": 1,
"type": "build",
"gender": "male",
"scale_s": null,
"currency": "USD",
"country": "US",
"price": 1574.13,
"prices": {
"components": {
"front": {
"rule_id": 27166,
"rule_count": 5,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [
"Nappa Leather"
],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"hardware": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"laces": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"lining": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"side": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [
"Nappa Leather"
],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"sole": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [
"Rubber"
],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"logo": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"shadow": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
}
},
"total": {
"price_final": 1574.13,
"price_taxes": 1326.67,
"vat": 0.0,
"ddp": 247.46,
"ddp_percent": 18.6528544,
"vat_rate": 0.0,
"price": 1326.67,
"currency": "USD",
"country": "US",
"hs_codes": [
6403999065
],
"hs_code_priority": 1,
"shipping": 0.0,
"notes": [
"Rubber",
"Nappa Leather"
],
"diag": {
"no_round": {
"price_final": 1574.13,
"price_taxes": 1326.67,
"price": 1326.67,
"vat": 0.0,
"ddp": 247.46
},
"patch": true,
"round_value": true,
"is_vat": false,
"is_ddp": true,
"is_european": false,
"is_rounded": false,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null
},
"cites": false
}
},
"brand": "swear",
"factory": "flaj",
"domain": null,
"sku": "teste2",
"shoe": "vyner",
"variant": null,
"shoe_query": "model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"shoe_url": "/config/customization?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"image_url": "/compose?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"minify_hash": "Mzk4NjU",
"image_hash": "Mzk4NjY",
"image_o_hash": "Mzk4Njc",
"top_hash": "Mzk4Njg",
"top_o_hash": "NDU0NTc",
"bottom_hash": "Mzk4NzA",
"bottom_o_hash": "NDU0NTg",
"back_hash": "Mzk4NzI",
"side_hash": "Mzk4NzM",
"structure": "{\"brand\": \"swear\", \"model\": \"vyner\", \"variant\": null, \"parts_m\": {\"front\": {\"material\": \"nappa\", \"color\": \"white\"}, \"hardware\": {\"material\": \"metal\", \"color\": \"silver\"}, \"laces\": {\"material\": \"nylon\", \"color\": \"white\"}, \"lining\": {\"material\": \"calf_lining\", \"color\": \"white\"}, \"side\": {\"material\": \"nappa\", \"color\": \"white\"}, \"sole\": {\"material\": \"rubber\", \"color\": \"white\"}, \"logo\": {\"material\": \"metal\", \"color\": \"silver\"}, \"shadow\": {\"material\": \"default\", \"color\": \"default\"}}, \"size\": 25, \"gender\": \"male\", \"parts\": [{\"material\": \"nappa\", \"color\": \"white\", \"name\": \"front\", \"hidden\": false, \"optional\": false}, {\"material\": \"nappa\", \"color\": \"white\", \"name\": \"side\", \"hidden\": false, \"optional\": false}, {\"material\": \"calf_lining\", \"color\": \"white\", \"name\": \"lining\", \"hidden\": false, \"optional\": false}, {\"material\": \"nylon\", \"color\": \"white\", \"name\": \"laces\", \"hidden\": false, \"optional\": false}, {\"material\": \"rubber\", \"color\": \"white\", \"name\": \"sole\", \"hidden\": false, \"optional\": false}, {\"material\": \"metal\", \"color\": \"silver\", \"name\": \"hardware\", \"hidden\": false, \"optional\": false}, {\"material\": \"metal\", \"color\": \"silver\", \"name\": \"logo\", \"hidden\": true, \"optional\": false}, {\"material\": \"default\", \"color\": \"default\", \"name\": \"shadow\", \"hidden\": true, \"optional\": false}], \"query\": \"model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default\", \"url\": \"/config/customization?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default\", \"image\": \"/compose?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default\", \"extras\": 0}",
"ff_id": null,
"ff_shoe_id": 12212972,
"ff_order_id": "84a33f2d-9428-4be7-9cf4-bd650dd43152",
"retail_id": "661477ce-fea9-447f-81b8-ba8ed5d8e421",
"item_id": "a3b4794d-8bc8-485c-b524-6cf7a1bf0598",
"delivery_time": 7,
"shipping_info": null,
"invoicing_info": null,
"invoice": {
"invoicer": "invoice_express",
"invoice_details": {
"finalize": false,
"series": "InMSE23",
"tax_exemption": "M16"
}
},
"transport": {
"courier": "ups",
"package": "envelope",
"weight": 1.5,
"weight_units": "kilograms",
"documents": [
"invoice",
"general-certificate"
],
"shipping_details": {
"service": "express",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
}
},
"transport_ready": false,
"tracking_number": null,
"tracking_url": null,
"return_tracking_number": null,
"return_tracking_url": null,
"pickup_number": null,
"proof_of_delivery_url": null,
"report_url_e": null,
"last_updated": 1704469992,
"last_update_touches": [],
"last_state_change": 1704469992,
"tag": null,
"states_names": [
"created"
],
"notes": [],
"issues": [],
"states": [
{
"_id": "659825e8bb11325081aafd92",
"id": 330965,
"enabled": true,
"description": null,
"created": 1704469992,
"modified": 1704469992,
"meta": {},
"brand_t": null,
"retailer_t": null,
"vendor_t": null,
"name": "created",
"justification": "Order import",
"timestamp": 1704469992,
"email": "docs@platforme.com",
"account": {
"_id": "5c7e68794ce4e7006b5c71c8",
"id": 30,
"enabled": true,
"description": "",
"created": 1551788153,
"modified": 1704469992,
"meta": {},
"username": "docs",
"email": "docs@platforme.com",
"facebook_id": "",
"github_login": "",
"google_id": "",
"live_id": "",
"twitter_username": "",
"type": 1,
"last_login": 1704469992,
"roles": [],
"avatar_url": "https://ripe-core-sbx.platforme.com/admin/accounts/docs/avatar"
},
"chat": null,
"attachments": []
}
],
"attachments": [],
"account": "docs@platforme.com",
"customer": null,
"ambassador": null,
"store": null,
"chat": null,
"number_s": "#320055",
"channel": "digital",
"delivery_d": 1705074792.0,
"scale": "it",
"size_scaled": 40.0,
"details": {
"brand": "swear",
"model": "vyner",
"variant": null,
"parts_m": {
"front": {
"material": "nappa",
"color": "white"
},
"hardware": {
"material": "metal",
"color": "silver"
},
"laces": {
"material": "nylon",
"color": "white"
},
"lining": {
"material": "calf_lining",
"color": "white"
},
"side": {
"material": "nappa",
"color": "white"
},
"sole": {
"material": "rubber",
"color": "white"
},
"logo": {
"material": "metal",
"color": "silver"
},
"shadow": {
"material": "default",
"color": "default"
}
},
"size": 25,
"gender": "male",
"parts": [
{
"material": "nappa",
"color": "white",
"name": "front",
"hidden": false,
"optional": false
},
{
"material": "nappa",
"color": "white",
"name": "side",
"hidden": false,
"optional": false
},
{
"material": "calf_lining",
"color": "white",
"name": "lining",
"hidden": false,
"optional": false
},
{
"material": "nylon",
"color": "white",
"name": "laces",
"hidden": false,
"optional": false
},
{
"material": "rubber",
"color": "white",
"name": "sole",
"hidden": false,
"optional": false
},
{
"material": "metal",
"color": "silver",
"name": "hardware",
"hidden": false,
"optional": false
},
{
"material": "metal",
"color": "silver",
"name": "logo",
"hidden": true,
"optional": false
},
{
"material": "default",
"color": "default",
"name": "shadow",
"hidden": true,
"optional": false
}
],
"query": "model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"url": "/config/customization?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"image": "/compose?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"extras": 0
}
}
Sets the priority of a specific order. A higher value means it should be produced before items with a lower value. Authentication credentials required.
HTTP Request
PUT https://ripe-core-sbx.platforme.com/api/orders/<number>/priority
Header Fields
Field | Mandatory | Type | Default | Description |
---|---|---|---|---|
X-Secret-Key | yes | text | The X-Secret-Key to authenticate the request. |
Path Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
number | yes | numeric | Order's production number. |
GET Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
priority | no | numeric | null |
The level of prioritization to be applied to this order during production, where a higher value means it should be produced before items with a lower value. |
Set Tracking
Example Request
curl -X PUT "https://ripe-core-sbx.platforme.com/api/orders/4683/tracking" \
-H "X-Secret-Key: $RIPE_KEY" \
-d tracking_number="1" \
-d tracking_url="https://platforme.com"
Example Response
{
"_id": "659825e9290df525c7aaf3f3",
"id": 320056,
"number": 320056,
"enabled": true,
"description": "VYNER",
"created": 1704469993,
"modified": 1704469994,
"meta": {
"sku": "17360549-e4b4-40db-84e6-7a383307d3d7"
},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": "flaj",
"quantity": 1,
"key": "bbb4b966efb673b15be5ee91e36fefcbfcc248d2",
"status": "created",
"status_index": 1,
"production_status": "unset",
"production": "produce",
"priority": null,
"type": "build",
"gender": "male",
"scale_s": null,
"currency": "USD",
"country": "US",
"price": 1574.13,
"prices": {
"components": {
"front": {
"rule_id": 27166,
"rule_count": 5,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [
"Nappa Leather"
],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"hardware": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"laces": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"lining": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"side": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [
"Nappa Leather"
],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"sole": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [
"Rubber"
],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"logo": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"shadow": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
}
},
"total": {
"price_final": 1574.13,
"price_taxes": 1326.67,
"vat": 0.0,
"ddp": 247.46,
"ddp_percent": 18.6528544,
"vat_rate": 0.0,
"price": 1326.67,
"currency": "USD",
"country": "US",
"hs_codes": [
6403999065
],
"hs_code_priority": 1,
"shipping": 0.0,
"notes": [
"Rubber",
"Nappa Leather"
],
"diag": {
"no_round": {
"price_final": 1574.13,
"price_taxes": 1326.67,
"price": 1326.67,
"vat": 0.0,
"ddp": 247.46
},
"patch": true,
"round_value": true,
"is_vat": false,
"is_ddp": true,
"is_european": false,
"is_rounded": false,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null
},
"cites": false
}
},
"brand": "swear",
"factory": "flaj",
"domain": null,
"sku": "teste2",
"shoe": "vyner",
"variant": null,
"shoe_query": "model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"shoe_url": "/config/customization?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"image_url": "/compose?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"minify_hash": "Mzk4NjU",
"image_hash": "Mzk4NjY",
"image_o_hash": "Mzk4Njc",
"top_hash": "Mzk4Njg",
"top_o_hash": "NDU0NTc",
"bottom_hash": "Mzk4NzA",
"bottom_o_hash": "NDU0NTg",
"back_hash": "Mzk4NzI",
"side_hash": "Mzk4NzM",
"structure": "{\"brand\": \"swear\", \"model\": \"vyner\", \"variant\": null, \"parts_m\": {\"front\": {\"material\": \"nappa\", \"color\": \"white\"}, \"hardware\": {\"material\": \"metal\", \"color\": \"silver\"}, \"laces\": {\"material\": \"nylon\", \"color\": \"white\"}, \"lining\": {\"material\": \"calf_lining\", \"color\": \"white\"}, \"side\": {\"material\": \"nappa\", \"color\": \"white\"}, \"sole\": {\"material\": \"rubber\", \"color\": \"white\"}, \"logo\": {\"material\": \"metal\", \"color\": \"silver\"}, \"shadow\": {\"material\": \"default\", \"color\": \"default\"}}, \"size\": 25, \"gender\": \"male\", \"parts\": [{\"material\": \"nappa\", \"color\": \"white\", \"name\": \"front\", \"hidden\": false, \"optional\": false}, {\"material\": \"nappa\", \"color\": \"white\", \"name\": \"side\", \"hidden\": false, \"optional\": false}, {\"material\": \"calf_lining\", \"color\": \"white\", \"name\": \"lining\", \"hidden\": false, \"optional\": false}, {\"material\": \"nylon\", \"color\": \"white\", \"name\": \"laces\", \"hidden\": false, \"optional\": false}, {\"material\": \"rubber\", \"color\": \"white\", \"name\": \"sole\", \"hidden\": false, \"optional\": false}, {\"material\": \"metal\", \"color\": \"silver\", \"name\": \"hardware\", \"hidden\": false, \"optional\": false}, {\"material\": \"metal\", \"color\": \"silver\", \"name\": \"logo\", \"hidden\": true, \"optional\": false}, {\"material\": \"default\", \"color\": \"default\", \"name\": \"shadow\", \"hidden\": true, \"optional\": false}], \"query\": \"model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default\", \"url\": \"/config/customization?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default\", \"image\": \"/compose?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default\", \"extras\": 0}",
"ff_id": null,
"ff_shoe_id": 12212972,
"ff_order_id": "41387abd-1986-4e26-b365-6013f90bdc71",
"retail_id": "68aae63e-8ec6-48d5-96b4-a4e5bb650a87",
"item_id": "1141060a-fc34-41a4-b2f5-1f46f4a5ed07",
"delivery_time": 7,
"shipping_info": null,
"invoicing_info": null,
"invoice": {
"invoicer": "invoice_express",
"invoice_details": {
"finalize": false,
"series": "InMSE23",
"tax_exemption": "M16"
}
},
"transport": {
"courier": "ups",
"package": "envelope",
"weight": 1.5,
"weight_units": "kilograms",
"documents": [
"invoice",
"general-certificate"
],
"shipping_details": {
"service": "express",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
}
},
"transport_ready": false,
"tracking_number": "1",
"tracking_url": "https://platforme.com",
"return_tracking_number": null,
"return_tracking_url": null,
"pickup_number": null,
"proof_of_delivery_url": null,
"report_url_e": null,
"last_updated": 1704469993,
"last_update_touches": [],
"last_state_change": 1704469993,
"tag": null,
"states_names": [
"created"
],
"notes": [],
"issues": [],
"states": [
{
"_id": "659825e9290df525c7aaf3f7",
"id": 330966,
"enabled": true,
"description": null,
"created": 1704469993,
"modified": 1704469993,
"meta": {},
"brand_t": null,
"retailer_t": null,
"vendor_t": null,
"name": "created",
"justification": "Order import",
"timestamp": 1704469993,
"email": "docs@platforme.com",
"account": {
"_id": "5c7e68794ce4e7006b5c71c8",
"id": 30,
"enabled": true,
"description": "",
"created": 1551788153,
"modified": 1704469994,
"meta": {},
"username": "docs",
"email": "docs@platforme.com",
"facebook_id": "",
"github_login": "",
"google_id": "",
"live_id": "",
"twitter_username": "",
"type": 1,
"last_login": 1704469994,
"roles": [],
"avatar_url": "https://ripe-core-sbx.platforme.com/admin/accounts/docs/avatar"
},
"chat": null,
"attachments": []
}
],
"attachments": [],
"account": "docs@platforme.com",
"customer": null,
"ambassador": null,
"store": null,
"chat": null,
"number_s": "#320056",
"channel": "digital",
"delivery_d": 1705074793.0,
"scale": "it",
"size_scaled": 40.0,
"details": {
"brand": "swear",
"model": "vyner",
"variant": null,
"parts_m": {
"front": {
"material": "nappa",
"color": "white"
},
"hardware": {
"material": "metal",
"color": "silver"
},
"laces": {
"material": "nylon",
"color": "white"
},
"lining": {
"material": "calf_lining",
"color": "white"
},
"side": {
"material": "nappa",
"color": "white"
},
"sole": {
"material": "rubber",
"color": "white"
},
"logo": {
"material": "metal",
"color": "silver"
},
"shadow": {
"material": "default",
"color": "default"
}
},
"size": 25,
"gender": "male",
"parts": [
{
"material": "nappa",
"color": "white",
"name": "front",
"hidden": false,
"optional": false
},
{
"material": "nappa",
"color": "white",
"name": "side",
"hidden": false,
"optional": false
},
{
"material": "calf_lining",
"color": "white",
"name": "lining",
"hidden": false,
"optional": false
},
{
"material": "nylon",
"color": "white",
"name": "laces",
"hidden": false,
"optional": false
},
{
"material": "rubber",
"color": "white",
"name": "sole",
"hidden": false,
"optional": false
},
{
"material": "metal",
"color": "silver",
"name": "hardware",
"hidden": false,
"optional": false
},
{
"material": "metal",
"color": "silver",
"name": "logo",
"hidden": true,
"optional": false
},
{
"material": "default",
"color": "default",
"name": "shadow",
"hidden": true,
"optional": false
}
],
"query": "model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"url": "/config/customization?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"image": "/compose?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"extras": 0
}
}
Sets the tracking number and URL used to track the transport operation of a specific order. Authentication credentials required.
HTTP Request
PUT https://ripe-core-sbx.platforme.com/api/orders/<number>/tracking
Header Fields
Field | Mandatory | Type | Default | Description |
---|---|---|---|---|
X-Secret-Key | yes | text | The X-Secret-Key to authenticate the request. |
Path Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
number | yes | numeric | Order's production number. |
GET Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
tracking_number | no | text | null |
The tracking number that can be used to track the transport operation associated with the order. |
tracking_url | no | text | null |
The tracking URL that can be used to view the transport operation information associated with the order. |
Set Return Tracking
Example Request
curl -X PUT "https://ripe-core-sbx.platforme.com/api/orders/4683/return_tracking" \
-H "X-Secret-Key: $RIPE_KEY" \
-d return_tracking_number="1" \
-d return_tracking_url="https://platforme.com"
Example Response
{
"_id": "659825ebbb11325081aafd98",
"id": 320057,
"number": 320057,
"enabled": true,
"description": "VYNER",
"created": 1704469995,
"modified": 1704469996,
"meta": {
"sku": "2ef16b15-5230-4dc1-aca6-73ced3ee58c0"
},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": "flaj",
"quantity": 1,
"key": "9c8eff023c18f35a460bad7f36b683459d0ffb55",
"status": "created",
"status_index": 1,
"production_status": "unset",
"production": "produce",
"priority": null,
"type": "build",
"gender": "male",
"scale_s": null,
"currency": "USD",
"country": "US",
"price": 1574.13,
"prices": {
"components": {
"front": {
"rule_id": 27166,
"rule_count": 5,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [
"Nappa Leather"
],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"hardware": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"laces": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"lining": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"side": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [
"Nappa Leather"
],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"sole": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [
"Rubber"
],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"logo": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"shadow": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
}
},
"total": {
"price_final": 1574.13,
"price_taxes": 1326.67,
"vat": 0.0,
"ddp": 247.46,
"ddp_percent": 18.6528544,
"vat_rate": 0.0,
"price": 1326.67,
"currency": "USD",
"country": "US",
"hs_codes": [
6403999065
],
"hs_code_priority": 1,
"shipping": 0.0,
"notes": [
"Rubber",
"Nappa Leather"
],
"diag": {
"no_round": {
"price_final": 1574.13,
"price_taxes": 1326.67,
"price": 1326.67,
"vat": 0.0,
"ddp": 247.46
},
"patch": true,
"round_value": true,
"is_vat": false,
"is_ddp": true,
"is_european": false,
"is_rounded": false,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null
},
"cites": false
}
},
"brand": "swear",
"factory": "flaj",
"domain": null,
"sku": "teste2",
"shoe": "vyner",
"variant": null,
"shoe_query": "model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"shoe_url": "/config/customization?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"image_url": "/compose?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"minify_hash": "Mzk4NjU",
"image_hash": "Mzk4NjY",
"image_o_hash": "Mzk4Njc",
"top_hash": "Mzk4Njg",
"top_o_hash": "NDU0NTc",
"bottom_hash": "Mzk4NzA",
"bottom_o_hash": "NDU0NTg",
"back_hash": "Mzk4NzI",
"side_hash": "Mzk4NzM",
"structure": "{\"brand\": \"swear\", \"model\": \"vyner\", \"variant\": null, \"parts_m\": {\"front\": {\"material\": \"nappa\", \"color\": \"white\"}, \"hardware\": {\"material\": \"metal\", \"color\": \"silver\"}, \"laces\": {\"material\": \"nylon\", \"color\": \"white\"}, \"lining\": {\"material\": \"calf_lining\", \"color\": \"white\"}, \"side\": {\"material\": \"nappa\", \"color\": \"white\"}, \"sole\": {\"material\": \"rubber\", \"color\": \"white\"}, \"logo\": {\"material\": \"metal\", \"color\": \"silver\"}, \"shadow\": {\"material\": \"default\", \"color\": \"default\"}}, \"size\": 25, \"gender\": \"male\", \"parts\": [{\"material\": \"nappa\", \"color\": \"white\", \"name\": \"front\", \"hidden\": false, \"optional\": false}, {\"material\": \"nappa\", \"color\": \"white\", \"name\": \"side\", \"hidden\": false, \"optional\": false}, {\"material\": \"calf_lining\", \"color\": \"white\", \"name\": \"lining\", \"hidden\": false, \"optional\": false}, {\"material\": \"nylon\", \"color\": \"white\", \"name\": \"laces\", \"hidden\": false, \"optional\": false}, {\"material\": \"rubber\", \"color\": \"white\", \"name\": \"sole\", \"hidden\": false, \"optional\": false}, {\"material\": \"metal\", \"color\": \"silver\", \"name\": \"hardware\", \"hidden\": false, \"optional\": false}, {\"material\": \"metal\", \"color\": \"silver\", \"name\": \"logo\", \"hidden\": true, \"optional\": false}, {\"material\": \"default\", \"color\": \"default\", \"name\": \"shadow\", \"hidden\": true, \"optional\": false}], \"query\": \"model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default\", \"url\": \"/config/customization?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default\", \"image\": \"/compose?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default\", \"extras\": 0}",
"ff_id": null,
"ff_shoe_id": 12212972,
"ff_order_id": "4d4fdcaa-23b0-41e2-a336-9b731b61e4fd",
"retail_id": "a0255c7f-4073-4f5c-8afd-5d1d0ec43e4f",
"item_id": "929f66f5-74e7-4def-9cfd-5ea980eb3a37",
"delivery_time": 7,
"shipping_info": null,
"invoicing_info": null,
"invoice": {
"invoicer": "invoice_express",
"invoice_details": {
"finalize": false,
"series": "InMSE23",
"tax_exemption": "M16"
}
},
"transport": {
"courier": "ups",
"package": "envelope",
"weight": 1.5,
"weight_units": "kilograms",
"documents": [
"invoice",
"general-certificate"
],
"shipping_details": {
"service": "express",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
}
},
"transport_ready": false,
"tracking_number": null,
"tracking_url": null,
"return_tracking_number": "1",
"return_tracking_url": "https://platforme.com",
"pickup_number": null,
"proof_of_delivery_url": null,
"report_url_e": null,
"last_updated": 1704469995,
"last_update_touches": [],
"last_state_change": 1704469995,
"tag": null,
"states_names": [
"created"
],
"notes": [],
"issues": [],
"states": [
{
"_id": "659825ebbb11325081aafd9c",
"id": 330967,
"enabled": true,
"description": null,
"created": 1704469995,
"modified": 1704469995,
"meta": {},
"brand_t": null,
"retailer_t": null,
"vendor_t": null,
"name": "created",
"justification": "Order import",
"timestamp": 1704469995,
"email": "docs@platforme.com",
"account": {
"_id": "5c7e68794ce4e7006b5c71c8",
"id": 30,
"enabled": true,
"description": "",
"created": 1551788153,
"modified": 1704469996,
"meta": {},
"username": "docs",
"email": "docs@platforme.com",
"facebook_id": "",
"github_login": "",
"google_id": "",
"live_id": "",
"twitter_username": "",
"type": 1,
"last_login": 1704469996,
"roles": [],
"avatar_url": "https://ripe-core-sbx.platforme.com/admin/accounts/docs/avatar"
},
"chat": null,
"attachments": []
}
],
"attachments": [],
"account": "docs@platforme.com",
"customer": null,
"ambassador": null,
"store": null,
"chat": null,
"number_s": "#320057",
"channel": "digital",
"delivery_d": 1705074795.0,
"scale": "it",
"size_scaled": 40.0,
"details": {
"brand": "swear",
"model": "vyner",
"variant": null,
"parts_m": {
"front": {
"material": "nappa",
"color": "white"
},
"hardware": {
"material": "metal",
"color": "silver"
},
"laces": {
"material": "nylon",
"color": "white"
},
"lining": {
"material": "calf_lining",
"color": "white"
},
"side": {
"material": "nappa",
"color": "white"
},
"sole": {
"material": "rubber",
"color": "white"
},
"logo": {
"material": "metal",
"color": "silver"
},
"shadow": {
"material": "default",
"color": "default"
}
},
"size": 25,
"gender": "male",
"parts": [
{
"material": "nappa",
"color": "white",
"name": "front",
"hidden": false,
"optional": false
},
{
"material": "nappa",
"color": "white",
"name": "side",
"hidden": false,
"optional": false
},
{
"material": "calf_lining",
"color": "white",
"name": "lining",
"hidden": false,
"optional": false
},
{
"material": "nylon",
"color": "white",
"name": "laces",
"hidden": false,
"optional": false
},
{
"material": "rubber",
"color": "white",
"name": "sole",
"hidden": false,
"optional": false
},
{
"material": "metal",
"color": "silver",
"name": "hardware",
"hidden": false,
"optional": false
},
{
"material": "metal",
"color": "silver",
"name": "logo",
"hidden": true,
"optional": false
},
{
"material": "default",
"color": "default",
"name": "shadow",
"hidden": true,
"optional": false
}
],
"query": "model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"url": "/config/customization?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"image": "/compose?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"extras": 0
}
}
Sets the return tracking number and URL used to track the transport operation associated with the return of a specific order. Authentication credentials required.
HTTP Request
PUT https://ripe-core-sbx.platforme.com/api/orders/<number>/return_tracking
Header Fields
Field | Mandatory | Type | Default | Description |
---|---|---|---|---|
X-Secret-Key | yes | text | The X-Secret-Key to authenticate the request. |
Path Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
number | yes | numeric | Order's production number. |
GET Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
return_tracking_number | no | text | null |
The return tracking number that can be used to track the return transport operation associated with the order. |
return_tracking_url | no | text | null |
The return tracking URL that can be used to view the return transport operation information associated with the order. |
Set Proof of Delivery
Example Request
curl -X PUT "https://ripe-core-sbx.platforme.com/api/orders/4683/proof_of_delivery" \
-H "X-Secret-Key: $RIPE_KEY" \
-d proof_of_delivery_url="https://platforme.com"
Example Response
{
"_id": "659825edbb11325081aafda6",
"id": 320058,
"number": 320058,
"enabled": true,
"description": "VYNER",
"created": 1704469997,
"modified": 1704469997,
"meta": {
"sku": "3fff0685-3537-40d3-9fec-121d588905bc"
},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": "flaj",
"quantity": 1,
"key": "3243feede93e39b6647b37aafa81b46087c55ec6",
"status": "created",
"status_index": 1,
"production_status": "unset",
"production": "produce",
"priority": null,
"type": "build",
"gender": "male",
"scale_s": null,
"currency": "USD",
"country": "US",
"price": 1574.13,
"prices": {
"components": {
"front": {
"rule_id": 27166,
"rule_count": 5,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [
"Nappa Leather"
],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"hardware": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"laces": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"lining": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"side": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [
"Nappa Leather"
],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"sole": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [
"Rubber"
],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"logo": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"shadow": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
}
},
"total": {
"price_final": 1574.13,
"price_taxes": 1326.67,
"vat": 0.0,
"ddp": 247.46,
"ddp_percent": 18.6528544,
"vat_rate": 0.0,
"price": 1326.67,
"currency": "USD",
"country": "US",
"hs_codes": [
6403999065
],
"hs_code_priority": 1,
"shipping": 0.0,
"notes": [
"Rubber",
"Nappa Leather"
],
"diag": {
"no_round": {
"price_final": 1574.13,
"price_taxes": 1326.67,
"price": 1326.67,
"vat": 0.0,
"ddp": 247.46
},
"patch": true,
"round_value": true,
"is_vat": false,
"is_ddp": true,
"is_european": false,
"is_rounded": false,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null
},
"cites": false
}
},
"brand": "swear",
"factory": "flaj",
"domain": null,
"sku": "teste2",
"shoe": "vyner",
"variant": null,
"shoe_query": "model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"shoe_url": "/config/customization?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"image_url": "/compose?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"minify_hash": "Mzk4NjU",
"image_hash": "Mzk4NjY",
"image_o_hash": "Mzk4Njc",
"top_hash": "Mzk4Njg",
"top_o_hash": "NDU0NTc",
"bottom_hash": "Mzk4NzA",
"bottom_o_hash": "NDU0NTg",
"back_hash": "Mzk4NzI",
"side_hash": "Mzk4NzM",
"structure": "{\"brand\": \"swear\", \"model\": \"vyner\", \"variant\": null, \"parts_m\": {\"front\": {\"material\": \"nappa\", \"color\": \"white\"}, \"hardware\": {\"material\": \"metal\", \"color\": \"silver\"}, \"laces\": {\"material\": \"nylon\", \"color\": \"white\"}, \"lining\": {\"material\": \"calf_lining\", \"color\": \"white\"}, \"side\": {\"material\": \"nappa\", \"color\": \"white\"}, \"sole\": {\"material\": \"rubber\", \"color\": \"white\"}, \"logo\": {\"material\": \"metal\", \"color\": \"silver\"}, \"shadow\": {\"material\": \"default\", \"color\": \"default\"}}, \"size\": 25, \"gender\": \"male\", \"parts\": [{\"material\": \"nappa\", \"color\": \"white\", \"name\": \"front\", \"hidden\": false, \"optional\": false}, {\"material\": \"nappa\", \"color\": \"white\", \"name\": \"side\", \"hidden\": false, \"optional\": false}, {\"material\": \"calf_lining\", \"color\": \"white\", \"name\": \"lining\", \"hidden\": false, \"optional\": false}, {\"material\": \"nylon\", \"color\": \"white\", \"name\": \"laces\", \"hidden\": false, \"optional\": false}, {\"material\": \"rubber\", \"color\": \"white\", \"name\": \"sole\", \"hidden\": false, \"optional\": false}, {\"material\": \"metal\", \"color\": \"silver\", \"name\": \"hardware\", \"hidden\": false, \"optional\": false}, {\"material\": \"metal\", \"color\": \"silver\", \"name\": \"logo\", \"hidden\": true, \"optional\": false}, {\"material\": \"default\", \"color\": \"default\", \"name\": \"shadow\", \"hidden\": true, \"optional\": false}], \"query\": \"model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default\", \"url\": \"/config/customization?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default\", \"image\": \"/compose?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default\", \"extras\": 0}",
"ff_id": null,
"ff_shoe_id": 12212972,
"ff_order_id": "477f6b40-ea1b-4bd3-a3f1-46dd21989189",
"retail_id": "7963ca36-877a-4715-80c6-ac1a672ba427",
"item_id": "76dc680a-0b9a-4a03-b118-75c3092edf96",
"delivery_time": 7,
"shipping_info": null,
"invoicing_info": null,
"invoice": {
"invoicer": "invoice_express",
"invoice_details": {
"finalize": false,
"series": "InMSE23",
"tax_exemption": "M16"
}
},
"transport": {
"courier": "ups",
"package": "envelope",
"weight": 1.5,
"weight_units": "kilograms",
"documents": [
"invoice",
"general-certificate"
],
"shipping_details": {
"service": "express",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
}
},
"transport_ready": false,
"tracking_number": null,
"tracking_url": null,
"return_tracking_number": null,
"return_tracking_url": null,
"pickup_number": null,
"proof_of_delivery_url": "https://platforme.com",
"report_url_e": null,
"last_updated": 1704469997,
"last_update_touches": [],
"last_state_change": 1704469997,
"tag": null,
"states_names": [
"created"
],
"notes": [],
"issues": [],
"states": [
{
"_id": "659825edbb11325081aafdaa",
"id": 330968,
"enabled": true,
"description": null,
"created": 1704469997,
"modified": 1704469997,
"meta": {},
"brand_t": null,
"retailer_t": null,
"vendor_t": null,
"name": "created",
"justification": "Order import",
"timestamp": 1704469997,
"email": "docs@platforme.com",
"account": {
"_id": "5c7e68794ce4e7006b5c71c8",
"id": 30,
"enabled": true,
"description": "",
"created": 1551788153,
"modified": 1704469997,
"meta": {},
"username": "docs",
"email": "docs@platforme.com",
"facebook_id": "",
"github_login": "",
"google_id": "",
"live_id": "",
"twitter_username": "",
"type": 1,
"last_login": 1704469997,
"roles": [],
"avatar_url": "https://ripe-core-sbx.platforme.com/admin/accounts/docs/avatar"
},
"chat": null,
"attachments": []
}
],
"attachments": [],
"account": "docs@platforme.com",
"customer": null,
"ambassador": null,
"store": null,
"chat": null,
"number_s": "#320058",
"channel": "digital",
"delivery_d": 1705074797.0,
"scale": "it",
"size_scaled": 40.0,
"details": {
"brand": "swear",
"model": "vyner",
"variant": null,
"parts_m": {
"front": {
"material": "nappa",
"color": "white"
},
"hardware": {
"material": "metal",
"color": "silver"
},
"laces": {
"material": "nylon",
"color": "white"
},
"lining": {
"material": "calf_lining",
"color": "white"
},
"side": {
"material": "nappa",
"color": "white"
},
"sole": {
"material": "rubber",
"color": "white"
},
"logo": {
"material": "metal",
"color": "silver"
},
"shadow": {
"material": "default",
"color": "default"
}
},
"size": 25,
"gender": "male",
"parts": [
{
"material": "nappa",
"color": "white",
"name": "front",
"hidden": false,
"optional": false
},
{
"material": "nappa",
"color": "white",
"name": "side",
"hidden": false,
"optional": false
},
{
"material": "calf_lining",
"color": "white",
"name": "lining",
"hidden": false,
"optional": false
},
{
"material": "nylon",
"color": "white",
"name": "laces",
"hidden": false,
"optional": false
},
{
"material": "rubber",
"color": "white",
"name": "sole",
"hidden": false,
"optional": false
},
{
"material": "metal",
"color": "silver",
"name": "hardware",
"hidden": false,
"optional": false
},
{
"material": "metal",
"color": "silver",
"name": "logo",
"hidden": true,
"optional": false
},
{
"material": "default",
"color": "default",
"name": "shadow",
"hidden": true,
"optional": false
}
],
"query": "model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"url": "/config/customization?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"image": "/compose?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"extras": 0
}
}
Sets the URL for the proof of delivery document of a specific order. Authentication credentials required.
HTTP Request
PUT https://ripe-core-sbx.platforme.com/api/orders/<number>/proof_of_delivery
Header Fields
Field | Mandatory | Type | Default | Description |
---|---|---|---|---|
X-Secret-Key | yes | text | The X-Secret-Key to authenticate the request. |
Path Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
number | yes | numeric | Order's production number. |
GET Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
proof_of_delivery_url | no | text | null |
The URL for the proof of delivery associated with the order. |
Update Tag
Example Request
curl -X PUT "https://ripe-core-sbx.platforme.com/api/orders/4683/tag" \
-H "X-Secret-Key: $RIPE_KEY" \
-d identifier="12345" \
-d type="un1qnx" \
-d activate=0
Example Response
{
"_id": "659825ee996e33ea91aaf4ac",
"id": 320059,
"number": 320059,
"enabled": true,
"description": "VYNER",
"created": 1704469998,
"modified": 1704469999,
"meta": {
"sku": "4352ec5f-bfc9-4ba9-a007-72a67b8d63f5"
},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": "flaj",
"quantity": 1,
"key": "1f1cc6e2a3e3ea0d1cc1c9d23c6a323f00a8471b",
"status": "created",
"status_index": 1,
"production_status": "unset",
"production": "produce",
"priority": null,
"type": "build",
"gender": "male",
"scale_s": null,
"currency": "USD",
"country": "US",
"price": 1574.13,
"prices": {
"components": {
"front": {
"rule_id": 27166,
"rule_count": 5,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [
"Nappa Leather"
],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"hardware": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"laces": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"lining": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"side": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [
"Nappa Leather"
],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"sole": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [
"Rubber"
],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"logo": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"shadow": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
}
},
"total": {
"price_final": 1574.13,
"price_taxes": 1326.67,
"vat": 0.0,
"ddp": 247.46,
"ddp_percent": 18.6528544,
"vat_rate": 0.0,
"price": 1326.67,
"currency": "USD",
"country": "US",
"hs_codes": [
6403999065
],
"hs_code_priority": 1,
"shipping": 0.0,
"notes": [
"Rubber",
"Nappa Leather"
],
"diag": {
"no_round": {
"price_final": 1574.13,
"price_taxes": 1326.67,
"price": 1326.67,
"vat": 0.0,
"ddp": 247.46
},
"patch": true,
"round_value": true,
"is_vat": false,
"is_ddp": true,
"is_european": false,
"is_rounded": false,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null
},
"cites": false
}
},
"brand": "swear",
"factory": "flaj",
"domain": null,
"sku": "teste2",
"shoe": "vyner",
"variant": null,
"shoe_query": "model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"shoe_url": "/config/customization?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"image_url": "/compose?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"minify_hash": "Mzk4NjU",
"image_hash": "Mzk4NjY",
"image_o_hash": "Mzk4Njc",
"top_hash": "Mzk4Njg",
"top_o_hash": "NDU0NTc",
"bottom_hash": "Mzk4NzA",
"bottom_o_hash": "NDU0NTg",
"back_hash": "Mzk4NzI",
"side_hash": "Mzk4NzM",
"structure": "{\"brand\": \"swear\", \"model\": \"vyner\", \"variant\": null, \"parts_m\": {\"front\": {\"material\": \"nappa\", \"color\": \"white\"}, \"hardware\": {\"material\": \"metal\", \"color\": \"silver\"}, \"laces\": {\"material\": \"nylon\", \"color\": \"white\"}, \"lining\": {\"material\": \"calf_lining\", \"color\": \"white\"}, \"side\": {\"material\": \"nappa\", \"color\": \"white\"}, \"sole\": {\"material\": \"rubber\", \"color\": \"white\"}, \"logo\": {\"material\": \"metal\", \"color\": \"silver\"}, \"shadow\": {\"material\": \"default\", \"color\": \"default\"}}, \"size\": 25, \"gender\": \"male\", \"parts\": [{\"material\": \"nappa\", \"color\": \"white\", \"name\": \"front\", \"hidden\": false, \"optional\": false}, {\"material\": \"nappa\", \"color\": \"white\", \"name\": \"side\", \"hidden\": false, \"optional\": false}, {\"material\": \"calf_lining\", \"color\": \"white\", \"name\": \"lining\", \"hidden\": false, \"optional\": false}, {\"material\": \"nylon\", \"color\": \"white\", \"name\": \"laces\", \"hidden\": false, \"optional\": false}, {\"material\": \"rubber\", \"color\": \"white\", \"name\": \"sole\", \"hidden\": false, \"optional\": false}, {\"material\": \"metal\", \"color\": \"silver\", \"name\": \"hardware\", \"hidden\": false, \"optional\": false}, {\"material\": \"metal\", \"color\": \"silver\", \"name\": \"logo\", \"hidden\": true, \"optional\": false}, {\"material\": \"default\", \"color\": \"default\", \"name\": \"shadow\", \"hidden\": true, \"optional\": false}], \"query\": \"model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default\", \"url\": \"/config/customization?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default\", \"image\": \"/compose?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default\", \"extras\": 0}",
"ff_id": null,
"ff_shoe_id": 12212972,
"ff_order_id": "9476bded-1a74-4f28-816b-0083603e70cf",
"retail_id": "4a4300a0-fedc-4bdc-be9c-d46074a0b0e5",
"item_id": "5d55a8a9-83c2-45e3-8c6d-0871a7fffc29",
"delivery_time": 7,
"shipping_info": null,
"invoicing_info": null,
"invoice": {
"invoicer": "invoice_express",
"invoice_details": {
"finalize": false,
"series": "InMSE23",
"tax_exemption": "M16"
}
},
"transport": {
"courier": "ups",
"package": "envelope",
"weight": 1.5,
"weight_units": "kilograms",
"documents": [
"invoice",
"general-certificate"
],
"shipping_details": {
"service": "express",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
}
},
"transport_ready": false,
"tracking_number": null,
"tracking_url": null,
"return_tracking_number": null,
"return_tracking_url": null,
"pickup_number": null,
"proof_of_delivery_url": null,
"report_url_e": null,
"last_updated": 1704469998,
"last_update_touches": [],
"last_state_change": 1704469998,
"tag": "un1qnx:12345",
"states_names": [
"created"
],
"notes": [],
"issues": [],
"states": [
{
"_id": "659825ee996e33ea91aaf4b0",
"id": 330969,
"enabled": true,
"description": null,
"created": 1704469998,
"modified": 1704469998,
"meta": {},
"brand_t": null,
"retailer_t": null,
"vendor_t": null,
"name": "created",
"justification": "Order import",
"timestamp": 1704469998,
"email": "docs@platforme.com",
"account": {
"_id": "5c7e68794ce4e7006b5c71c8",
"id": 30,
"enabled": true,
"description": "",
"created": 1551788153,
"modified": 1704469999,
"meta": {},
"username": "docs",
"email": "docs@platforme.com",
"facebook_id": "",
"github_login": "",
"google_id": "",
"live_id": "",
"twitter_username": "",
"type": 1,
"last_login": 1704469999,
"roles": [],
"avatar_url": "https://ripe-core-sbx.platforme.com/admin/accounts/docs/avatar"
},
"chat": null,
"attachments": []
}
],
"attachments": [],
"account": "docs@platforme.com",
"customer": null,
"ambassador": null,
"store": null,
"chat": null,
"number_s": "#320059",
"channel": "digital",
"delivery_d": 1705074798.0,
"scale": "it",
"size_scaled": 40.0,
"details": {
"brand": "swear",
"model": "vyner",
"variant": null,
"parts_m": {
"front": {
"material": "nappa",
"color": "white"
},
"hardware": {
"material": "metal",
"color": "silver"
},
"laces": {
"material": "nylon",
"color": "white"
},
"lining": {
"material": "calf_lining",
"color": "white"
},
"side": {
"material": "nappa",
"color": "white"
},
"sole": {
"material": "rubber",
"color": "white"
},
"logo": {
"material": "metal",
"color": "silver"
},
"shadow": {
"material": "default",
"color": "default"
}
},
"size": 25,
"gender": "male",
"parts": [
{
"material": "nappa",
"color": "white",
"name": "front",
"hidden": false,
"optional": false
},
{
"material": "nappa",
"color": "white",
"name": "side",
"hidden": false,
"optional": false
},
{
"material": "calf_lining",
"color": "white",
"name": "lining",
"hidden": false,
"optional": false
},
{
"material": "nylon",
"color": "white",
"name": "laces",
"hidden": false,
"optional": false
},
{
"material": "rubber",
"color": "white",
"name": "sole",
"hidden": false,
"optional": false
},
{
"material": "metal",
"color": "silver",
"name": "hardware",
"hidden": false,
"optional": false
},
{
"material": "metal",
"color": "silver",
"name": "logo",
"hidden": true,
"optional": false
},
{
"material": "default",
"color": "default",
"name": "shadow",
"hidden": true,
"optional": false
}
],
"query": "model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"url": "/config/customization?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"image": "/compose?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"extras": 0
}
}
Assigns a tag to a specific order and possibly activates it. Authentication credentials required.
HTTP Request
PUT https://ripe-core-sbx.platforme.com/api/orders/<number>/tag
Header Fields
Field | Mandatory | Type | Default | Description |
---|---|---|---|---|
X-Secret-Key | yes | text | The X-Secret-Key to authenticate the request. |
Path Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
number | yes | numeric | Order's production number. |
GET Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
identifier | yes | text | The tag identifier associated with the order. | |
type | yes | text | The type of tag, which can indicate the vendor of the tag. | |
activate | no | boolean | true |
If true, the activation of tag will be made on the vendor side, if necessary. |
Activate Tag
Example Request
curl -X PUT "https://ripe-core-sbx.platforme.com/api/orders/4683/tag/activate" \
-H "X-Secret-Key: $RIPE_KEY"
Example Response
{
"_id": "659825f0152d4ad638aaf5c4",
"id": 320060,
"number": 320060,
"enabled": true,
"description": "VYNER",
"created": 1704470000,
"modified": 1704470000,
"meta": {
"sku": "edffc9e1-1b3c-4e82-a757-b627c5a30a6d"
},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": "flaj",
"quantity": 1,
"key": "467402bc967369895f1c2b7094907b2b6d08bc61",
"status": "created",
"status_index": 1,
"production_status": "unset",
"production": "produce",
"priority": null,
"type": "build",
"gender": "male",
"scale_s": null,
"currency": "USD",
"country": "US",
"price": 1574.13,
"prices": {
"components": {
"front": {
"rule_id": 27166,
"rule_count": 5,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [
"Nappa Leather"
],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"hardware": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"laces": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"lining": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"side": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [
"Nappa Leather"
],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"sole": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [
"Rubber"
],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"logo": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
},
"shadow": {
"rule_id": 27168,
"rule_count": 1,
"price_taxes": 199.0,
"vat": 33.17,
"vat_rate": 20.0,
"price": 165.83,
"currency": "USD",
"hs_code": 6403999065,
"notes": [],
"hs_code_priority": 1,
"price_original": 199.0,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null,
"cites": false
}
},
"total": {
"price_final": 1574.13,
"price_taxes": 1326.67,
"vat": 0.0,
"ddp": 247.46,
"ddp_percent": 18.6528544,
"vat_rate": 0.0,
"price": 1326.67,
"currency": "USD",
"country": "US",
"hs_codes": [
6403999065
],
"hs_code_priority": 1,
"shipping": 0.0,
"notes": [
"Rubber",
"Nappa Leather"
],
"diag": {
"no_round": {
"price_final": 1574.13,
"price_taxes": 1326.67,
"price": 1326.67,
"vat": 0.0,
"ddp": 247.46
},
"patch": true,
"round_value": true,
"is_vat": false,
"is_ddp": true,
"is_european": false,
"is_rounded": false,
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"base_country": "EU",
"base_currency": "EUR",
"exchanged": null
},
"cites": false
}
},
"brand": "swear",
"factory": "flaj",
"domain": null,
"sku": "teste2",
"shoe": "vyner",
"variant": null,
"shoe_query": "model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"shoe_url": "/config/customization?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"image_url": "/compose?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"minify_hash": "Mzk4NjU",
"image_hash": "Mzk4NjY",
"image_o_hash": "Mzk4Njc",
"top_hash": "Mzk4Njg",
"top_o_hash": "NDU0NTc",
"bottom_hash": "Mzk4NzA",
"bottom_o_hash": "NDU0NTg",
"back_hash": "Mzk4NzI",
"side_hash": "Mzk4NzM",
"structure": "{\"brand\": \"swear\", \"model\": \"vyner\", \"variant\": null, \"parts_m\": {\"front\": {\"material\": \"nappa\", \"color\": \"white\"}, \"hardware\": {\"material\": \"metal\", \"color\": \"silver\"}, \"laces\": {\"material\": \"nylon\", \"color\": \"white\"}, \"lining\": {\"material\": \"calf_lining\", \"color\": \"white\"}, \"side\": {\"material\": \"nappa\", \"color\": \"white\"}, \"sole\": {\"material\": \"rubber\", \"color\": \"white\"}, \"logo\": {\"material\": \"metal\", \"color\": \"silver\"}, \"shadow\": {\"material\": \"default\", \"color\": \"default\"}}, \"size\": 25, \"gender\": \"male\", \"parts\": [{\"material\": \"nappa\", \"color\": \"white\", \"name\": \"front\", \"hidden\": false, \"optional\": false}, {\"material\": \"nappa\", \"color\": \"white\", \"name\": \"side\", \"hidden\": false, \"optional\": false}, {\"material\": \"calf_lining\", \"color\": \"white\", \"name\": \"lining\", \"hidden\": false, \"optional\": false}, {\"material\": \"nylon\", \"color\": \"white\", \"name\": \"laces\", \"hidden\": false, \"optional\": false}, {\"material\": \"rubber\", \"color\": \"white\", \"name\": \"sole\", \"hidden\": false, \"optional\": false}, {\"material\": \"metal\", \"color\": \"silver\", \"name\": \"hardware\", \"hidden\": false, \"optional\": false}, {\"material\": \"metal\", \"color\": \"silver\", \"name\": \"logo\", \"hidden\": true, \"optional\": false}, {\"material\": \"default\", \"color\": \"default\", \"name\": \"shadow\", \"hidden\": true, \"optional\": false}], \"query\": \"model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default\", \"url\": \"/config/customization?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default\", \"image\": \"/compose?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default\", \"extras\": 0}",
"ff_id": null,
"ff_shoe_id": 12212972,
"ff_order_id": "02c0b34c-61aa-4cc4-8e4a-e06cf24cd2fe",
"retail_id": "3b2a1255-6d4d-40c9-85dc-e1dfb00a2812",
"item_id": "9c2340a0-27b0-49d4-8b5c-ae25772f20f4",
"delivery_time": 7,
"shipping_info": null,
"invoicing_info": null,
"invoice": {
"invoicer": "invoice_express",
"invoice_details": {
"finalize": false,
"series": "InMSE23",
"tax_exemption": "M16"
}
},
"transport": {
"courier": "ups",
"package": "envelope",
"weight": 1.5,
"weight_units": "kilograms",
"documents": [
"invoice",
"general-certificate"
],
"shipping_details": {
"service": "express",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
}
},
"transport_ready": false,
"tracking_number": null,
"tracking_url": null,
"return_tracking_number": null,
"return_tracking_url": null,
"pickup_number": null,
"proof_of_delivery_url": null,
"report_url_e": null,
"last_updated": 1704470000,
"last_update_touches": [],
"last_state_change": 1704470000,
"tag": null,
"states_names": [
"created"
],
"notes": [],
"issues": [],
"states": [
{
"_id": "659825f0152d4ad638aaf5c8",
"id": 330970,
"enabled": true,
"description": null,
"created": 1704470000,
"modified": 1704470000,
"meta": {},
"brand_t": null,
"retailer_t": null,
"vendor_t": null,
"name": "created",
"justification": "Order import",
"timestamp": 1704470000,
"email": "docs@platforme.com",
"account": {
"_id": "5c7e68794ce4e7006b5c71c8",
"id": 30,
"enabled": true,
"description": "",
"created": 1551788153,
"modified": 1704470000,
"meta": {},
"username": "docs",
"email": "docs@platforme.com",
"facebook_id": "",
"github_login": "",
"google_id": "",
"live_id": "",
"twitter_username": "",
"type": 1,
"last_login": 1704470000,
"roles": [],
"avatar_url": "https://ripe-core-sbx.platforme.com/admin/accounts/docs/avatar"
},
"chat": null,
"attachments": []
}
],
"attachments": [],
"account": "docs@platforme.com",
"customer": null,
"ambassador": null,
"store": null,
"chat": null,
"number_s": "#320060",
"channel": "digital",
"delivery_d": 1705074800.0,
"scale": "it",
"size_scaled": 40.0,
"details": {
"brand": "swear",
"model": "vyner",
"variant": null,
"parts_m": {
"front": {
"material": "nappa",
"color": "white"
},
"hardware": {
"material": "metal",
"color": "silver"
},
"laces": {
"material": "nylon",
"color": "white"
},
"lining": {
"material": "calf_lining",
"color": "white"
},
"side": {
"material": "nappa",
"color": "white"
},
"sole": {
"material": "rubber",
"color": "white"
},
"logo": {
"material": "metal",
"color": "silver"
},
"shadow": {
"material": "default",
"color": "default"
}
},
"size": 25,
"gender": "male",
"parts": [
{
"material": "nappa",
"color": "white",
"name": "front",
"hidden": false,
"optional": false
},
{
"material": "nappa",
"color": "white",
"name": "side",
"hidden": false,
"optional": false
},
{
"material": "calf_lining",
"color": "white",
"name": "lining",
"hidden": false,
"optional": false
},
{
"material": "nylon",
"color": "white",
"name": "laces",
"hidden": false,
"optional": false
},
{
"material": "rubber",
"color": "white",
"name": "sole",
"hidden": false,
"optional": false
},
{
"material": "metal",
"color": "silver",
"name": "hardware",
"hidden": false,
"optional": false
},
{
"material": "metal",
"color": "silver",
"name": "logo",
"hidden": true,
"optional": false
},
{
"material": "default",
"color": "default",
"name": "shadow",
"hidden": true,
"optional": false
}
],
"query": "model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"url": "/config/customization?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"image": "/compose?model=vyner&brand=swear&p=front:nappa:white&p=side:nappa:white&p=lining:calf_lining:white&p=laces:nylon:white&p=sole:rubber:white&p=hardware:metal:silver&p=logo:metal:silver&p=shadow:default:default",
"extras": 0
}
}
Activates a tag linked to a specific order. Authentication credentials required.
HTTP Request
PUT https://ripe-core-sbx.platforme.com/api/orders/<number>/tag/activate
Header Fields
Field | Mandatory | Type | Default | Description |
---|---|---|---|---|
X-Secret-Key | yes | text | The X-Secret-Key to authenticate the request. |
Path Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
number | yes | numeric | Order's production number. |
Resources
Order
Field | Type | Description |
---|---|---|
id | number | Order production identifier. |
key | number | Order production key identifier. |
number | number | Order production number. |
number_s | text | Order production number in text format. |
ff_order_id | number | Order production's related order sales identifier. |
shoe_url | text | Canonical customization URL. |
states | list of states | List of states that the order production has gone through. |
shoe | text | Model name. |
ff_id | text | The concrete identifier of the model that represents the entry point for a specific customization of a product (customization alias). |
ff_shoe_id | text | The model identifier of the base shoe that is used for the order production. |
image_url | text | URL to a rendered order's model image. |
image_hash | text | Minified URL to a rendered order's model image. |
image_o_hash | text | Minified URL to a rendered overlayed order's model image. |
side_hash | text | Minified URL to a rendered order's model side view image. |
back_hash | text | Minified URL to a rendered order's model back view image. |
top_hash | text | Minified URL to a rendered order's model top view image. |
top_o_hash | text | Minified URL to a rendered overlayed order's model top view image. |
bottom_hash | text | Minified URL to a rendered order's model bottom view image. |
bottom_o_hash | text | Minified URL to a rendered overlayed order's model bottom view image. |
minify_hash | text | Minified version of the canonical customization URL. |
production | text | Kind of production strategy (one of "produce", "prototype", "reference"). |
store | text | The store from which this order was generated, this is only populated in case the a store is defined for the source of the order. |
status | text | Order production's status (one of pending, created, production, ready, sent, received, returned, canceled). |
account | text | System account responsible for the handling of the production order. |
ambassador | text | In case it's set, defines the ambassador to which this production order belongs. |
customer | text | Reference to the account of the customer (or an employee representing him) to which this order belongs. |
gender | text | Order production's model gender. |
country | text | Order production's product country destination. |
currency | text | Currency used to calculate the price. |
meta | dictionary | Complementary order production data. |
price | number | Order's production customization cost price. |
prices | dictionary | Order's production structured price information (see Price Component). |
shoe_query | text | Canonical customization query. |
tracking_number | text | Shipping tracking number. |
tracking_url | text | URL to the Postal Service shipping information page. |
structure | text | Structured information about the order's production (JSON encoded data.). |
details | dictionary | Structured information about the order's production (contents of structure parsed). |
created | date time | Date when the order production was initially created. |
modified | date time | The date and time of the latest modification operation. |
Metadata
The meta
field of an Order can be unstructured, but it can contain some structure information, which is documented in the table below.
Field | Mandatory | Type | Default | Description |
---|---|---|---|---|
item_price | no | text | null |
Price of the order's item, with taxes. If the order has quantity > 1, this price is of only one item. |
item_discount | no | text | null |
The discount amount applied to the order's item price. |
item_tax | no | text | null |
The tax amount present in the order's item price. There can be several instances of the item_tax_* fields (i.e. item_tax_1 ), one for each tax applied to the item. |
item_tax_name | no | text | null |
The tax name applied to the order's item price. There can be several instances of the item_tax_name_* fields (i.e. item_tax_name_1 ), one for each tax applied to the item. |
item_rax_rate | no | text | null |
The tax percentage applied to the order's item price. There can be several instances of the item_tax_rate_* fields (i.e. item_tax_rate_1 ), one for each tax applied to the item. |
sale_shipping | no | text | null |
The price of the shipping of the sales order, can include taxes if taxes_included is truthy. |
sale_shipping_taxes | no | text | null |
The price of the shipping of the sales order with taxes included. Can be the same as the sale_shipping , if taxes_included is truthy. |
sale_shipping_tax_rate | no | text | null |
The tax percentage applied to the shipping price of the sales order. |
sale_price | no | text | null |
Total price of the sales order that contains this order. This amount can contain the price of not only the item of the order but also from other orders that belong to the same sales order. |
sale_price_taxes | no | text | null |
Total price of the sales order that contains this order, with taxes included. |
sale_discount | no | text | null |
The discount amount applied to the sales order. |
sale_tax | no | text | null |
The tax amount present in the sales order. There can be several instances of the sale_tax_* fields (i.e. sale_tax_1 ), one for each tax applied to the sales order. |
sale_tax_name | no | text | null |
The tax name applied to the sales order. There can be several instances of the sale_tax_name_* fields (i.e. sale_tax_name_1 ), one for each tax applied to the sales order. |
sale_tax_rate | no | text | null |
The tax percentage applied to the sales order. There can be several instances of the sale_tax_rate_* fields (i.e. sale_tax_rate_1 ), one for each tax applied to the sales order. |
taxes_included | no | text | null |
If the prices mentioned include taxes. Values can be 1 or 0 (in text). |
Bulk Order Endpoints
List
The list endpoint returns the existing bulk orders according to the given parameters. If no parameters are given, it will be returned 10 bulk orders the user has permissions to access. A user only has permission to access and modify data related to him, meaning that he can only access data from the brands he is responsible for.
Query support can be consulted here.
Example Request
curl "https://ripe-core-sbx.platforme.com/api/bulk_orders?filters[]=shoe:eq:vyner" \
-H "X-Secret-Key: $RIPE_KEY"
Example Response
[]
HTTP Request
GET https://ripe-core-sbx.platforme.com/api/bulk_orders
Parameters
This request receives 2 parameters: filter_operator
and filters
. If filters
is defined but not filter_operator
, its default value will be $and
.
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
filter_operator | no | text | $and |
The logic operator that unites all the options given in filters . |
filters | no | text | null |
The filters that will be applied to the invoice rules query. Must have the structure <parameter>:<operator>:<value> . More than one filter can be given to the query, and their application together is based on the filter_operator given. |
Filter Operator Values
Value | Description |
---|---|
$and | The results given must comply with all the filters. |
$or | The results given must comply with at least on of the filters. |
Filters Parameters
Field | Mandatory | Type | Default | Description |
---|---|---|---|---|
id | no | numeric | null |
Bulk order production identifier. |
number | no | numeric | null |
Bulk order production number. |
name | no | text | null |
The name of the bulk order, should describe the bulk order using natural language. |
brand | no | text | null |
The brand that better represents the contents of this bulk order. |
status | no | text | null |
Bulk order production's status (one of pending, created, production, ready, sent, received, returned, canceled). |
status_index | no | numeric | null |
The index of the current status of the bulk order on the order processing process. |
orders | no | array | null |
The sequence of orders that are associated with the bulk of orders. |
delivery_date | no | date time | null |
The date until which the bulk order must be delivered. |
created | no | date time | null |
Date when the bulk order production was initially created. |
modified | no | date time | null |
The date and time of the latest modification operation. |
Header Fields
Field | Mandatory | Type | Default | Description |
---|---|---|---|---|
X-Secret-Key | yes | text | The X-Secret-Key to authenticate the request. |
Create
Creates a bulk order for the given list of orders. If the provided orders do not exist, an error is returned.
Example Request
curl -s -X POST \
"https://ripe-core-sbx.platforme.com/api/bulk_orders" \
-H "Content-Type: application/json" \
-H "X-Secret-Key: $RIPE_KEY" \
-d '{
"name":"bulk_order_swear",
"brand": "swear",
"orders": [1]
}'
Example Response
{
"_id": "659825f23e27f1c070aafce6",
"id": 2089,
"number": 2089,
"name": "bulk_order_swear",
"brand": "swear",
"orders": [
320061
],
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"factory": null,
"status": "created",
"status_index": 1,
"created": 1704470002,
"modified": 1704470002,
"delivery_date": 1705074802
}
HTTP Request
POST https://ripe-core-sbx.platforme.com/api/bulk_orders
Header Fields
Field | Mandatory | Type | Default | Description |
---|---|---|---|---|
X-Secret-Key | yes | text | The X-Secret-Key to authenticate the request. |
POST Body
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
name | yes | text | The name of the bulk order, should describe the bulk order using natural language. | |
brand | no | text | null |
The brand that better represents the contents of this bulk order. |
orders | yes | array | The sequence of orders that are associated with the bulk of orders. |
Show
Returns the invoice with the given ID. If the user does not have permissions to access the rule's brand, returns a Not Found Exception (404) error.
Example Request
curl "https://ripe-core-sbx.platforme.com/api/bulk_orders/1" \
-H "X-Secret-Key: $RIPE_KEY"
Example Response
{
"_id": "659825f4996e33ea91aaf4b6",
"id": 2090,
"number": 2090,
"name": "bulk_order_swear",
"brand": "swear",
"orders": [
320062
],
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"factory": null,
"status": "created",
"status_index": 1,
"created": 1704470004,
"modified": 1704470004,
"delivery_date": 1705074803
}
HTTP Request
GET https://ripe-core-sbx.platforme.com/api/bulk_orders/<int:number>
Path Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
number | yes | numeric | The bulk order's number. |
Update
Updates the bulk order with the given number.
Example Request
curl -s -X PUT \
"https://ripe-core-sbx.platforme.com/api/bulk_orders/1" \
-H "Content-Type: application/json" \
-H "X-Secret-Key: $RIPE_KEY" \
-d '{
"name": "bulk_order_revised"
}'
Example Response
{
"_id": "659825f5ed44d3f74baaf8aa",
"id": 2091,
"number": 2091,
"name": "bulk_order_revised",
"brand": "swear",
"orders": [
320063
],
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"factory": null,
"status": "created",
"status_index": 1,
"created": 1704470005,
"modified": 1704470006,
"delivery_date": 1705074805
}
HTTP Request
PUT https://ripe-core-sbx.platforme.com/api/bulk_orders/<int:number>
Header Fields
Field | Mandatory | Type | Default | Description |
---|---|---|---|---|
X-Secret-Key | yes | text | The X-Secret-Key to authenticate the request. |
Path Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
number | yes | numeric | The bulk order's number. |
POST Body
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
name | no | text | null |
The name of the bulk order, should describe the bulk order using natural language. |
brand | no | text | null |
The brand that better represents the contents of this bulk order. |
status | no | text | null |
The bulk order production's status (one of pending, created, production, ready, sent, received, returned, canceled).. |
orders | no | array | null |
The sequence of orders that are associated with the bulk of orders. |
Delete
Deletes the bulk order with the given number.
Example Request
curl -s -X DELETE "https://ripe-core-sbx.platforme.com/api/bulk_orders/1" \
-H "X-Secret-Key: $RIPE_KEY"
Example Response
{
"result": "success"
}
HTTP Request
DELETE https://ripe-core-sbx.platforme.com/api/bulk_orders/<int:number>
Header Fields
Field | Mandatory | Type | Default | Description |
---|---|---|---|---|
X-Secret-Key | yes | text | The X-Secret-Key to authenticate the request. |
Path Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
number | yes | numeric | The bulk order's number. |
Create (status)
Example Request
curl -s -X PUT "https://ripe-core-sbx.platforme.com/api/bulk_orders/1/create" \
-H "X-Secret-Key: $RIPE_KEY"
Example Response
{
"_id": "659825f9152d4ad638aaf5f7",
"id": 2093,
"number": 2093,
"name": "bulk_order_swear",
"brand": "swear",
"orders": [
320065
],
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"factory": null,
"status": "created",
"status_index": 1,
"created": 1704470009,
"modified": 1704470009,
"delivery_date": 1705074808
}
Set the status of a specific bulk order to 'created'. Returns the updated bulk order.
Authentication credentials required.
HTTP Request
PUT https://ripe-core-sbx.platforme.com/api/bulk_orders/<number>/create
Header Fields
Field | Mandatory | Type | Default | Description |
---|---|---|---|---|
X-Secret-Key | yes | text | The X-Secret-Key to authenticate the request. |
Path Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
number | yes | numeric | Bulk order's production number. |
Produce (status)
Example Request
curl -s -X PUT "https://ripe-core-sbx.platforme.com/api/bulk_orders/1/produce" \
-H "X-Secret-Key: $RIPE_KEY"
Example Response
{
"_id": "659825fbed44d3f74baaf8b3",
"id": 2094,
"number": 2094,
"name": "bulk_order_swear",
"brand": "swear",
"orders": [
320066
],
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"factory": null,
"status": "production",
"status_index": 2,
"created": 1704470011,
"modified": 1704470011,
"delivery_date": 1705074810
}
Set the status of a specific bulk order to 'production'. Returns the updated bulk order.
Authentication credentials required.
HTTP Request
PUT https://ripe-core-sbx.platforme.com/api/bulk_orders/<number>/produce
Header Fields
Field | Mandatory | Type | Default | Description |
---|---|---|---|---|
X-Secret-Key | yes | text | The X-Secret-Key to authenticate the request. |
Path Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
number | yes | numeric | Bulk order's production number. |
Quality Assure (status)
Example Request
curl -s -X PUT "https://ripe-core-sbx.platforme.com/api/bulk_orders/1/quality_assure" \
-H "X-Secret-Key: $RIPE_KEY"
Example Response
{
"_id": "659825fded44d3f74baaf8c4",
"id": 2095,
"number": 2095,
"name": "bulk_order_swear",
"brand": "swear",
"orders": [
320067
],
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"factory": null,
"status": "quality_assurance",
"status_index": 2,
"created": 1704470013,
"modified": 1704470014,
"delivery_date": 1705074812
}
Set the status of a specific bulk order to 'quality assurance'. Returns the updated bulk order.
Authentication credentials required.
HTTP Request
PUT https://ripe-core-sbx.platforme.com/api/bulk_orders/<number>/quality_assure
Header Fields
Field | Mandatory | Type | Default | Description |
---|---|---|---|---|
X-Secret-Key | yes | text | The X-Secret-Key to authenticate the request. |
Path Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
number | yes | numeric | Bulk order's production number. |
Reject (status)
Example Request
curl -s -X PUT "https://ripe-core-sbx.platforme.com/api/bulk_orders/1/reject" \
-H "X-Secret-Key: $RIPE_KEY"
Example Response
{
"_id": "659825ffbb11325081aafdc7",
"id": 2096,
"number": 2096,
"name": "bulk_order_swear",
"brand": "swear",
"orders": [
320068
],
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"factory": null,
"status": "rejected",
"status_index": 2,
"created": 1704470015,
"modified": 1704470016,
"delivery_date": 1705074814
}
Set the status of a specific bulk order to 'rejected'. Returns the updated bulk order.
Authentication credentials required.
HTTP Request
PUT https://ripe-core-sbx.platforme.com/api/bulk_orders/<number>/reject
Header Fields
Field | Mandatory | Type | Default | Description |
---|---|---|---|---|
X-Secret-Key | yes | text | The X-Secret-Key to authenticate the request. |
Path Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
number | yes | numeric | Bulk order's production number. |
Ready (status)
Example Request
curl -s -X PUT "https://ripe-core-sbx.platforme.com/api/bulk_orders/1/ready" \
-H "X-Secret-Key: $RIPE_KEY"
Example Response
{
"_id": "65982601ed44d3f74baaf8d5",
"id": 2097,
"number": 2097,
"name": "bulk_order_swear",
"brand": "swear",
"orders": [
320069
],
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"factory": null,
"status": "ready",
"status_index": 3,
"created": 1704470017,
"modified": 1704470018,
"delivery_date": 1705074817
}
Set the status of a specific bulk order to 'ready'. Returns the updated bulk order.
Authentication credentials required.
HTTP Request
PUT https://ripe-core-sbx.platforme.com/api/bulk_orders/<number>/ready
Header Fields
Field | Mandatory | Type | Default | Description |
---|---|---|---|---|
X-Secret-Key | yes | text | The X-Secret-Key to authenticate the request. |
Path Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
number | yes | numeric | Bulk order's production number. |
Send (status)
Example Request
curl -s -X PUT "https://ripe-core-sbx.platforme.com/api/bulk_orders/1/send" \
-H "X-Secret-Key: $RIPE_KEY"
Example Response
{
"_id": "659826043e27f1c070aafd33",
"id": 2098,
"number": 2098,
"name": "bulk_order_swear",
"brand": "swear",
"orders": [
320070
],
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"factory": null,
"status": "sent",
"status_index": 4,
"created": 1704470020,
"modified": 1704470021,
"delivery_date": 1705074819
}
Set the status of a specific bulk order to 'sent'. Returns the updated bulk order.
Authentication credentials required.
HTTP Request
PUT https://ripe-core-sbx.platforme.com/api/bulk_orders/<number>/send
Header Fields
Field | Mandatory | Type | Default | Description |
---|---|---|---|---|
X-Secret-Key | yes | text | The X-Secret-Key to authenticate the request. |
Path Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
number | yes | numeric | Bulk order's production number. |
Block (status)
Example Request
curl -s -X PUT "https://ripe-core-sbx.platforme.com/api/bulk_orders/1/block" \
-H "X-Secret-Key: $RIPE_KEY"
Example Response
{
"_id": "65982606290df525c7aaf40b",
"id": 2099,
"number": 2099,
"name": "bulk_order_swear",
"brand": "swear",
"orders": [
320071
],
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"factory": null,
"status": "blocked",
"status_index": 4,
"created": 1704470022,
"modified": 1704470023,
"delivery_date": 1705074821
}
Set the status of a specific bulk order to 'blocked'. Returns the updated bulk order.
Authentication credentials required.
HTTP Request
PUT https://ripe-core-sbx.platforme.com/api/bulk_orders/<number>/block
Header Fields
Field | Mandatory | Type | Default | Description |
---|---|---|---|---|
X-Secret-Key | yes | text | The X-Secret-Key to authenticate the request. |
Path Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
number | yes | numeric | Bulk order's production number. |
Receive (status)
Example Request
curl -s -X PUT "https://ripe-core-sbx.platforme.com/api/bulk_orders/1/receive" \
-H "X-Secret-Key: $RIPE_KEY"
Example Response
{
"_id": "65982609ed44d3f74baaf8f3",
"id": 2100,
"number": 2100,
"name": "bulk_order_swear",
"brand": "swear",
"orders": [
320072
],
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"factory": null,
"status": "received",
"status_index": 5,
"created": 1704470025,
"modified": 1704470026,
"delivery_date": 1705074824
}
Set the status of a specific bulk order to 'received'. Returns the updated bulk order.
Authentication credentials required.
HTTP Request
PUT https://ripe-core-sbx.platforme.com/api/bulk_orders/<number>/receive
Header Fields
Field | Mandatory | Type | Default | Description |
---|---|---|---|---|
X-Secret-Key | yes | text | The X-Secret-Key to authenticate the request. |
Path Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
number | yes | numeric | Bulk order's production number. |
Return (status)
Example Request
curl -s -X PUT "https://ripe-core-sbx.platforme.com/api/bulk_orders/1/return" \
-H "X-Secret-Key: $RIPE_KEY"
Example Response
{
"_id": "6598260b996e33ea91aaf4c8",
"id": 2101,
"number": 2101,
"name": "bulk_order_swear",
"brand": "swear",
"orders": [
320073
],
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"factory": null,
"status": "returned",
"status_index": 5,
"created": 1704470027,
"modified": 1704470028,
"delivery_date": 1705074826
}
Set the status of a specific bulk order to 'returned'. Returns the updated bulk order.
Authentication credentials required.
HTTP Request
PUT https://ripe-core-sbx.platforme.com/api/bulk_orders/<number>/return
Header Fields
Field | Mandatory | Type | Default | Description |
---|---|---|---|---|
X-Secret-Key | yes | text | The X-Secret-Key to authenticate the request. |
Path Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
number | yes | numeric | Bulk order's production number. |
Cancel (status)
Example Request
curl -s -X PUT "https://ripe-core-sbx.platforme.com/api/bulk_orders/1/cancel" \
-H "X-Secret-Key: $RIPE_KEY"
Example Response
{
"_id": "6598260dbb11325081aafdd0",
"id": 2102,
"number": 2102,
"name": "bulk_order_swear",
"brand": "swear",
"orders": [
320074
],
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"factory": null,
"status": "canceled",
"status_index": 5,
"created": 1704470029,
"modified": 1704470030,
"delivery_date": 1705074829
}
Set the status of a specific bulk order to 'canceled'. Returns the updated bulk order.
Authentication credentials required.
HTTP Request
PUT https://ripe-core-sbx.platforme.com/api/bulk_orders/<number>/cancel
Header Fields
Field | Mandatory | Type | Default | Description |
---|---|---|---|---|
X-Secret-Key | yes | text | The X-Secret-Key to authenticate the request. |
Path Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
number | yes | numeric | Bulk order's production number. |
Add Attachment
Example Request
curl -X POST \
"https://ripe-core-sbx.platforme.com/api/bulk_orders/4683/attachments" \
-H "Accept: application/json"\
-H "Content-Type: multipart/form-data" \
-H "X-Secret-Key: $RIPE_KEY" \
-F "files=@/User/user/invoice"
Example Response
2103
Add an attachment file to a specific bulk order, which will be added to the respective order. Authentication credentials required.
HTTP Request
POST https://ripe-core-sbx.platforme.com/api/bulk_orders/<int:number>/attachments
Header Fields
Field | Mandatory | Type | Default | Description |
---|---|---|---|---|
X-Secret-Key | yes | text | The X-Secret-Key to authenticate the request. |
Path Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
number | yes | numeric | Bulk order's production number. |
POST Body
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
files | yes | file | The list of files to attach to the orders of the bulk order. The name of the file must match with a given order, like <order number>-<file name>.<extension> . |
List Attachments
Example Request
curl -X GET \
"https://ripe-core-sbx.platforme.com/api/bulk_orders/4683/attachments" \
-H "X-Secret-Key: $RIPE_KEY"
Example Response
{
"320076": [
{
"_id": "65982612152d4ad638aaf609",
"id": 4730,
"enabled": true,
"description": null,
"created": 1704470034,
"modified": 1704470034,
"meta": {
"type": "invoice"
},
"brand_t": null,
"retailer_t": null,
"vendor_t": null,
"name": "320076-invoice.txt",
"key": "45a2e0b25d46bfa8a433c98e7816dae240155927",
"kind": "s3",
"owner_": "docs@platforme.com",
"content_type": "text/plain",
"url": "https://pla1.fra1.digitaloceanspaces.com/ripe_core_sbx/5a71942b-e99b-4818-a761-e5c305ebe934.attachment.320076-invoice.txt"
}
]
}
List all attachments of a specific bulk order. Authentication credentials required.
HTTP Request
GET https://ripe-core-sbx.platforme.com/api/bulk_orders/<int:number>/attachments
Header Fields
Field | Mandatory | Type | Default | Description |
---|---|---|---|---|
X-Secret-Key | yes | text | The X-Secret-Key to authenticate the request. |
Path Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
number | yes | numeric | Bulk order's production number. |
Sizes Endpoints
Sizes
Example Request
curl "https://ripe-core-sbx.platforme.com/api/sizes"
Example Response
{
"it": [
"female",
"male"
],
"it_kirkwood": [
"female"
],
"it_n21": [
"male"
],
"eu": [
"female",
"male"
],
"fr": [
"female"
],
"uk": [
"female",
"male"
],
"uk_cariuma": [
"female",
"male"
],
"us": [
"female",
"male"
],
"us_cariuma": [
"female",
"male"
],
"ch": [
"female",
"male"
],
"jp": [
"female",
"male"
],
"bag": [
"female"
],
"one_size": [
"female",
"male",
"unknown"
],
"identity": [
"female",
"male",
"unknown"
],
"us:clothing": [
"female",
"male"
],
"std:clothing": [
"female",
"kids",
"male",
"unknown"
],
"std_paula:clothing": [
"female",
"kids",
"male",
"unknown"
],
"std_salsa:jeans": [
"female",
"male"
],
"it:clothing": [
"female"
],
"fr:clothing": [
"female"
],
"au:clothing": [
"female"
],
"fr:belt": [
"female",
"male"
],
"uk_diverge": [
"female",
"male"
],
"us_diverge": [
"female",
"male"
]
}
This endpoint provides a list of the available size scales. It is used to find out which scales can be used in the convertions from and to the specified scale.
HTTP Request
GET https://ripe-core-sbx.platforme.com/api/sizes
Native To Size
Example Request
curl "https://ripe-core-sbx.platforme.com/api/sizes/native_to_size?gender=male&scale=it&value=41"
Example Response
{
"value": 48.0
}
This endpoint converts a native size value to corresponding value in the specified scale.
HTTP Request
GET https://ripe-core-sbx.platforme.com/api/sizes/native_to_size
Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
scale | yes | text | The scale which one wants to convert to. | |
value | yes | numeric | The value which one wants to convert. | |
gender | yes | text | The gender of the scale and value to be converted. The available genders are listed using the sizes api. |
Size To Native
Example Request
curl "https://ripe-core-sbx.platforme.com/api/sizes/size_to_native?gender=male&scale=it&value=48"
Example Response
{
"scale": "it",
"value": 41,
"native": 41
}
This endpoint converts a size value in the specified scale to the corresponding native size.
HTTP Request
GET https://ripe-core-sbx.platforme.com/api/sizes/size_to_native
Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
scale | yes | text | The scale which one wants to convert from. | |
value | yes | numeric | The value which one wants to convert. | |
gender | yes | text | The gender of the scale and value to be converted. The available genders are listed using the sizes api. |
Locale Size To Native
Example Request
curl "https://ripe-core-sbx.platforme.com/api/sizes/locale_to_native?gender=female&scale=std:clothing&value=XXL"
Example Response
{
"scale": "std:clothing",
"value": "XXL",
"gender": "female",
"native": 24.0
}
This endpoint converts a locale size value in the specified scale to the corresponding native size.
HTTP Request
GET https://ripe-core-sbx.platforme.com/api/sizes/locale_to_native
Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
scale | yes | text | The scale which one wants to convert from. | |
value | yes | text | The value which one wants to convert. | |
gender | yes | text | The gender of the scale and value to be converted. The available genders are listed using the sizes api. |
Build Endpoints
Logo
curl "https://ripe-core-sbx.platforme.com/api/builds/swear/logo.png?size=large"
This endpoint gets the vendor's logo.
HTTP Request
GET https://ripe-core-sbx.platforme.com/api/builds/<text:vendor>/logo.<text:format>
Path Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
vendor | yes | text | The vendor's name | |
format | yes | text | The format of the image, (eg: png , jpg , svg , etc.). |
GET Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
size | no | text | null |
Logo's size, (eg: small , medium , large , etc.). |
Fonts
Example Request
curl "https://ripe-core-sbx.platforme.com/api/builds/swear/fonts"\
-H "X-Secret-Key: $RIPE_KEY"
Example Response
{
"result": "error",
"name": "ValueError",
"message": "not enough values to unpack (expected 2, got 1)",
"code": 500,
"traceback": [
"Traceback (most recent call last):",
" File \"/usr/lib/python3.11/site-packages/appier/base.py\", line 1560, in application_l",
" result = self.handle()",
" ^^^^^^^^^^^^^",
" File \"/usr/lib/python3.11/site-packages/appier/base.py\", line 1761, in handle",
" result = self.route()",
" ^^^^^^^^^^^^",
" File \"/usr/lib/python3.11/site-packages/appier/base.py\", line 2054, in route",
" return_v = method_i(*args, **kwargs)",
" ^^^^^^^^^^^^^^^^^^^^^^^^^",
" File \"/usr/lib/python3.11/site-packages/appier/util.py\", line 2109, in interceptor",
" return function(self, *args, **kwargs)",
" ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^",
" File \"/src/ripe_core/controllers/api/build.py\", line 152, in fonts",
" fonts = self.compose_interface.fonts(name, version=version)",
" ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^",
" File \"/usr/lib/python3.11/site-packages/ripe_compose/util/interface.py\", line 956, in fonts",
" return configurator.Configurator.fonts(brand, version=version)",
" ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^",
" File \"/usr/lib/python3.11/site-packages/ripe_compose/util/configurator.py\", line 2840, in fonts",
" name, weight = font.split(\"-\", 1)",
" ^^^^^^^^^^^^",
"ValueError: not enough values to unpack (expected 2, got 1)"
],
"uid": "6e50f151-7b7a-4194-99e2-65533e9f0787",
"meta": null,
"session": "cde4dafb8fe29702c80aff67e45d6fbdba5696e8eb2c974334c9868fa1c23c15"
}
This endpoint returns the build's fonts.
HTTP Request
GET https://ripe-core-sbx.platforme.com/api/builds/<text:vendor>/fonts
Path Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
vendor | yes | text | The vendor's name. |
GET Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
version | no | text | latest | Build's version. |
Font
Example Request
curl "https://ripe-core-sbx.platforme.com/api/builds/swear/fonts/SwearGold.fnt"\
-H "X-Secret-Key: $RIPE_KEY"
curl "https://ripe-core-sbx.platforme.com/api/builds/swear/fonts/SwearGold"\
-H "X-Secret-Key: $RIPE_KEY"
The above command returns a font file.
This endpoint returns the font file with the requested or default format.
HTTP Request
GET https://ripe-core-sbx.platforme.com/api/builds/<text:vendor>/fonts/<text:font>
GET https://ripe-core-sbx.platforme.com/api/builds/<text:vendor>/fonts/<text:font>.<text:format>
Path Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
vendor | yes | text | The vendor's name. | |
font | yes | text | The font's name (must only contain letters and numbers). | |
format | no | text | font's format | The font's format (fnt , ttf ). |
GET Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
version | no | text | latest | Build's version. |
weight | no | text | null |
Font's weight (Regular , Bold ). |
Locale
Example Request
curl "https://ripe-core-sbx.platforme.com/api/builds/swear/locale?\
locale=es_es&\
values=\
part:side,\
material:nappa,\
color:green,\
property:gold,\
color:red:side:nappa"
Example Response
{
"brand": "swear",
"model": null,
"version": null,
"values": [
"part:side",
"material:nappa",
"color:green",
"property:gold",
"color:red:side:nappa"
],
"values_l": [
"parts.side",
"materials.nappa",
"Verde",
"properties.gold",
"Rojo"
],
"locale": "es_es"
}
This endpoint is used to get the resolve of one or more values defined on a locale within a specific build.
The values field have specific semantic: a value is composed by a group of tokens separated by :
.
The first and second tokens (scope and value respectively), define the section and value being translated and the remaining tokens are optional and are used to provide more specific contextual information.
Examples:
part:side
denote the intent to resolve the valueside
when the scope ispart
color:green
denote the intent to resolve the valuegreen
when the scope iscolor
color:red:side:nappa
denote the intent to resolve thecolor
red
whenpart
isside
and thematerial
isnappa
.
The most commonly used scopes are: part
, material
, color
, property
.
HTTP Request
GET /api/builds/<text:brand>/locale
Path Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
brand | yes | text | The vendor's name at which the locale is bounded to. |
GET Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
model | no | text | null |
The model's name at which the locale is bounded to. |
version | no | text | latest | Model's version. |
values | no | list of text | empty list | The values which one wants to get the locale of. |
locale | no | text | en-us |
The locale which one wants to get the value from. |
Locale CSV
Example Request
curl "https://ripe-core-sbx.platforme.com/api/builds/swear/locale.csv?locales=en_us,fr_fr"\
-H "X-Secret-Key: $RIPE_KEY"
Example Response
key,en_us,fr_fr
colors.beige,Beige,Beige
colors.black,Black,Noir
colors.black0_green,Black & Green,Noir & Vert
colors.black0_grey,Black & Grey,Noir & Gris
colors.black0_orange,Black & Orange,Noir & Orange
colors.black0_red,Black & Red,Noir & Rouge
colors.black0_white,Black & White,Noir & Blanc
colors.blue,Blue,Bleu
colors.blue0_blue0_white,Blue & White,Bleu & Blanc
colors.blue0_orange,Blue & Orange,Bleu & Orange
colors.blue_grey,${en_us.colors.blue_grey},${fr_fr.colors.blue_grey}
colors.blue_reflective,${en_us.colors.blue_reflective},${fr_fr.colors.blue_reflective}
colors.blush,Blush,Rose Poudré
colors.burnt_orange,Burnt Orange,Orange
colors.camouflage,Camouflage,Camouflage
colors.chestnut,Chestnut,Noisette
colors.chocolate,Chocolate,Marron
colors.clear_white,Clear White,Blanc
colors.cobalt,Cobalt,Cobalt
colors.copper,Copper,Cuivre
colors.copper_brown,Copper Brown,Camel
colors.dark_cherry,Dark Cherry,Rouge Foncé
colors.dark_grey,Dark Grey,Gris Foncé
colors.default,Default,Par DĂ©faut
colors.denim,${en_us.colors.denim},${fr_fr.colors.denim}
colors.emerald,Emerald,Vert Émeraude
colors.forest_green,Forest Green,Vert Foncé
colors.fuchsia,Fuchsia,Fuchsia
colors.gold,Gold,Doré
colors.golden_yellow,Golden Yellow,Jaune D'or
colors.green,Green,Vert
colors.grey,Grey,Gris
colors.grey_reflective,${en_us.colors.grey_reflective},${fr_fr.colors.grey_reflective}
colors.gum,Gum,Camel
colors.gum0_black,Gum & Black,Beige & Noir
colors.gum0_white,Gum & White,Beige & Blanc
colors.gunmetal,Gunmetal,Gris Acier
colors.khaki,Khaki,Kaki
colors.leopard,Leopard,LĂ©opard
colors.light_grey,Light Grey,Gris Clair
colors.multi,${en_us.colors.multi},${fr_fr.colors.multi}
colors.mustard,Mustard,Jaune Moutarde
colors.natural,Natural,Blanc Cassé
colors.navy,Navy,Marine
colors.neon_green0_black,Neon Green & Black,Vert Vif & Noir
colors.neon_orange,Neon Orange,Orange Vif
colors.neon_pink,Neon Pink,Rose Vif
colors.neon_white,Neon White,Blanc
colors.neon_yellow,Neon Yellow,Jaune Vif
colors.nude,Nude,Nude
colors.off_white,Off White,Blanc Cassé
colors.orange,Orange,Orange
colors.orange0_black,Orange & Black,Orange & Noir
colors.pink,Pink,Rose
colors.purple,Purple,Violet
colors.raw,Raw,Raw
colors.red,Red,Rouge
colors.rose,Rose,Rose
colors.silver,Silver,Argenté
colors.tan,Tan,Marron Clair
colors.taupe,Taupe,Taupe
colors.teal_blue,Teal Blue,Bleu Sarcelle
colors.terracotta,Terracotta,Terre De Sienne
colors.transparent,Transparent,Transparent
colors.transparent0_black,Transparent & Black,Transparent & Noir
colors.transparent0_white,Transparent & White,Transparent & Blanc
colors.violet,Violet,Violet
colors.white,White,Blanc
colors.white0_black,White & Black,Blanc & Noir
colors.white0_black0_white,White & Black,Blanc & Noir
colors.white0_grey,White & Grey,Blanc & Gris
colors.white0_red,White & Red,Blanc & Rouge
colors.yellow,Yellow,Jaune
colors.yellow0_yellow0_white,Yellow & White,Jaune & Blanc
colors.yellow_pink,${en_us.colors.yellow_pink},${fr_fr.colors.yellow_pink}
materials.airtech_mesh,Airtech Mesh,RĂ©sille Airtech
materials.calf_lining,Calf Lining,Doublure En Cuir De Veau
materials.calf_lining10_corso_como,Calf Lining,Doublure En Cuir De Veau
materials.crocodile,Crocodile,Crocodile
materials.default,Default,Par DĂ©faut
materials.elastic,Elastic,Élastique
materials.elastic10_corso_como,Elastic,Élastique
materials.gel_mesh,Gel Mesh,RĂ©sille Gel
materials.grain_metallic,Grain Metallic,Grainé Fini Métallisé
materials.grain_nappa,Grain Nappa,Nappa Grainé
materials.hairy_calf,Hairy Calf,Cuir De Veau Façon Poulain
materials.hex_rubber,Rubber,Caoutchouc
materials.leather,Leather,Cuir
materials.mesh,Mesh,RĂ©sille
materials.metal,Metal,MĂ©tal
materials.metallic,Metallic,MĂ©tallique
materials.nappa,Nappa,Nappa
materials.nappa10_corso_como,Nappa,Nappa
materials.nappa_tag,Nappa Tag,Languette En Nappa
materials.no_fringe,No Fringe,Sans Franges
materials.no_fringe_hardware,No Fringe Hardware,Sans Ornements MĂ©talliques
materials.no_metal_toe_cap,No Metal Toe Cap,Sans Bout MĂ©tallique
materials.no_strap_tip,No Strap Tip,Sans Ornement Sur La Bride
materials.no_strap_tips,No Strap,Sans Bride
materials.no_tag_left,No Tag,Sans Languette
materials.no_tag_right,No Tag,Sans Languette
materials.nori_metal,Metal,MĂ©tal
materials.nori_nylon,Nylon,Nylon
materials.nori_nylon_upper,Nylon,Nylon
materials.nori_reflective_textile,Reflective Textile,Matière Réfléchissante
materials.nori_rubber,Rubber,Caoutchouc
materials.nori_rubber_upper,Rubber,Caoutchouc
materials.nylon,Nylon,Nylon
materials.nylon0_plastic,Plastic Nylon,Nylon Plastique
materials.nylon_tape,Nylon Tape,Bande Appliquée En Nylon
materials.organic_cotton,Organic_Cotton,${fr_fr.materials.organic_cotton}
materials.ostrich,Ostrich,Cuir D'autruche
materials.patent_leather,Patent,Verni
materials.photo,Photo,Photo
materials.polyester,Polyester,Polyester
materials.python,Python,Python
materials.reflective,Reflective,Matière Réfléchissante
materials.reflective0_grossgrain,Reflective & Grosgrain,Matière Réfléchissante & Grosgrain
materials.reflective_textile,Reflective Textile,Matière Réfléchissante
materials.rubber,Rubber,Caoutchouc
materials.rubber_heel,Rubber Heel,Talon En Caoutchouc
materials.rubber_strap,Rubber Strap,Bride En Caoutchouc
materials.rubber_wedge,Rubber Wedge,Semelle En Caoutchouc
materials.stretch_knit,Stretch Knit,Maille Stretch
materials.stretch_nappa,Stretch Nappa,Cuir Nappa Stretch
materials.suede,Suede,Daim
materials.veg_tan,Veg Tan,Cuir Tanné Végétal
materials.wax_nubuck,Wax Nubuck,Nubuck Ciré
materials.web_mesh,Mesh,RĂ©sille
materials.wicker_nylon,Nylon,Nylon
parts.accents,Accents,Accents
parts.ankle_side,Ankle Side,Quartier
parts.back_stay,Back Stay,Arrière
parts.body,Body,Basket
parts.collar,Collar,Revers
parts.elastic,Elastic,Élastique
parts.eye_stay,Eye Stay,Oeillets
parts.eyestay0_side,Eyestay & Side,Oeillets Et Côtés
parts.fringe,Fringe,Franges
parts.fringe_hardware,Fringe Hardware,Ornements MĂ©talliques
parts.front,Front,Empeigne
parts.front_panel,Front Panel,Empiècement Avant
parts.hardware,Hardware,Ornements
parts.heel,Heel,Talon
parts.heel0_trimmings,Trimmings,Liserés
parts.heel_puller,Heel Puller,Languette Arrière
parts.heel_tab,Heel Tab,Contrefort
parts.inside,Inside,Intérieur
parts.inside_panel,Inside Panel,Empiècement Intérieur
parts.lace,Lace,Dentelle
parts.lace0_eyelet,Laces,Lacets
parts.laces,Laces,Lacets
parts.lining,Lining,Doublure
parts.logo,Logo,Logo
parts.metal_toe_cap,Metal Toe Cap,Bout MĂ©tallique
parts.mudguard,Mudgard,Garde-boue
parts.outside,Outside,Extérieur
parts.outsole,Outsole,Semelle Externe
parts.piping,Piping,Coutures
parts.rubber_strap,Rubber Strap,Bride En Caoutchouc
parts.shadow,Shadow,Shadow
parts.side,Side,Côté
parts.side0_tongue_detail,Side & Tongue,Côtés Et Languette
parts.sole,Sole,Semelle
parts.stay,Stay,Å’illets & DĂ©tails
parts.strap_tip,Strap Tip,Ornement De La Bride
parts.strap_tips,Strap Tips,Ornements De La Bride
parts.straps,Straps,Brides
parts.swear_tape,Swear Tape,Bande Swear Appliquée
parts.tag_left,Left Tag,Étiquette Gauche
parts.tag_right,Right Tag,Étiquette Droite
parts.toe0_tongue,Toe & Tongue,Bout & Languette
parts.toe_cap,Toe Cap,Bout
parts.tongue,Tongue,Languette
parts.tongue_detail,Tongue Detail,DĂ©tail Languette
parts.trimmings,Trimmings,Liserés
parts.ugly_tape,Ugly Tape,Bande Ugly Appliquée
parts.upper,Upper,Empeigne
parts.upper1,Upper 1,Empeigne 1
parts.upper2,Upper 2,Empeigne 2
parts.zip,Zip,Fermeture Zippée
parts.zip_puller,Zip Puller,Tirette
properties.font.metal_copper,Metal Cooper,Cuivre Métallisé
properties.font.metal_gold,Metal Gold,Or Métallisé
properties.font.metal_gunmetal,Metal Gunmetal,Gris Acier Métallisé
properties.font.metal_silver,Metal Silver,Argent Métallisé
properties.position.left,Left,Gauche
properties.position.right,Right,Droite
This endpoint is used to get the CSV containing all the key values of the locales requested.
For a key that does not have a matching value for the locale, a placeholder might appear by default, but this behaviour can be controlled with parameters.
HTTP Request
GET /api/builds/<text:brand>/locale.csv
Path Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
brand | yes | text | The vendor's name at which the locales are bounded to. |
GET Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
model | no | text | null |
The model's name at which the locale is bounded to. |
version | no | text | latest | Model's version. |
placeholder | no | text | "" |
The locale's placeholder that replaces the locale value for locales keys that do have a translation. |
key_placeholder | no | boolean | true |
Shows placeholder for values which don't have a translation for a given locale. |
locales | no | list of text | null |
The locales which one wants to export the CSV for. |
Locale Keys
Example Request
curl "https://ripe-core-sbx.platforme.com/api/builds/swear/locale/keys"\
-H "X-Secret-Key: $RIPE_KEY"
Example Response
[
"colors.beige",
"colors.black",
"colors.black0_green",
"colors.black0_grey",
"colors.black0_orange",
"colors.black0_red",
"colors.black0_white",
"colors.blue",
"colors.blue0_blue0_white",
"colors.blue0_orange",
"colors.blue_grey",
"colors.blue_reflective",
"colors.blush",
"colors.burnt_orange",
"colors.camouflage",
"colors.chestnut",
"colors.chocolate",
"colors.clear_white",
"colors.cobalt",
"colors.copper",
"colors.copper_brown",
"colors.dark_cherry",
"colors.dark_grey",
"colors.default",
"colors.denim",
"colors.emerald",
"colors.forest_green",
"colors.fuchsia",
"colors.gold",
"colors.golden_yellow",
"colors.green",
"colors.grey",
"colors.grey_reflective",
"colors.gum",
"colors.gum0_black",
"colors.gum0_white",
"colors.gunmetal",
"colors.khaki",
"colors.leopard",
"colors.light_grey",
"colors.multi",
"colors.mustard",
"colors.natural",
"colors.navy",
"colors.neon_green0_black",
"colors.neon_orange",
"colors.neon_pink",
"colors.neon_white",
"colors.neon_yellow",
"colors.nude",
"colors.off_white",
"colors.orange",
"colors.orange0_black",
"colors.pink",
"colors.purple",
"colors.raw",
"colors.red",
"colors.rose",
"colors.silver",
"colors.tan",
"colors.taupe",
"colors.teal_blue",
"colors.terracotta",
"colors.transparent",
"colors.transparent0_black",
"colors.transparent0_white",
"colors.violet",
"colors.white",
"colors.white0_black",
"colors.white0_black0_white",
"colors.white0_grey",
"colors.white0_red",
"colors.yellow",
"colors.yellow0_yellow0_white",
"colors.yellow_pink",
"materials.airtech_mesh",
"materials.calf_lining",
"materials.calf_lining10_corso_como",
"materials.crocodile",
"materials.default",
"materials.elastic",
"materials.elastic10_corso_como",
"materials.gel_mesh",
"materials.grain_metallic",
"materials.grain_nappa",
"materials.hairy_calf",
"materials.hex_rubber",
"materials.leather",
"materials.mesh",
"materials.metal",
"materials.metallic",
"materials.nappa",
"materials.nappa10_corso_como",
"materials.nappa_tag",
"materials.no_fringe",
"materials.no_fringe_hardware",
"materials.no_metal_toe_cap",
"materials.no_strap_tip",
"materials.no_strap_tips",
"materials.no_tag_left",
"materials.no_tag_right",
"materials.nori_metal",
"materials.nori_nylon",
"materials.nori_nylon_upper",
"materials.nori_reflective_textile",
"materials.nori_rubber",
"materials.nori_rubber_upper",
"materials.nylon",
"materials.nylon0_plastic",
"materials.nylon_tape",
"materials.organic_cotton",
"materials.ostrich",
"materials.patent_leather",
"materials.photo",
"materials.polyester",
"materials.python",
"materials.reflective",
"materials.reflective0_grossgrain",
"materials.reflective_textile",
"materials.rubber",
"materials.rubber_heel",
"materials.rubber_strap",
"materials.rubber_wedge",
"materials.stretch_knit",
"materials.stretch_nappa",
"materials.suede",
"materials.veg_tan",
"materials.wax_nubuck",
"materials.web_mesh",
"materials.wicker_nylon",
"parts.accents",
"parts.ankle_side",
"parts.back_stay",
"parts.body",
"parts.collar",
"parts.elastic",
"parts.eye_stay",
"parts.eyestay0_side",
"parts.fringe",
"parts.fringe_hardware",
"parts.front",
"parts.front_panel",
"parts.hardware",
"parts.heel",
"parts.heel0_trimmings",
"parts.heel_puller",
"parts.heel_tab",
"parts.inside",
"parts.inside_panel",
"parts.lace",
"parts.lace0_eyelet",
"parts.laces",
"parts.lining",
"parts.logo",
"parts.metal_toe_cap",
"parts.mudguard",
"parts.outside",
"parts.outsole",
"parts.piping",
"parts.rubber_strap",
"parts.shadow",
"parts.side",
"parts.side0_tongue_detail",
"parts.sole",
"parts.stay",
"parts.strap_tip",
"parts.strap_tips",
"parts.straps",
"parts.swear_tape",
"parts.tag_left",
"parts.tag_right",
"parts.toe0_tongue",
"parts.toe_cap",
"parts.tongue",
"parts.tongue_detail",
"parts.trimmings",
"parts.ugly_tape",
"parts.upper",
"parts.upper1",
"parts.upper2",
"parts.zip",
"parts.zip_puller",
"properties.font.metal_copper",
"properties.font.metal_gold",
"properties.font.metal_gunmetal",
"properties.font.metal_silver",
"properties.position.left",
"properties.position.right"
]
This endpoint is used to get all the locale keys.
HTTP Request
GET /api/builds/<text:brand>/locale/keys
Path Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
brand | yes | text | The vendor's name at which the locale is bounded to. |
GET Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
model | no | text | null |
The model's name at which the locale is bounded to. |
version | no | text | latest | Model's version. |
Locale Template
Example Request
curl "https://ripe-core-sbx.platforme.com/api/builds/swear/locale/template"\
-H "X-Secret-Key: $RIPE_KEY"
Example Response
{
"colors.beige": "",
"colors.black": "",
"colors.black0_green": "",
"colors.black0_grey": "",
"colors.black0_orange": "",
"colors.black0_red": "",
"colors.black0_white": "",
"colors.blue": "",
"colors.blue0_blue0_white": "",
"colors.blue0_orange": "",
"colors.blue_grey": "",
"colors.blue_reflective": "",
"colors.blush": "",
"colors.burnt_orange": "",
"colors.camouflage": "",
"colors.chestnut": "",
"colors.chocolate": "",
"colors.clear_white": "",
"colors.cobalt": "",
"colors.copper": "",
"colors.copper_brown": "",
"colors.dark_cherry": "",
"colors.dark_grey": "",
"colors.default": "",
"colors.denim": "",
"colors.emerald": "",
"colors.forest_green": "",
"colors.fuchsia": "",
"colors.gold": "",
"colors.golden_yellow": "",
"colors.green": "",
"colors.grey": "",
"colors.grey_reflective": "",
"colors.gum": "",
"colors.gum0_black": "",
"colors.gum0_white": "",
"colors.gunmetal": "",
"colors.khaki": "",
"colors.leopard": "",
"colors.light_grey": "",
"colors.multi": "",
"colors.mustard": "",
"colors.natural": "",
"colors.navy": "",
"colors.neon_green0_black": "",
"colors.neon_orange": "",
"colors.neon_pink": "",
"colors.neon_white": "",
"colors.neon_yellow": "",
"colors.nude": "",
"colors.off_white": "",
"colors.orange": "",
"colors.orange0_black": "",
"colors.pink": "",
"colors.purple": "",
"colors.raw": "",
"colors.red": "",
"colors.rose": "",
"colors.silver": "",
"colors.tan": "",
"colors.taupe": "",
"colors.teal_blue": "",
"colors.terracotta": "",
"colors.transparent": "",
"colors.transparent0_black": "",
"colors.transparent0_white": "",
"colors.violet": "",
"colors.white": "",
"colors.white0_black": "",
"colors.white0_black0_white": "",
"colors.white0_grey": "",
"colors.white0_red": "",
"colors.yellow": "",
"colors.yellow0_yellow0_white": "",
"colors.yellow_pink": "",
"materials.airtech_mesh": "",
"materials.calf_lining": "",
"materials.calf_lining10_corso_como": "",
"materials.crocodile": "",
"materials.default": "",
"materials.elastic": "",
"materials.elastic10_corso_como": "",
"materials.gel_mesh": "",
"materials.grain_metallic": "",
"materials.grain_nappa": "",
"materials.hairy_calf": "",
"materials.hex_rubber": "",
"materials.leather": "",
"materials.mesh": "",
"materials.metal": "",
"materials.metallic": "",
"materials.nappa": "",
"materials.nappa10_corso_como": "",
"materials.nappa_tag": "",
"materials.no_fringe": "",
"materials.no_fringe_hardware": "",
"materials.no_metal_toe_cap": "",
"materials.no_strap_tip": "",
"materials.no_strap_tips": "",
"materials.no_tag_left": "",
"materials.no_tag_right": "",
"materials.nori_metal": "",
"materials.nori_nylon": "",
"materials.nori_nylon_upper": "",
"materials.nori_reflective_textile": "",
"materials.nori_rubber": "",
"materials.nori_rubber_upper": "",
"materials.nylon": "",
"materials.nylon0_plastic": "",
"materials.nylon_tape": "",
"materials.organic_cotton": "",
"materials.ostrich": "",
"materials.patent_leather": "",
"materials.photo": "",
"materials.polyester": "",
"materials.python": "",
"materials.reflective": "",
"materials.reflective0_grossgrain": "",
"materials.reflective_textile": "",
"materials.rubber": "",
"materials.rubber_heel": "",
"materials.rubber_strap": "",
"materials.rubber_wedge": "",
"materials.stretch_knit": "",
"materials.stretch_nappa": "",
"materials.suede": "",
"materials.veg_tan": "",
"materials.wax_nubuck": "",
"materials.web_mesh": "",
"materials.wicker_nylon": "",
"parts.accents": "",
"parts.ankle_side": "",
"parts.back_stay": "",
"parts.body": "",
"parts.collar": "",
"parts.elastic": "",
"parts.eye_stay": "",
"parts.eyestay0_side": "",
"parts.fringe": "",
"parts.fringe_hardware": "",
"parts.front": "",
"parts.front_panel": "",
"parts.hardware": "",
"parts.heel": "",
"parts.heel0_trimmings": "",
"parts.heel_puller": "",
"parts.heel_tab": "",
"parts.inside": "",
"parts.inside_panel": "",
"parts.lace": "",
"parts.lace0_eyelet": "",
"parts.laces": "",
"parts.lining": "",
"parts.logo": "",
"parts.metal_toe_cap": "",
"parts.mudguard": "",
"parts.outside": "",
"parts.outsole": "",
"parts.piping": "",
"parts.rubber_strap": "",
"parts.shadow": "",
"parts.side": "",
"parts.side0_tongue_detail": "",
"parts.sole": "",
"parts.stay": "",
"parts.strap_tip": "",
"parts.strap_tips": "",
"parts.straps": "",
"parts.swear_tape": "",
"parts.tag_left": "",
"parts.tag_right": "",
"parts.toe0_tongue": "",
"parts.toe_cap": "",
"parts.tongue": "",
"parts.tongue_detail": "",
"parts.trimmings": "",
"parts.ugly_tape": "",
"parts.upper": "",
"parts.upper1": "",
"parts.upper2": "",
"parts.zip": "",
"parts.zip_puller": "",
"properties.font.metal_copper": "",
"properties.font.metal_gold": "",
"properties.font.metal_gunmetal": "",
"properties.font.metal_silver": "",
"properties.position.left": "",
"properties.position.right": ""
}
This endpoint is used to get the locale template, which contains all the locale keys and an emptry string as its value, so that it can be completed.
HTTP Request
GET /api/builds/<text:brand>/locale/template
Path Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
brand | yes | text | The vendor's name at which the locale is bounded to. |
GET Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
model | no | text | null |
The model's name at which the locale is bounded to. |
version | no | text | latest | Model's version. |
placeholder | no | text | "" |
The placeholder value that will be used to set as the value of all the locale keys. |
Locale Model
Example Request
curl "https://ripe-core-sbx.platforme.com/api/builds/swear/locale/en_us?model=vyner"
Example Response
{
"colors.beige": "Beige",
"colors.black": "Black",
"colors.black0_green": "Black & Green",
"colors.black0_grey": "Black & Grey",
"colors.black0_orange": "Black & Orange",
"colors.black0_red": "Black & Red",
"colors.black0_white": "Black & White",
"colors.black_mesh": "Black Mesh",
"colors.blue": "Blue",
"colors.blue0_blue0_white": "Blue & White",
"colors.blue0_orange": "Blue & Orange",
"colors.blush": "Blush",
"colors.burnt_orange": "Burnt Orange",
"colors.camouflage": "Camouflage",
"colors.chestnut": "Chestnut",
"colors.chocolate": "Chocolate",
"colors.clear_white": "Clear White",
"colors.cobalt": "Cobalt",
"colors.cobalt_mesh": "Cobalt Mesh",
"colors.copper": "Copper",
"colors.copper_brown": "Copper Brown",
"colors.dark_cherry": "Dark Cherry",
"colors.dark_grey": "Dark Grey",
"colors.default": "Default",
"colors.emerald": "Emerald",
"colors.forest_green": "Forest Green",
"colors.fuchsia": "Fuchsia",
"colors.fuchsia_mesh": "Fuchsia Mesh",
"colors.gold": "Gold",
"colors.golden_yellow": "Golden Yellow",
"colors.green": "Green",
"colors.grey": "Grey",
"colors.gum": "Gum",
"colors.gum0_black": "Gum & Black",
"colors.gum0_white": "Gum & White",
"colors.gunmetal": "Gunmetal",
"colors.khaki": "Khaki",
"colors.leopard": "Leopard",
"colors.light_grey": "Light Grey",
"colors.mustard": "Mustard",
"colors.natural": "Natural",
"colors.navy": "Navy",
"colors.neon_green0_black": "Neon Green & Black",
"colors.neon_mesh": "Neon Mesh",
"colors.neon_orange": "Neon Orange",
"colors.neon_pink": "Neon Pink",
"colors.neon_white": "Neon White",
"colors.neon_yellow": "Neon Yellow",
"colors.nude": "Nude",
"colors.off_white": "Off White",
"colors.orange": "Orange",
"colors.orange0_black": "Orange & Black",
"colors.orange_mesh": "Orange Mesh",
"colors.pink": "Pink",
"colors.prism": "Prism",
"colors.purple": "Purple",
"colors.raw": "Raw",
"colors.red": "Red",
"colors.rose": "Rose",
"colors.silver": "Silver",
"colors.sky": "${en_us.colors.sky}",
"colors.tan": "Tan",
"colors.taupe": "Taupe",
"colors.teal_blue": "Teal Blue",
"colors.terracotta": "Terracotta",
"colors.transparent": "Transparent",
"colors.transparent0_black": "Transparent & Black",
"colors.transparent0_white": "Transparent & White",
"colors.violet": "Violet",
"colors.white": "White",
"colors.white0_black": "White & Black",
"colors.white0_black0_white": "White & Black",
"colors.white0_grey": "White & Grey",
"colors.white0_red": "White & Red",
"colors.yellow": "Yellow",
"colors.yellow0_yellow0_white": "Yellow & White",
"materials.airtech_mesh": "Airtech Mesh",
"materials.calf_lining": "Calf Lining",
"materials.calf_lining10_corso_como": "Calf Lining",
"materials.crocodile": "Crocodile",
"materials.default": "Default",
"materials.elastic": "Elastic",
"materials.elastic10_corso_como": "Elastic",
"materials.gel_mesh": "Gel Mesh",
"materials.grain_metallic": "Grain Metallic",
"materials.grain_nappa": "Grain Nappa",
"materials.hairy_calf": "Hairy Calf",
"materials.hex_rubber": "Rubber",
"materials.leather": "Leather",
"materials.mesh": "Mesh",
"materials.metal": "Metal",
"materials.metallic": "Metallic",
"materials.nappa": "Nappa",
"materials.nappa10_corso_como": "Nappa",
"materials.nappa_tag": "Nappa Tag",
"materials.no_fringe": "No Fringe",
"materials.no_fringe_hardware": "No Fringe Hardware",
"materials.no_metal_toe_cap": "No Metal Toe Cap",
"materials.no_strap_tip": "No Strap Tip",
"materials.no_strap_tips": "No Strap",
"materials.no_tag_left": "No Tag",
"materials.no_tag_right": "No Tag",
"materials.nori_metal": "Metal",
"materials.nori_nylon": "Nylon",
"materials.nori_nylon_upper": "Nylon",
"materials.nori_reflective_textile": "Reflective Textile",
"materials.nori_rubber": "Rubber",
"materials.nori_rubber_upper": "Rubber",
"materials.novelty": "Novelty",
"materials.nylon": "Nylon",
"materials.nylon0_plastic": "Plastic Nylon",
"materials.nylon_tape": "Nylon Tape",
"materials.organic_cotton": "Organic_Cotton",
"materials.ostrich": "Ostrich",
"materials.patent_leather": "Patent",
"materials.photo": "Photo",
"materials.polyester": "Polyester",
"materials.python": "Python",
"materials.reflective": "Reflective",
"materials.reflective0_grossgrain": "Reflective & Grosgrain",
"materials.reflective_textile": "Reflective Textile",
"materials.rubber": "Rubber",
"materials.rubberHeel": "${en_us.materials.rubberHeel}",
"materials.rubber_heel": "Rubber Heel",
"materials.rubber_strap": "Rubber Strap",
"materials.rubber_wedge": "Rubber Wedge",
"materials.stretch_knit": "Stretch Knit",
"materials.stretch_nappa": "Stretch Nappa",
"materials.suede": "Suede",
"materials.veg_tan": "Veg Tan",
"materials.wax_nubuck": "Wax Nubuck",
"materials.web_mesh": "Mesh",
"materials.wicker_nylon": "Nylon",
"parts.accents": "Accents",
"parts.ankle_side": "Ankle Side",
"parts.back_stay": "Back Stay",
"parts.body": "Body",
"parts.collar": "Collar",
"parts.elastic": "Elastic",
"parts.eye_stay": "Eye Stay",
"parts.eyestay0_side": "Eyestay & Side",
"parts.fringe": "Fringe",
"parts.fringe_hardware": "Fringe Hardware",
"parts.front": "Front",
"parts.front_panel": "Front Panel",
"parts.hardware": "Hardware",
"parts.heel": "Heel",
"parts.heel0_trimmings": "Trimmings",
"parts.heel_puller": "Heel Puller",
"parts.heel_tab": "Heel Tab",
"parts.inside": "Inside",
"parts.inside_panel": "Inside Panel",
"parts.lace": "Lace",
"parts.lace0_eyelet": "Laces",
"parts.laces": "Laces",
"parts.lining": "Lining",
"parts.logo": "Logo",
"parts.metal_caps": "Metal Caps",
"parts.metal_toe_cap": "Metal Toe Cap",
"parts.mudguard": "Mudgard",
"parts.outside": "Outside",
"parts.outsole": "Outsole",
"parts.piping": "Piping",
"parts.rubber_strap": "Rubber Strap",
"parts.shadow": "Shadow",
"parts.side": "Side",
"parts.side0_tongue_detail": "Side & Tongue",
"parts.sole": "Sole",
"parts.stay": "Stay",
"parts.strap_tip": "Strap Tip",
"parts.strap_tips": "Strap Tips",
"parts.straps": "Straps",
"parts.swear_tape": "Swear Tape",
"parts.tag_left": "Left Tag",
"parts.tag_right": "Right Tag",
"parts.toe0_tongue": "Toe & Tongue",
"parts.toe_cap": "Toe Cap",
"parts.tongue": "Tongue",
"parts.tongue_detail": "Tongue Detail",
"parts.trimmings": "Trimmings",
"parts.ugly_tape": "Ugly Tape",
"parts.upper": "Upper",
"parts.upper1": "Upper 1",
"parts.upper2": "Upper 2",
"parts.zip": "Zip",
"parts.zip_puller": "Zip Puller",
"properties.font.metal_copper": "Metal Cooper",
"properties.font.metal_gold": "Metal Gold",
"properties.font.metal_gunmetal": "Metal Gunmetal",
"properties.font.metal_silver": "Metal Silver",
"properties.position.left": "Left",
"properties.position.right": "Right",
"builds.swear.colors.beige": "Beige",
"builds.swear.colors.black": "Black",
"builds.swear.colors.black0_green": "Black & Green",
"builds.swear.colors.black0_grey": "Black & Grey",
"builds.swear.colors.black0_orange": "Black & Orange",
"builds.swear.colors.black0_red": "Black & Red",
"builds.swear.colors.black0_white": "Black & White",
"builds.swear.colors.black_mesh": "Black Mesh",
"builds.swear.colors.blue": "Blue",
"builds.swear.colors.blue0_blue0_white": "Blue & White",
"builds.swear.colors.blue0_orange": "Blue & Orange",
"builds.swear.colors.blush": "Blush",
"builds.swear.colors.burnt_orange": "Burnt Orange",
"builds.swear.colors.camouflage": "Camouflage",
"builds.swear.colors.chestnut": "Chestnut",
"builds.swear.colors.chocolate": "Chocolate",
"builds.swear.colors.clear_white": "Clear White",
"builds.swear.colors.cobalt": "Cobalt",
"builds.swear.colors.cobalt_mesh": "Cobalt Mesh",
"builds.swear.colors.copper": "Copper",
"builds.swear.colors.copper_brown": "Copper Brown",
"builds.swear.colors.dark_cherry": "Dark Cherry",
"builds.swear.colors.dark_grey": "Dark Grey",
"builds.swear.colors.default": "Default",
"builds.swear.colors.emerald": "Emerald",
"builds.swear.colors.forest_green": "Forest Green",
"builds.swear.colors.fuchsia": "Fuchsia",
"builds.swear.colors.fuchsia_mesh": "Fuchsia Mesh",
"builds.swear.colors.gold": "Gold",
"builds.swear.colors.golden_yellow": "Golden Yellow",
"builds.swear.colors.green": "Green",
"builds.swear.colors.grey": "Grey",
"builds.swear.colors.gum": "Gum",
"builds.swear.colors.gum0_black": "Gum & Black",
"builds.swear.colors.gum0_white": "Gum & White",
"builds.swear.colors.gunmetal": "Gunmetal",
"builds.swear.colors.khaki": "Khaki",
"builds.swear.colors.leopard": "Leopard",
"builds.swear.colors.light_grey": "Light Grey",
"builds.swear.colors.mustard": "Mustard",
"builds.swear.colors.natural": "Natural",
"builds.swear.colors.navy": "Navy",
"builds.swear.colors.neon_green0_black": "Neon Green & Black",
"builds.swear.colors.neon_mesh": "Neon Mesh",
"builds.swear.colors.neon_orange": "Neon Orange",
"builds.swear.colors.neon_pink": "Neon Pink",
"builds.swear.colors.neon_white": "Neon White",
"builds.swear.colors.neon_yellow": "Neon Yellow",
"builds.swear.colors.nude": "Nude",
"builds.swear.colors.off_white": "Off White",
"builds.swear.colors.orange": "Orange",
"builds.swear.colors.orange0_black": "Orange & Black",
"builds.swear.colors.orange_mesh": "Orange Mesh",
"builds.swear.colors.pink": "Pink",
"builds.swear.colors.prism": "Prism",
"builds.swear.colors.purple": "Purple",
"builds.swear.colors.raw": "Raw",
"builds.swear.colors.red": "Red",
"builds.swear.colors.rose": "Rose",
"builds.swear.colors.silver": "Silver",
"builds.swear.colors.sky": "${en_us.colors.sky}",
"builds.swear.colors.tan": "Tan",
"builds.swear.colors.taupe": "Taupe",
"builds.swear.colors.teal_blue": "Teal Blue",
"builds.swear.colors.terracotta": "Terracotta",
"builds.swear.colors.transparent": "Transparent",
"builds.swear.colors.transparent0_black": "Transparent & Black",
"builds.swear.colors.transparent0_white": "Transparent & White",
"builds.swear.colors.violet": "Violet",
"builds.swear.colors.white": "White",
"builds.swear.colors.white0_black": "White & Black",
"builds.swear.colors.white0_black0_white": "White & Black",
"builds.swear.colors.white0_grey": "White & Grey",
"builds.swear.colors.white0_red": "White & Red",
"builds.swear.colors.yellow": "Yellow",
"builds.swear.colors.yellow0_yellow0_white": "Yellow & White",
"builds.swear.materials.airtech_mesh": "Airtech Mesh",
"builds.swear.materials.calf_lining": "Calf Lining",
"builds.swear.materials.calf_lining10_corso_como": "Calf Lining",
"builds.swear.materials.crocodile": "Crocodile",
"builds.swear.materials.default": "Default",
"builds.swear.materials.elastic": "Elastic",
"builds.swear.materials.elastic10_corso_como": "Elastic",
"builds.swear.materials.gel_mesh": "Gel Mesh",
"builds.swear.materials.grain_metallic": "Grain Metallic",
"builds.swear.materials.grain_nappa": "Grain Nappa",
"builds.swear.materials.hairy_calf": "Hairy Calf",
"builds.swear.materials.hex_rubber": "Rubber",
"builds.swear.materials.leather": "Leather",
"builds.swear.materials.mesh": "Mesh",
"builds.swear.materials.metal": "Metal",
"builds.swear.materials.metallic": "Metallic",
"builds.swear.materials.nappa": "Nappa",
"builds.swear.materials.nappa10_corso_como": "Nappa",
"builds.swear.materials.nappa_tag": "Nappa Tag",
"builds.swear.materials.no_fringe": "No Fringe",
"builds.swear.materials.no_fringe_hardware": "No Fringe Hardware",
"builds.swear.materials.no_metal_toe_cap": "No Metal Toe Cap",
"builds.swear.materials.no_strap_tip": "No Strap Tip",
"builds.swear.materials.no_strap_tips": "No Strap",
"builds.swear.materials.no_tag_left": "No Tag",
"builds.swear.materials.no_tag_right": "No Tag",
"builds.swear.materials.nori_metal": "Metal",
"builds.swear.materials.nori_nylon": "Nylon",
"builds.swear.materials.nori_nylon_upper": "Nylon",
"builds.swear.materials.nori_reflective_textile": "Reflective Textile",
"builds.swear.materials.nori_rubber": "Rubber",
"builds.swear.materials.nori_rubber_upper": "Rubber",
"builds.swear.materials.novelty": "Novelty",
"builds.swear.materials.nylon": "Nylon",
"builds.swear.materials.nylon0_plastic": "Plastic Nylon",
"builds.swear.materials.nylon_tape": "Nylon Tape",
"builds.swear.materials.organic_cotton": "Organic_Cotton",
"builds.swear.materials.ostrich": "Ostrich",
"builds.swear.materials.patent_leather": "Patent",
"builds.swear.materials.photo": "Photo",
"builds.swear.materials.polyester": "Polyester",
"builds.swear.materials.python": "Python",
"builds.swear.materials.reflective": "Reflective",
"builds.swear.materials.reflective0_grossgrain": "Reflective & Grosgrain",
"builds.swear.materials.reflective_textile": "Reflective Textile",
"builds.swear.materials.rubber": "Rubber",
"builds.swear.materials.rubberHeel": "${en_us.materials.rubberHeel}",
"builds.swear.materials.rubber_heel": "Rubber Heel",
"builds.swear.materials.rubber_strap": "Rubber Strap",
"builds.swear.materials.rubber_wedge": "Rubber Wedge",
"builds.swear.materials.stretch_knit": "Stretch Knit",
"builds.swear.materials.stretch_nappa": "Stretch Nappa",
"builds.swear.materials.suede": "Suede",
"builds.swear.materials.veg_tan": "Veg Tan",
"builds.swear.materials.wax_nubuck": "Wax Nubuck",
"builds.swear.materials.web_mesh": "Mesh",
"builds.swear.materials.wicker_nylon": "Nylon",
"builds.swear.parts.accents": "Accents",
"builds.swear.parts.ankle_side": "Ankle Side",
"builds.swear.parts.back_stay": "Back Stay",
"builds.swear.parts.body": "Body",
"builds.swear.parts.collar": "Collar",
"builds.swear.parts.elastic": "Elastic",
"builds.swear.parts.eye_stay": "Eye Stay",
"builds.swear.parts.eyestay0_side": "Eyestay & Side",
"builds.swear.parts.fringe": "Fringe",
"builds.swear.parts.fringe_hardware": "Fringe Hardware",
"builds.swear.parts.front": "Front",
"builds.swear.parts.front_panel": "Front Panel",
"builds.swear.parts.hardware": "Hardware",
"builds.swear.parts.heel": "Heel",
"builds.swear.parts.heel0_trimmings": "Trimmings",
"builds.swear.parts.heel_puller": "Heel Puller",
"builds.swear.parts.heel_tab": "Heel Tab",
"builds.swear.parts.inside": "Inside",
"builds.swear.parts.inside_panel": "Inside Panel",
"builds.swear.parts.lace": "Lace",
"builds.swear.parts.lace0_eyelet": "Laces",
"builds.swear.parts.laces": "Laces",
"builds.swear.parts.lining": "Lining",
"builds.swear.parts.logo": "Logo",
"builds.swear.parts.metal_caps": "Metal Caps",
"builds.swear.parts.metal_toe_cap": "Metal Toe Cap",
"builds.swear.parts.mudguard": "Mudgard",
"builds.swear.parts.outside": "Outside",
"builds.swear.parts.outsole": "Outsole",
"builds.swear.parts.piping": "Piping",
"builds.swear.parts.rubber_strap": "Rubber Strap",
"builds.swear.parts.shadow": "Shadow",
"builds.swear.parts.side": "Side",
"builds.swear.parts.side0_tongue_detail": "Side & Tongue",
"builds.swear.parts.sole": "Sole",
"builds.swear.parts.stay": "Stay",
"builds.swear.parts.strap_tip": "Strap Tip",
"builds.swear.parts.strap_tips": "Strap Tips",
"builds.swear.parts.straps": "Straps",
"builds.swear.parts.swear_tape": "Swear Tape",
"builds.swear.parts.tag_left": "Left Tag",
"builds.swear.parts.tag_right": "Right Tag",
"builds.swear.parts.toe0_tongue": "Toe & Tongue",
"builds.swear.parts.toe_cap": "Toe Cap",
"builds.swear.parts.tongue": "Tongue",
"builds.swear.parts.tongue_detail": "Tongue Detail",
"builds.swear.parts.trimmings": "Trimmings",
"builds.swear.parts.ugly_tape": "Ugly Tape",
"builds.swear.parts.upper": "Upper",
"builds.swear.parts.upper1": "Upper 1",
"builds.swear.parts.upper2": "Upper 2",
"builds.swear.parts.zip": "Zip",
"builds.swear.parts.zip_puller": "Zip Puller",
"builds.swear.properties.font.metal_copper": "Metal Cooper",
"builds.swear.properties.font.metal_gold": "Metal Gold",
"builds.swear.properties.font.metal_gunmetal": "Metal Gunmetal",
"builds.swear.properties.font.metal_silver": "Metal Silver",
"builds.swear.properties.position.left": "Left",
"builds.swear.properties.position.right": "Right"
}
This endpoint is used to get the resolve of one or more values defined on a locale within a specific build.
The values field have specific semantic: a value is composed by a group of tokens separated by :
.
The first and second tokens (scope and value respectively), define the section and value being translated and the remaining tokens are optional and are used to provide more specific contextual information.
Examples:
part:side
denote the intent to resolve the valueside
when the scope ispart
color:green
denote the intent to resolve the valuegreen
when the scope iscolor
color:red:side:nappa
denote the intent to resolve thecolor
red
whenpart
isside
and thematerial
isnappa
.
The most commonly used scopes are: part
, material
, color
, property
.
HTTP Request
GET /api/builds/<text:brand>/locale/<text:locale>
Path Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
brand | yes | text | The vendor's name at which the locale is bounded to. | |
locale | yes | text | The locale name. |
GET Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
model | yes | text | The model's name at which the locale is bounded to. | |
version | no | text | latest | Model's version. |
prefix | no | text | builds |
The prefix to apply to the brand's locale keys. |
compatibility | no | boolean | true |
Use both the global and the brand and model specific locales. |
scoped | no | boolean | false |
Uses only the locales of the given version. |
extended | no | boolean | false |
Extends the locale values with all the locales of the model. |
Locale Values
Example Request
curl "https://ripe-core-sbx.platforme.com/api/builds/swear/locale/en_us/values"\
-H "X-Secret-Key: $RIPE_KEY"
Example Response
{
"colors.beige": "Beige",
"colors.black": "Black",
"colors.black0_green": "Black & Green",
"colors.black0_grey": "Black & Grey",
"colors.black0_orange": "Black & Orange",
"colors.black0_red": "Black & Red",
"colors.black0_white": "Black & White",
"colors.blue": "Blue",
"colors.blue0_blue0_white": "Blue & White",
"colors.blue0_orange": "Blue & Orange",
"colors.blue_grey": "${en_us.colors.blue_grey}",
"colors.blue_reflective": "${en_us.colors.blue_reflective}",
"colors.blush": "Blush",
"colors.burnt_orange": "Burnt Orange",
"colors.camouflage": "Camouflage",
"colors.chestnut": "Chestnut",
"colors.chocolate": "Chocolate",
"colors.clear_white": "Clear White",
"colors.cobalt": "Cobalt",
"colors.copper": "Copper",
"colors.copper_brown": "Copper Brown",
"colors.dark_cherry": "Dark Cherry",
"colors.dark_grey": "Dark Grey",
"colors.default": "Default",
"colors.denim": "${en_us.colors.denim}",
"colors.emerald": "Emerald",
"colors.forest_green": "Forest Green",
"colors.fuchsia": "Fuchsia",
"colors.gold": "Gold",
"colors.golden_yellow": "Golden Yellow",
"colors.green": "Green",
"colors.grey": "Grey",
"colors.grey_reflective": "${en_us.colors.grey_reflective}",
"colors.gum": "Gum",
"colors.gum0_black": "Gum & Black",
"colors.gum0_white": "Gum & White",
"colors.gunmetal": "Gunmetal",
"colors.khaki": "Khaki",
"colors.leopard": "Leopard",
"colors.light_grey": "Light Grey",
"colors.multi": "${en_us.colors.multi}",
"colors.mustard": "Mustard",
"colors.natural": "Natural",
"colors.navy": "Navy",
"colors.neon_green0_black": "Neon Green & Black",
"colors.neon_orange": "Neon Orange",
"colors.neon_pink": "Neon Pink",
"colors.neon_white": "Neon White",
"colors.neon_yellow": "Neon Yellow",
"colors.nude": "Nude",
"colors.off_white": "Off White",
"colors.orange": "Orange",
"colors.orange0_black": "Orange & Black",
"colors.pink": "Pink",
"colors.purple": "Purple",
"colors.raw": "Raw",
"colors.red": "Red",
"colors.rose": "Rose",
"colors.silver": "Silver",
"colors.tan": "Tan",
"colors.taupe": "Taupe",
"colors.teal_blue": "Teal Blue",
"colors.terracotta": "Terracotta",
"colors.transparent": "Transparent",
"colors.transparent0_black": "Transparent & Black",
"colors.transparent0_white": "Transparent & White",
"colors.violet": "Violet",
"colors.white": "White",
"colors.white0_black": "White & Black",
"colors.white0_black0_white": "White & Black",
"colors.white0_grey": "White & Grey",
"colors.white0_red": "White & Red",
"colors.yellow": "Yellow",
"colors.yellow0_yellow0_white": "Yellow & White",
"colors.yellow_pink": "${en_us.colors.yellow_pink}",
"materials.airtech_mesh": "Airtech Mesh",
"materials.calf_lining": "Calf Lining",
"materials.calf_lining10_corso_como": "Calf Lining",
"materials.crocodile": "Crocodile",
"materials.default": "Default",
"materials.elastic": "Elastic",
"materials.elastic10_corso_como": "Elastic",
"materials.gel_mesh": "Gel Mesh",
"materials.grain_metallic": "Grain Metallic",
"materials.grain_nappa": "Grain Nappa",
"materials.hairy_calf": "Hairy Calf",
"materials.hex_rubber": "Rubber",
"materials.leather": "Leather",
"materials.mesh": "Mesh",
"materials.metal": "Metal",
"materials.metallic": "Metallic",
"materials.nappa": "Nappa",
"materials.nappa10_corso_como": "Nappa",
"materials.nappa_tag": "Nappa Tag",
"materials.no_fringe": "No Fringe",
"materials.no_fringe_hardware": "No Fringe Hardware",
"materials.no_metal_toe_cap": "No Metal Toe Cap",
"materials.no_strap_tip": "No Strap Tip",
"materials.no_strap_tips": "No Strap",
"materials.no_tag_left": "No Tag",
"materials.no_tag_right": "No Tag",
"materials.nori_metal": "Metal",
"materials.nori_nylon": "Nylon",
"materials.nori_nylon_upper": "Nylon",
"materials.nori_reflective_textile": "Reflective Textile",
"materials.nori_rubber": "Rubber",
"materials.nori_rubber_upper": "Rubber",
"materials.nylon": "Nylon",
"materials.nylon0_plastic": "Plastic Nylon",
"materials.nylon_tape": "Nylon Tape",
"materials.organic_cotton": "Organic_Cotton",
"materials.ostrich": "Ostrich",
"materials.patent_leather": "Patent",
"materials.photo": "Photo",
"materials.polyester": "Polyester",
"materials.python": "Python",
"materials.reflective": "Reflective",
"materials.reflective0_grossgrain": "Reflective & Grosgrain",
"materials.reflective_textile": "Reflective Textile",
"materials.rubber": "Rubber",
"materials.rubber_heel": "Rubber Heel",
"materials.rubber_strap": "Rubber Strap",
"materials.rubber_wedge": "Rubber Wedge",
"materials.stretch_knit": "Stretch Knit",
"materials.stretch_nappa": "Stretch Nappa",
"materials.suede": "Suede",
"materials.veg_tan": "Veg Tan",
"materials.wax_nubuck": "Wax Nubuck",
"materials.web_mesh": "Mesh",
"materials.wicker_nylon": "Nylon",
"parts.accents": "Accents",
"parts.ankle_side": "Ankle Side",
"parts.back_stay": "Back Stay",
"parts.body": "Body",
"parts.collar": "Collar",
"parts.elastic": "Elastic",
"parts.eye_stay": "Eye Stay",
"parts.eyestay0_side": "Eyestay & Side",
"parts.fringe": "Fringe",
"parts.fringe_hardware": "Fringe Hardware",
"parts.front": "Front",
"parts.front_panel": "Front Panel",
"parts.hardware": "Hardware",
"parts.heel": "Heel",
"parts.heel0_trimmings": "Trimmings",
"parts.heel_puller": "Heel Puller",
"parts.heel_tab": "Heel Tab",
"parts.inside": "Inside",
"parts.inside_panel": "Inside Panel",
"parts.lace": "Lace",
"parts.lace0_eyelet": "Laces",
"parts.laces": "Laces",
"parts.lining": "Lining",
"parts.logo": "Logo",
"parts.metal_toe_cap": "Metal Toe Cap",
"parts.mudguard": "Mudgard",
"parts.outside": "Outside",
"parts.outsole": "Outsole",
"parts.piping": "Piping",
"parts.rubber_strap": "Rubber Strap",
"parts.shadow": "Shadow",
"parts.side": "Side",
"parts.side0_tongue_detail": "Side & Tongue",
"parts.sole": "Sole",
"parts.stay": "Stay",
"parts.strap_tip": "Strap Tip",
"parts.strap_tips": "Strap Tips",
"parts.straps": "Straps",
"parts.swear_tape": "Swear Tape",
"parts.tag_left": "Left Tag",
"parts.tag_right": "Right Tag",
"parts.toe0_tongue": "Toe & Tongue",
"parts.toe_cap": "Toe Cap",
"parts.tongue": "Tongue",
"parts.tongue_detail": "Tongue Detail",
"parts.trimmings": "Trimmings",
"parts.ugly_tape": "Ugly Tape",
"parts.upper": "Upper",
"parts.upper1": "Upper 1",
"parts.upper2": "Upper 2",
"parts.zip": "Zip",
"parts.zip_puller": "Zip Puller",
"properties.font.metal_copper": "Metal Cooper",
"properties.font.metal_gold": "Metal Gold",
"properties.font.metal_gunmetal": "Metal Gunmetal",
"properties.font.metal_silver": "Metal Silver",
"properties.position.left": "Left",
"properties.position.right": "Right"
}
This endpoint returns all the key and values for a given locale.
HTTP Request
GET /api/builds/<text:brand>/locale/<text:locale>/values
Path Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
brand | yes | text | The vendor's name at which the locale is bounded to. | |
locale | yes | text | The locale name. |
GET Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
model | no | text | null |
The model's name at which the locale is bounded to. |
version | no | text | latest | Model's version. |
placeholder | no | text | locale value | The locale's placeholder that replaces the locale value for locales keys that do have a translation. |
Resources
Locale
Field | Type | Description |
---|---|---|
brand | text | Vendor's name. |
model | text | Models's name. |
locale | text | The locale identifier following the format language-country , respectively in ISO 639-1 and ISO 3166-2 formats. |
values | list of text | The list of values requested to get the locale of. |
values_l | list of text | The list of localized values. |
Account Endpoints
Me
This endpoint is used to get information about the account currently logged in and in session.
Example Request
curl "https://ripe-core-sbx.platforme.com/api/accounts/me"
Example Response
{
"username": "tobias",
"name": "tobias@platforme.com",
"email": "tobias@platforme.com",
"type": "user",
"tokens": [
"*"
]
}
HTTP Request
GET https://ripe-core-sbx.platforme.com/api/accounts/me
Tenancy
This endpoint is used to get the tenancy of the account currently logged in and in session.
Example Request
curl "https://ripe-core-sbx.platforme.com/api/accounts/me/tenancy"
Example Response
{
"result": "success"
}
{
"brand_t": "swear",
"retailer_t": "swear",
"vendor_t": "swear"
}
HTTP Request
GET https://ripe-core-sbx.platforme.com/api/accounts/me/tenancy
Justification Endpoints
List
The list endpoint returns the existing justifications according to the given parameters. If no parameters are given, it will be returned all the justifications the user has permissions to access. A user only has permission to access and modify data related to him, meaning that he can only access data from the brands he is responsible for.
Query support can be consulted here
Example Request
curl "https://ripe-core-sbx.platforme.com/api/justifications?filters[]=code:eq:client_request" \
-H "X-Secret-Key: $RIPE_KEY"
Example Response
[
{
"_id": "5e175edcc4b8546c39d36634",
"id": 1,
"enabled": true,
"description": "",
"created": 1578589916,
"modified": 1578589916,
"meta": {},
"brand_t": null,
"retailer_t": null,
"vendor_t": null,
"context": "order.cancel",
"code": "client_request",
"code_full": "order.cancel:client_request",
"text": "Client requested to.",
"text_m": {}
}
]
HTTP Request
GET https://ripe-core-sbx.platforme.com/api/justifications
Parameters
This request receives 2 parameters: filter_operator
and filters
. If filters
is defined but not filter_operator
, its default value will be $and
.
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
filter_operator | no | text | $and |
The logic operator that unites all the options given in filters . |
filters | no | text | null |
The filters that will be applied to the availability rules query. Must have the structure <parameter>:<operator>:<value> . More than one filter can be given to the query, and their application together is based on the filter_operator given. |
Filter Operator Values
Value | Description |
---|---|
$and | The results given must comply with all the filters. |
$or | The results given must comply with at least on of the filters. |
Filters Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
available | no | boolean | null |
The availability of the combination specified. |
country | no | text | null |
The ISO 3166-2 code of the country to which the product is going to be purchased. |
flag | no | text | null |
The flag value, which is used to identify arbitrary contexts (ie: seasonal promo, special event, among others) . |
brand | no | text | null |
The model's brand. |
shoe | no | text | null |
The model's name. |
variant | no | text | null |
The variant (or sub-variant) of the specified model. |
part | no | text | null |
The part of the model to which the availability rule will be applied. |
material | no | text | null |
The material of the part to which the availability rule will be applied. |
color | no | text | null |
The color of the material of the part to which the availability rule will be applied. |
priority | no | numeric | null |
The priority of the availability rule. |
name | no | text | null |
The name of the availability rule. |
List by Context
Returns the justifications of a given context. If the user does not have permissions to access the justification's brand, returns a Not Found Exception (404) error.
The context is normally the name of entity concatenated with the event that requires the justification (i.e. order.cancel
or order.qa.approve
).
Example Request
curl "https://ripe-core-sbx.platforme.com/api/justifications/order.cancel" \
-H "X-Secret-Key: $RIPE_KEY"
Example Response
[
{
"_id": "5e175edcc4b8546c39d36634",
"id": 1,
"enabled": true,
"description": "",
"created": 1578589916,
"modified": 1578589916,
"meta": {},
"brand_t": null,
"retailer_t": null,
"vendor_t": null,
"context": "order.cancel",
"code": "client_request",
"code_full": "order.cancel:client_request",
"text": "Client requested to.",
"text_m": {}
},
{
"_id": "5fa2a0a1b080aee841e106fd",
"id": 2,
"enabled": true,
"description": "",
"created": 1604493473,
"modified": 1604493473,
"meta": {},
"brand_t": null,
"retailer_t": null,
"vendor_t": null,
"context": "order.cancel",
"code": "payment_refused",
"code_full": "order.cancel:payment_refused",
"text": "Payment Refused",
"text_m": {}
}
]
HTTP Request
GET https://ripe-core-sbx.platforme.com/api/justifications/<str:context>
Path Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
context | yes | text | The context's name, normally comprised on an entity and an event. |
Availability Rule Endpoints
List
The list endpoint returns the existing availability rules according to the given parameters. If no parameters are given, it will be returned all the availability rules the user has permissions to access. A user only has permission to access and modify data related to him, meaning that he can only access data from the brands he is responsible for.
Query support can be consulted here.
Example Request
curl "https://ripe-core-sbx.platforme.com/api/availability_rules?filters[]=shoe:eq:vyner" \
-H "X-Secret-Key: $RIPE_KEY"
Example Response
[
{
"_id": "63dd10e5f1ff6fef2fd91a1b",
"id": 2658,
"available": true,
"country": "US",
"size": 40,
"flag": "no_exotic",
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"color": "black",
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"created": 1675432165,
"modified": 1675432165
},
{
"_id": "63dd10e5e4276e00fcd91dff",
"id": 2659,
"available": true,
"country": "US",
"size": 40,
"flag": "no_exotic",
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"color": "black",
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"created": 1675432165,
"modified": 1675432165
},
{
"_id": "63dd10e63d3615c905d92825",
"id": 2660,
"available": false,
"country": "US",
"size": 40,
"flag": "no_exotic",
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"color": "black",
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"created": 1675432166,
"modified": 1675432167
},
{
"_id": "63dd18bee4276e00fcd91efd",
"id": 2662,
"available": true,
"country": "US",
"size": 40,
"flag": "no_exotic",
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"color": "black",
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"created": 1675434174,
"modified": 1675434174
},
{
"_id": "63dd18be3d3615c905d92a03",
"id": 2663,
"available": true,
"country": "US",
"size": 40,
"flag": "no_exotic",
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"color": "black",
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"created": 1675434174,
"modified": 1675434174
},
{
"_id": "63dd18bf3d3615c905d92a05",
"id": 2664,
"available": false,
"country": "US",
"size": 40,
"flag": "no_exotic",
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"color": "black",
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"created": 1675434175,
"modified": 1675434175
},
{
"_id": "63dd1d723d3615c905d92c58",
"id": 2666,
"available": true,
"country": "US",
"size": 40,
"flag": "no_exotic",
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"color": "black",
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"created": 1675435378,
"modified": 1675435378
},
{
"_id": "63dd1d72c9fbf20c37d91952",
"id": 2667,
"available": true,
"country": "US",
"size": 40,
"flag": "no_exotic",
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"color": "black",
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"created": 1675435378,
"modified": 1675435378
},
{
"_id": "63dd1d72a5955f4469d9259e",
"id": 2668,
"available": false,
"country": "US",
"size": 40,
"flag": "no_exotic",
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"color": "black",
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"created": 1675435378,
"modified": 1675435378
},
{
"_id": "63dd1f63a5955f4469d92683",
"id": 2670,
"available": true,
"country": "US",
"size": 40,
"flag": "no_exotic",
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"color": "black",
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"created": 1675435875,
"modified": 1675435875
}
]
HTTP Request
GET https://ripe-core-sbx.platforme.com/api/availability_rules
Parameters
This request receives 2 parameters: filter_operator
and filters
. If filters
is defined but not filter_operator
, its default value will be $and
.
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
filter_operator | no | text | $and |
The logic operator that unites all the options given in filters . |
filters | no | text | null |
The filters that will be applied to the availability rules query. Must have the structure <parameter>:<operator>:<value> . More than one filter can be given to the query, and their application together is based on the filter_operator given. |
Filter Operator Values
Value | Description |
---|---|
$and | The results given must comply with all the filters. |
$or | The results given must comply with at least on of the filters. |
Filters Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
available | no | boolean | null |
The availability of the combination specified. |
country | no | text | null |
The ISO 3166-2 code of the country to which the product is going to be purchased. |
size | no | numeric | null |
The model's native size. |
flag | no | text | null |
The flag value, which is used to identify arbitrary contexts (ie: seasonal promo, special event, among others) . |
brand | no | text | null |
The model's brand. |
shoe | no | text | null |
The model's name. |
variant | no | text | null |
The variant (or sub-variant) of the specified model. |
part | no | text | null |
The part of the model to which the availability rule will be applied. |
material | no | text | null |
The material of the part to which the availability rule will be applied. |
color | no | text | null |
The color of the material of the part to which the availability rule will be applied. |
priority | no | numeric | null |
The priority of the availability rule. |
name | no | text | null |
The name of the availability rule. |
Create
Creates an availability rule for a specific combination of part, material and color of a model of a brand. If the user does not have permission for the given brand, an error is returned.
Example Request
curl -s -X POST \
"https://ripe-core-sbx.platforme.com/api/availability_rules" \
-H "Content-Type: application/json" \
-H "X-Secret-Key: $RIPE_KEY" \
-d '{
"available":"true",
"country":"US",
"size": 40,
"flag":"no_exotic",
"brand":"swear",
"model":"vyner",
"part":"front",
"material":"nappa",
"color":"black"
}'
Example Response
{
"_id": "6598261bed44d3f74baaf940",
"id": 2862,
"available": true,
"country": "US",
"size": 40,
"flag": "no_exotic",
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"color": "black",
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"created": 1704470043,
"modified": 1704470043
}
HTTP Request
POST https://ripe-core-sbx.platforme.com/api/availability_rules
POST Body
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
available | yes | boolean | The availability of the combination specified. | |
country | yes | text | The ISO 3166-2 code of the country to which the product is going to be purchased. |
|
size | no | numeric | null |
The model's native size. |
flag | no | text | null |
The flag value, which is used to identify arbitrary contexts (ie: seasonal promo, special event, among others) |
brand | no | text | null |
The model's brand. |
shoe | no | text | null |
The model's name. |
variant | no | text | null |
The variant (or sub-variant) of the specified model. |
part | no | text | null |
The part of the model to which the availability rule will be applied. |
material | no | text | null |
The material of the part to which the availability rule will be applied. |
color | no | text | null |
The color of the material of the part to which the availability rule will be applied. |
priority | no | numeric | null |
The priority of the availability rule. |
name | no | text | null |
The name of the availability rule. |
Show
Returns the availability with the given ID. If the user does not have permissions to access the rule's brand, returns a Not Found Exception (404) error.
Example Request
curl "https://ripe-core-sbx.platforme.com/api/availability_rules/<id>" \
-H "X-Secret-Key: $RIPE_KEY"
Example Response
{
"_id": "6598261bed44d3f74baaf942",
"id": 2863,
"available": true,
"country": "US",
"size": 40,
"flag": "no_exotic",
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"color": "black",
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"created": 1704470043,
"modified": 1704470043
}
HTTP Request
GET https://ripe-core-sbx.platforme.com/api/availability_rules/<int:id>
Path Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
id | yes | numeric | The availability rule's unique identification (ID). |
Update
Updates the availability with the given ID. If the user does not have permissions to update the rule's brand, returns a Not Found Exception (404) error.
Example Request
curl -s -X PUT \
"https://ripe-core-sbx.platforme.com/api/availability_rules/1" \
-H "Content-Type: application/json" \
-H "X-Secret-Key: $RIPE_KEY" \
-d '{
"available":"true",
"country":"US",
"size": 40,
"flag":"no_exotic",
"brand":"swear",
"shoe":"vyner",
"part":"front",
"material":"nappa",
"color":"black"
}'
Example Response
{
"_id": "6598261ced44d3f74baaf945",
"id": 2864,
"available": false,
"country": "US",
"size": 40,
"flag": "no_exotic",
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"color": "black",
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"created": 1704470044,
"modified": 1704470044
}
HTTP Request
PUT https://ripe-core-sbx.platforme.com/api/availability_rules/<int:id>
Path Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
id | yes | numeric | The availability rule's unique identification (ID). |
POST Body
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
available | yes | boolean | The availability of the combination specified. | |
country | yes | text | The ISO 3166-2 code of the country to which the product is going to be purchased. |
|
size | no | numeric | null |
The model's native size. |
flag | no | text | null |
The flag value, which is used to identify arbitrary contexts (ie: seasonal promo, special event, among others) |
brand | no | text | null |
The model's brand. |
shoe | no | text | null |
The model's name. |
variant | no | text | null |
The variant (or sub-variant) of the specified model. |
part | no | text | null |
The part of the model to which the availability rule will be applied. |
material | no | text | null |
The material of the part to which the availability rule will be applied. |
color | no | text | null |
The color of the material of the part to which the availability rule will be applied. |
priority | no | numeric | null |
The priority of the availability rule. |
name | no | text | null |
The name of the availability rule. |
Delete
Deletes the availability with the given ID. If the user does not have permissions to access the rule's brand, returns a Not Found Exception (404) error.
Example Request
curl -s -X DELETE "https://ripe-core-sbx.platforme.com/api/availability_rules/1" \
-H "X-Secret-Key: $RIPE_KEY"
Example Response
{
"result": "success"
}
HTTP Request
DELETE https://ripe-core-sbx.platforme.com/api/availability_rules/<int:id>
Path Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
id | yes | numeric | The availability rule's unique identification (ID). |
Country Group Endpoints
List
The list endpoint returns the existing country groups rules according to the given parameters. If no parameters are given, it will return all the country groups the user has permissions to access. A user only has permission to access and modify data related to him, meaning that he can only access data from the brands he is responsible for.
Query support can be consulted here
Example Request
curl "https://ripe-core-sbx.platforme.com/api/country_groups?filters[]=currency:eq:eur" \
-H "X-Secret-Key: $RIPE_KEY"
Example Response
[
{
"_id": "5e3d96c1d273eb3309b5fb74",
"id": 36,
"name": "UK",
"currency": "eur",
"countries": [
"uk",
"pttd"
],
"enabled": true,
"description": "123",
"meta": {},
"brand_t": "chanel",
"retailer_t": null,
"vendor_t": null,
"created": 1581094593,
"modified": 1621610113,
"brand": "chanel"
},
{
"_id": "5a144eeeeabf410033eabd46",
"description": "Europe",
"countries": [
"be",
"cy",
"ee",
"fi",
"fr",
"de",
"gr",
"ie",
"it",
"lv",
"lt",
"lu",
"mt",
"nl",
"pt",
"sk",
"sl",
"es",
"cz"
],
"created": 1511280366,
"enabled": true,
"modified": 1622629675,
"currency": "eur",
"meta": {},
"id": 8,
"name": "fendi-eur",
"brand": "dummy",
"brand_t": "dummy",
"retailer_t": null,
"vendor_t": null
},
{
"_id": "5dd2b7875a20c466ae6438be",
"id": 14,
"enabled": true,
"description": "N21 EUROPE",
"created": 1574090631,
"modified": 1620926851,
"meta": {},
"brand_t": "n21",
"retailer_t": null,
"vendor_t": null,
"name": "n21-europee",
"currency": "eur",
"countries": [
"at",
"be",
"cy",
"dk",
"fi",
"fr",
"de",
"gr",
"hu",
"ie",
"it",
"lu",
"mt",
"mc",
"nl",
"pt",
"sm",
"es",
"se",
"ch"
],
"brand": "n21"
},
{
"_id": "5a04a275fe0902003a1a254a",
"description": "Europe 4",
"countries": [
"ru",
"dz",
"eg",
"lr",
"ma",
"za",
"tn"
],
"created": 1510253173,
"enabled": true,
"modified": 1510253173,
"currency": "eur",
"meta": {},
"id": 4,
"name": "sr-eur4",
"brand_t": null,
"retailer_t": null,
"vendor_t": null,
"brand": null
},
{
"_id": "5a8b101d32fd48003b2c3f85",
"description": "North Europe \u20ac",
"countries": [
"fi",
"ie",
"no",
"se"
],
"created": 1519063069,
"enabled": true,
"modified": 1519063069,
"currency": "eur",
"meta": {},
"id": 11,
"name": "ep-eur3",
"brand_t": null,
"retailer_t": null,
"vendor_t": null,
"brand": null
},
{
"_id": "5a04a275fe0902003a1a2548",
"description": "Europe 3",
"countries": [
"dk",
"fi",
"is",
"no",
"se"
],
"created": 1510253173,
"enabled": true,
"modified": 1510253173,
"currency": "eur",
"meta": {},
"id": 3,
"name": "sr-eur3",
"brand_t": null,
"retailer_t": null,
"vendor_t": null,
"brand": null
},
{
"_id": "5a8b101d32fd48003b2c3f81",
"description": "Italy \u20ac",
"countries": [
"at",
"be",
"hr",
"dk",
"eg",
"de",
"gr",
"il",
"it",
"lu",
"nl",
"pt",
"za",
"es",
"ch",
"tn",
"tr"
],
"created": 1519063069,
"enabled": true,
"modified": 1519063069,
"currency": "eur",
"meta": {},
"id": 9,
"name": "ep-eur",
"brand_t": null,
"retailer_t": null,
"vendor_t": null,
"brand": null
},
{
"_id": "5a8b101d32fd48003b2c3f83",
"description": "Russia & East Europe \u20ac",
"countries": [
"bg",
"cz",
"ee",
"hu",
"lv",
"pl",
"ro",
"ru",
"sk",
"sl",
"ua"
],
"created": 1519063069,
"enabled": true,
"modified": 1519063069,
"currency": "eur",
"meta": {},
"id": 10,
"name": "ep-eur2",
"brand_t": null,
"retailer_t": null,
"vendor_t": null,
"brand": null
},
{
"_id": "5a04a275fe0902003a1a2546",
"description": "Europe 2",
"countries": [
"al",
"bh",
"by",
"ba",
"bg",
"hr",
"cy",
"cz",
"ee",
"gr",
"hu",
"ie",
"il",
"kw",
"lv",
"lb",
"lt",
"mk",
"mt",
"md",
"me",
"pl",
"pt",
"qa",
"ro",
"sa",
"rs",
"sk",
"si",
"tr",
"ua",
"ae"
],
"created": 1510253173,
"enabled": true,
"modified": 1510253173,
"currency": "eur",
"meta": {},
"id": 2,
"name": "sr-eur2",
"brand_t": null,
"retailer_t": null,
"vendor_t": null,
"brand": null
},
{
"_id": "5a8b101d32fd48003b2c3f87",
"description": "Asia \u20ac",
"countries": [
"cn",
"in",
"id",
"my",
"ph",
"sg",
"tw",
"th",
"vn"
],
"created": 1519063069,
"enabled": true,
"modified": 1519063069,
"currency": "eur",
"meta": {},
"id": 12,
"name": "ep-eur4",
"brand_t": null,
"retailer_t": null,
"vendor_t": null,
"brand": null
}
]
HTTP Request
GET https://ripe-core-sbx.platforme.com/api/country_groups
Parameters
This request receives 2 parameters: filter_operator
and filters
. If filters
is defined but not filter_operator
, its default value will be $and
.
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
filter_operator | no | text | $and |
The logic operator that unites all the options given in filters . |
filters | no | text | null |
The filters that will be applied to the country group query. Must have the structure <parameter>:<operator>:<value> . More than one filter can be given to the query, and their application together is based on the filter_operator given. |
Filter Operator Values
Value | Description |
---|---|
$and | The results given must comply with all the filters. |
$or | The results given must comply with at least on of the filters. |
Filters Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
name | no | text | null |
The name of the country group. |
brand | no | text | null |
The country group's brand. |
countries | no | list of text | null |
A list of ISO 3166-1 codes of the countries the country group contains. |
currency | no | text | null |
The currency that is used by the country group. |
Create
Creates a country group for a brand with a name, list of countries and a currency. If the user does not have permission for the given brand, an error is returned.
Example Request
curl -s -X POST \
"https://ripe-core-sbx.platforme.com/api/country_groups" \
-H "Content-Type: application/json" \
-H "X-Secret-Key: $RIPE_KEY" \
-d '{
"brand":"swear",
"name": "test",
"countries": ["uk", "it", "fr"],
"currency": "eur"
}'
Example Response
{
"_id": "6598261eed44d3f74baaf94b",
"id": 557,
"brand": "swear",
"name": "test",
"countries": [
"uk",
"it",
"fr"
],
"currency": "eur",
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"created": 1704470046,
"modified": 1704470046
}
HTTP Request
POST https://ripe-core-sbx.platforme.com/api/country_groups
POST Body
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
name | yes | text | The name of the country group. | |
brand | no | text | null |
The country group's brand. |
countries | yes | list of text | A list of ISO 3166-1 codes of the countries the country group contains. |
|
currency | no | text | null |
The currency that is used by the country group. |
Show
Returns the country group with the given ID. If the user does not have permissions to access the group's brand, returns a Not Found Exception (404) error.
Example Request
curl "https://ripe-core-sbx.platforme.com/api/country_groups/1" \
-H "X-Secret-Key: $RIPE_KEY"
Example Response
{
"_id": "5a04a275fe0902003a1a2544",
"description": "Europe 1",
"countries": [
"ad",
"at",
"be",
"fr",
"de",
"it",
"li",
"lu",
"nl",
"es",
"ch"
],
"created": 1510253173,
"enabled": true,
"modified": 1510253173,
"currency": "eur",
"meta": {},
"id": 1,
"name": "sr-eur1",
"brand_t": null,
"retailer_t": null,
"vendor_t": null,
"brand": null
}
HTTP Request
GET https://ripe-core-sbx.platforme.com/api/country_groups/<int:id>
Path Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
id | yes | numeric | The country groups's unique identification (ID). |
Update
Updates the country group with the given ID. If the user does not have permissions to update the group's brand, returns a Not Found Exception (404) error.
Example Request
curl -s -X PUT \
"https://ripe-core-sbx.platforme.com/api/country_groups/1" \
-H "Content-Type: application/json" \
-H "X-Secret-Key: $RIPE_KEY" \
-d '{
"name": "test1"
}'
Example Response
{
"_id": "6598261fbb11325081aafdeb",
"id": 558,
"brand": "swear",
"name": "test1",
"countries": [
"uk",
"it",
"fr"
],
"currency": "eur",
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"created": 1704470047,
"modified": 1704470048
}
HTTP Request
PUT https://ripe-core-sbx.platforme.com/api/country_groups/<int:id>
Path Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
id | yes | numeric | The country groups's unique identification (ID). |
POST Body
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
name | no | text | null |
The name of the country group. |
brand | no | text | null |
The country group's brand. |
countries | no | list of text | null |
A list of ISO 3166-1 codes of the countries the country group contains. |
currency | no | text | null |
The currency that is used by the country group. |
Delete
Deletes the country group with the given ID. If the user does not have permissions to access the group's brand, returns a Not Found Exception (404) error.
Example Request
curl -s -X DELETE "https://ripe-core-sbx.platforme.com/api/country_groups/1" \
-H "X-Secret-Key: $RIPE_KEY"
Example Response
{
"result": "success"
}
HTTP Request
DELETE https://ripe-core-sbx.platforme.com/api/country_groups/<int:id>
Path Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
id | yes | numeric | The country groups's unique identification (ID). |
Factory Rule Endpoints
List
The list endpoint returns the existing factory rules according to the given parameters. If no parameters are given, it will be returned all the factory rules the user has permissions to access. A user only has permission to access and modify data related to him, meaning that he can only access data from the brands he is responsible for.
Query support can be consulted here.
Example Request
curl "https://ripe-core-sbx.platforme.com/api/factory_rules?filters[]=shoe:eq:vyner" \
-H "X-Secret-Key: $RIPE_KEY"
Example Response
[
{
"_id": "62d13d94809ee9f9000e0dbe",
"id": 327,
"brand": "swear",
"shoe": "vyner",
"variant": "",
"part": "",
"material": "",
"color": "",
"factory": "flaj",
"production_time": 7,
"production_cost": null,
"locale": "",
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"created": 1657879956,
"modified": 1657879956
},
{
"_id": "63345531abfc9aed5532a495",
"id": 344,
"brand": "swear",
"shoe": "vyner",
"factory": "factory",
"part": "front",
"material": "nappa",
"color": "white",
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"production_time": null,
"production_cost": null,
"locale": null,
"created": 1664374065,
"modified": 1664374065
},
{
"_id": "63345531abfc9aed5532a497",
"id": 345,
"factory": "factory",
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"color": "black",
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"production_time": null,
"production_cost": null,
"locale": null,
"created": 1664374065,
"modified": 1664374065
},
{
"_id": "63345531d7cccd800b32a386",
"id": 346,
"factory": "factory",
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"color": "black",
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"production_time": null,
"production_cost": null,
"locale": null,
"created": 1664374065,
"modified": 1664374065
},
{
"_id": "63345690f7ba63a14532a651",
"id": 348,
"brand": "swear",
"shoe": "vyner",
"factory": "factory",
"part": "front",
"material": "nappa",
"color": "white",
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"production_time": null,
"production_cost": null,
"locale": null,
"created": 1664374416,
"modified": 1664374416
},
{
"_id": "63345690f7ba63a14532a653",
"id": 349,
"factory": "factory",
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"color": "black",
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"production_time": null,
"production_cost": null,
"locale": null,
"created": 1664374416,
"modified": 1664374416
},
{
"_id": "633456916736fbd55032a37a",
"id": 350,
"factory": "factory",
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"color": "black",
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"production_time": null,
"production_cost": null,
"locale": null,
"created": 1664374417,
"modified": 1664374418
},
{
"_id": "633458f8158eae189f32a367",
"id": 352,
"brand": "swear",
"shoe": "vyner",
"factory": "factory",
"part": "front",
"material": "nappa",
"color": "white",
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"production_time": null,
"production_cost": null,
"locale": null,
"created": 1664375032,
"modified": 1664375032
},
{
"_id": "633458f831abfbb9b632a377",
"id": 353,
"factory": "factory",
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"color": "black",
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"production_time": null,
"production_cost": null,
"locale": null,
"created": 1664375032,
"modified": 1664375032
},
{
"_id": "633458f95b347fa03232a368",
"id": 354,
"factory": "factory",
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"color": "black",
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"production_time": null,
"production_cost": null,
"locale": null,
"created": 1664375033,
"modified": 1664375034
}
]
HTTP Request
GET https://ripe-core-sbx.platforme.com/api/factory_rules
Parameters
This request receives 2 parameters: filter_operator
and filters
. If filters
is defined but not filter_operator
, its default value will be $and
.
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
filter_operator | no | text | $and |
The logic operator that unites all the options given in filters . |
filters | no | text | null |
The filters that will be applied to the factory rules query. Must have the structure <parameter>:<operator>:<value> . More than one filter can be given to the query, and their application together is based on the filter_operator given. |
Filter Operator Values
Value | Description |
---|---|
$and | The results given must comply with all the filters. |
$or | The results given must comply with at least on of the filters. |
Filters Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
factory | no | text | null |
The factory name. |
brand | no | text | null |
The model's brand. |
shoe | no | text | null |
The model's name. |
variant | no | text | null |
The variant (or sub-variant) of the specified model. |
part | no | text | null |
The part of the model to which the factory rule will be applied. |
material | no | text | null |
The material of the part to which the factory rule will be applied. |
color | no | text | null |
The color of the material of the part to which the factory rule will be applied. |
priority | no | numeric | null |
The priority of the factory rule. |
name | no | text | null |
The name of the factory rule. |
production_time | no | text | null |
The amount of time (in days) for the item described in the rule to be produced. |
production_cost | no | text | null |
The cost of the production of the item in the rule in the local default currency. |
locale | no | text | en_us |
The locale to be used for assets related with the factory (eg: production order reports), if not defined the default locale will be used (en_us). |
Create
Creates a factory rule order for a specific combination of part, material and color of a model of a brand. If the user does not have permission for the given brand, an error is returned.
Example Request
curl -s -X POST \
"https://ripe-core-sbx.platforme.com/api/factory_rules" \
-H "Content-Type: application/json" \
-H "X-Secret-Key: $RIPE_KEY" \
-d '{
"brand":"swear",
"model":"vyner",
"factory": "factory",
"part":"front",
"material":"nappa",
"color":"white"
}'
Example Response
{
"_id": "65982622ed44d3f74baaf94e",
"id": 826,
"brand": "swear",
"shoe": "vyner",
"factory": "factory",
"part": "front",
"material": "nappa",
"color": "white",
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"production_time": null,
"production_cost": null,
"locale": null,
"created": 1704470050,
"modified": 1704470050
}
HTTP Request
POST https://ripe-core-sbx.platforme.com/api/factory_rules
POST Body
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
factory | yes | text | The factory's name. | |
brand | no | text | null |
The model's brand. |
shoe | no | text | null |
The model's name. |
variant | no | text | null |
The variant (or sub-variant) of the specified model. |
part | no | text | null |
The part of the model to which the factory rule will be applied. |
material | no | text | null |
The material of the part to which the factory rule will be applied. |
color | no | text | null |
The color of the material of the part to which the factory rule will be applied. |
priority | no | numeric | null |
The priority of the factory rule. |
name | no | text | null |
The name of the factory rule. |
production_time | no | text | null |
The amount of time (in days) for the item described in the rule to be produced. |
production_cost | no | text | null |
The cost of the production of the item in the rule in the local default currency. |
locale | no | text | en_us |
The locale to be used for assets related with the factory (eg: production order reports), if not defined the default locale will be used (en_us). |
Show
Returns the factory rule with the given ID. If the user does not have permissions to access the rule's brand, returns a Not Found Exception (404) error.
Example Request
curl "https://ripe-core-sbx.platforme.com/api/factory_rules/1" \
-H "X-Secret-Key: $RIPE_KEY"
Example Response
{
"_id": "659826223e27f1c070aafd5f",
"id": 827,
"factory": "factory",
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"color": "black",
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"production_time": null,
"production_cost": null,
"locale": null,
"created": 1704470050,
"modified": 1704470050
}
HTTP Request
GET https://ripe-core-sbx.platforme.com/api/factory_rule/<int:id>
Update
Updates the factory rule with the given ID. If the user does not have permissions to update the rule's brand, returns a Not Found Exception (404) error.
Example Request
curl -s -X PUT \
"https://ripe-core-sbx.platforme.com/api/factory_rules/1" \
-H "Content-Type: application/json" \
-H "X-Secret-Key: $RIPE_KEY" \
-d '{
"factory": "factory",
"brand":"swear",
"shoe":"vyner",
"part":"front",
"material":"nappa",
"color":"white"
}'
Example Response
{
"_id": "65982623bb11325081aafdf2",
"id": 828,
"factory": "factory",
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"color": "black",
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"production_time": null,
"production_cost": null,
"locale": null,
"created": 1704470051,
"modified": 1704470052
}
HTTP Request
PUT https://ripe-core-sbx.platforme.com/api/factory_rules/<int:id>
Path Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
id | yes | numeric | The rule's id. |
POST Body
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
factory | no | text | null |
The factory's name. |
brand | no | text | null |
The model's brand. |
shoe | no | text | null |
The model's name. |
variant | no | text | null |
The variant (or sub-variant) of the specified model. |
part | no | text | null |
The part of the model to which the factory rule will be applied. |
material | no | text | null |
The material of the part to which the factory rule will be applied. |
color | no | text | null |
The color of the material of the part to which the factory rule will be applied. |
priority | no | numeric | null |
The priority of the factory rule. |
name | no | text | null |
The name of the factory rule. |
Delete
Deletes the factory rule with the given ID. If the user does not have permissions to access the rule's brand, returns a Not Found Exception (404) error.
Example Request
curl -s -X DELETE "https://ripe-core-sbx.platforme.com/api/factory_rules/1" \
-H "X-Secret-Key: $RIPE_KEY"
Example Response
{
"_id": "65982624abc1d3d5b5aaf338",
"id": 829,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"factory": "factory",
"color": "white",
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"production_time": null,
"production_cost": null,
"locale": null,
"created": 1704470052,
"modified": 1704470052
}
HTTP Request
DELETE https://ripe-core-sbx.platforme.com/api/factory_rules/<int:id>
Path Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
id | yes | numeric | The rule's id. |
Invoice Rule Endpoints
List
The list endpoint returns the existing invoice rules according to the given parameters. If no parameters are given, it will be returned all the invoice rules the user has permissions to access. A user only has permission to access and modify data related to him, meaning that he can only access data from the brands he is responsible for.
Query support can be consulted here.
Example Request
curl "https://ripe-core-sbx.platforme.com/api/invoice_rules?filters[]=shoe:eq:vyner" \
-H "X-Secret-Key: $RIPE_KEY"
Example Response
[
{
"_id": "63b596f575e935ca8e9de560",
"id": 255,
"brand": "swear",
"shoe": "vyner",
"country": "pt",
"size": 40,
"invoicer": "invoice_express",
"invoice_details": {},
"enabled": false,
"description": "null",
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": "null",
"priority": null,
"created": 1672845045,
"modified": 1696430654
},
{
"_id": "63b596f688c2f019449e336a",
"id": 256,
"brand": "swear",
"shoe": "vyner",
"country": "pt",
"size": 40,
"invoicer": "sap",
"invoice_details": {},
"enabled": false,
"description": "null",
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": "null",
"priority": null,
"created": 1672845046,
"modified": 1696430654
},
{
"_id": "63b5990488c2f019449e380e",
"id": 259,
"brand": "swear",
"shoe": "vyner",
"country": "pt",
"size": 40,
"invoicer": "invoice_express",
"invoice_details": {},
"enabled": false,
"description": "null",
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": "null",
"priority": null,
"created": 1672845572,
"modified": 1696430654
},
{
"_id": "63b59905609120fa749e1027",
"id": 260,
"brand": "swear",
"shoe": "vyner",
"country": "pt",
"size": 40,
"invoicer": "sap",
"invoice_details": {},
"enabled": false,
"description": "null",
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": "null",
"priority": null,
"created": 1672845573,
"modified": 1696430654
},
{
"_id": "63b83d633a42aab1ed0af8ea",
"id": 263,
"brand": "swear",
"shoe": "vyner",
"country": "pt",
"size": 40,
"invoicer": "invoice_express",
"invoice_details": {},
"enabled": false,
"description": "null",
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": "null",
"priority": null,
"created": 1673018723,
"modified": 1696430654
},
{
"_id": "63b83d64b403d6be4c0af5a0",
"id": 264,
"brand": "swear",
"shoe": "vyner",
"country": "pt",
"size": 40,
"invoicer": "sap",
"invoice_details": {},
"enabled": false,
"description": "null",
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": "null",
"priority": null,
"created": 1673018724,
"modified": 1696430654
},
{
"_id": "63b846f910720200f5b84a2b",
"id": 267,
"brand": "swear",
"shoe": "vyner",
"country": "pt",
"size": 40,
"invoicer": "invoice_express",
"invoice_details": {},
"enabled": false,
"description": "null",
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": "null",
"priority": null,
"created": 1673021177,
"modified": 1696430654
},
{
"_id": "63b846f910720200f5b84a2e",
"id": 268,
"brand": "swear",
"shoe": "vyner",
"country": "pt",
"size": 40,
"invoicer": "sap",
"invoice_details": {},
"enabled": false,
"description": "null",
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": "null",
"priority": null,
"created": 1673021177,
"modified": 1696430654
},
{
"_id": "63b84b15836b93f7a2b84835",
"id": 271,
"brand": "swear",
"shoe": "vyner",
"country": "pt",
"size": 40,
"invoicer": "invoice_express",
"invoice_details": {},
"enabled": false,
"description": "null",
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": "null",
"priority": null,
"created": 1673022229,
"modified": 1696430654
},
{
"_id": "63bd398a2fa638beb5b85c64",
"id": 273,
"brand": "swear",
"shoe": "vyner",
"country": "pt",
"size": 40,
"invoicer": "invoice_express",
"invoice_details": {},
"enabled": false,
"description": "null",
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": "null",
"priority": null,
"created": 1673345418,
"modified": 1696430654
},
{
"_id": "63bd398ba3aba65875b84e58",
"id": 274,
"brand": "swear",
"shoe": "vyner",
"country": "pt",
"size": 40,
"invoicer": "sap",
"invoice_details": {},
"enabled": false,
"description": "null",
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": "null",
"priority": null,
"created": 1673345419,
"modified": 1696430654
},
{
"_id": "63bd3c844a67397801b85a40",
"id": 277,
"brand": "swear",
"shoe": "vyner",
"country": "pt",
"size": 40,
"invoicer": "invoice_express",
"invoice_details": {},
"enabled": false,
"description": "null",
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": "null",
"priority": null,
"created": 1673346180,
"modified": 1696430654
},
{
"_id": "63bd3c8410720200f5b86869",
"id": 278,
"brand": "swear",
"shoe": "vyner",
"country": "pt",
"size": 40,
"invoicer": "sap",
"invoice_details": {},
"enabled": false,
"description": "null",
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": "null",
"priority": null,
"created": 1673346180,
"modified": 1696430654
},
{
"_id": "63bd3e5e2fa638beb5b86023",
"id": 281,
"brand": "swear",
"shoe": "vyner",
"country": "pt",
"size": 40,
"invoicer": "invoice_express",
"invoice_details": {},
"enabled": false,
"description": "null",
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": "null",
"priority": null,
"created": 1673346654,
"modified": 1696430654
},
{
"_id": "63bd3e5f2fa638beb5b86026",
"id": 282,
"brand": "swear",
"shoe": "vyner",
"country": "pt",
"size": 40,
"invoicer": "sap",
"invoice_details": {},
"enabled": false,
"description": "null",
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": "null",
"priority": null,
"created": 1673346655,
"modified": 1696430654
},
{
"_id": "63c536a9ea0be08de2a08702",
"id": 285,
"brand": "swear",
"shoe": "vyner",
"country": "pt",
"size": 40,
"invoicer": "invoice_express",
"invoice_details": {},
"enabled": false,
"description": "null",
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": "null",
"priority": null,
"created": 1673868969,
"modified": 1696430654
},
{
"_id": "63c536a9ccb3eeacfea08b9a",
"id": 286,
"brand": "swear",
"shoe": "vyner",
"country": "pt",
"size": 40,
"invoicer": "sap",
"invoice_details": {},
"enabled": false,
"description": "null",
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": "null",
"priority": null,
"created": 1673868969,
"modified": 1696430654
},
{
"_id": "63d7ec18377bf3d6846fe6be",
"id": 289,
"brand": "swear",
"shoe": "vyner",
"country": "pt",
"size": 40,
"invoicer": "invoice_express",
"invoice_details": {},
"enabled": false,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"created": 1675095064,
"modified": 1696430654
},
{
"_id": "63d7ec19b0e6b723446fe9b0",
"id": 290,
"brand": "swear",
"shoe": "vyner",
"country": "pt",
"size": 40,
"invoicer": "sap",
"invoice_details": {},
"enabled": false,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"created": 1675095065,
"modified": 1696430654
},
{
"_id": "63d7ed11813616c1d26fe770",
"id": 293,
"brand": "swear",
"shoe": "vyner",
"country": "pt",
"size": 40,
"invoicer": "invoice_express",
"invoice_details": {},
"enabled": false,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"created": 1675095313,
"modified": 1696430654
},
{
"_id": "63d7ed12813616c1d26fe773",
"id": 294,
"brand": "swear",
"shoe": "vyner",
"country": "pt",
"size": 40,
"invoicer": "sap",
"invoice_details": {},
"enabled": false,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"created": 1675095314,
"modified": 1696430654
},
{
"_id": "63d7ef2d6cc9f853026fe78d",
"id": 297,
"brand": "swear",
"shoe": "vyner",
"country": "pt",
"size": 40,
"invoicer": "invoice_express",
"invoice_details": {},
"enabled": false,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"created": 1675095853,
"modified": 1696430654
},
{
"_id": "63d7ef2eb0e6b723446fecc0",
"id": 298,
"brand": "swear",
"shoe": "vyner",
"country": "pt",
"size": 40,
"invoicer": "sap",
"invoice_details": {},
"enabled": false,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"created": 1675095854,
"modified": 1696430654
},
{
"_id": "63d7eff4b0e6b723446fee4b",
"id": 301,
"brand": "swear",
"shoe": "vyner",
"country": "pt",
"size": 40,
"invoicer": "invoice_express",
"invoice_details": {},
"enabled": false,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"created": 1675096052,
"modified": 1696430654
},
{
"_id": "63d7eff4b0e6b723446fee4e",
"id": 302,
"brand": "swear",
"shoe": "vyner",
"country": "pt",
"size": 40,
"invoicer": "sap",
"invoice_details": {},
"enabled": false,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"created": 1675096052,
"modified": 1696430654
},
{
"_id": "63d7f430377bf3d6846feafb",
"id": 305,
"brand": "swear",
"shoe": "vyner",
"country": "pt",
"size": 40,
"invoicer": "invoice_express",
"invoice_details": {},
"enabled": false,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"created": 1675097136,
"modified": 1696430654
},
{
"_id": "63d7f431b0e6b723446ff271",
"id": 306,
"brand": "swear",
"shoe": "vyner",
"country": "pt",
"size": 40,
"invoicer": "sap",
"invoice_details": {},
"enabled": false,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"created": 1675097137,
"modified": 1696430654
},
{
"_id": "63dcfdffa5955f4469d919c9",
"id": 309,
"brand": "swear",
"shoe": "vyner",
"country": "pt",
"size": 40,
"invoicer": "invoice_express",
"invoice_details": {},
"enabled": false,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"created": 1675427327,
"modified": 1696430654
},
{
"_id": "63dcfdff3d3615c905d91a1a",
"id": 310,
"brand": "swear",
"shoe": "vyner",
"country": "pt",
"size": 40,
"invoicer": "sap",
"invoice_details": {},
"enabled": false,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"created": 1675427327,
"modified": 1696430654
},
{
"_id": "63dd020f3d3615c905d91d42",
"id": 313,
"brand": "swear",
"shoe": "vyner",
"country": "pt",
"size": 40,
"invoicer": "invoice_express",
"invoice_details": {},
"enabled": false,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"created": 1675428367,
"modified": 1696430654
},
{
"_id": "63dd02103d3615c905d91d45",
"id": 314,
"brand": "swear",
"shoe": "vyner",
"country": "pt",
"size": 40,
"invoicer": "sap",
"invoice_details": {},
"enabled": false,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"created": 1675428368,
"modified": 1696430654
},
{
"_id": "63dd05b4f1ff6fef2fd917f0",
"id": 317,
"brand": "swear",
"shoe": "vyner",
"country": "pt",
"size": 40,
"invoicer": "invoice_express",
"invoice_details": {},
"enabled": false,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"created": 1675429300,
"modified": 1696432749
},
{
"_id": "63dd05b5f1ff6fef2fd917f3",
"id": 318,
"brand": "swear",
"shoe": "vyner",
"country": "pt",
"size": 40,
"invoicer": "sap",
"invoice_details": {},
"enabled": false,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"created": 1675429301,
"modified": 1696432749
},
{
"_id": "63dd0648e4276e00fcd919d3",
"id": 321,
"brand": "swear",
"shoe": "vyner",
"country": "pt",
"size": 40,
"invoicer": "invoice_express",
"invoice_details": {},
"enabled": false,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"created": 1675429448,
"modified": 1696432749
},
{
"_id": "63dd06483d3615c905d92125",
"id": 322,
"brand": "swear",
"shoe": "vyner",
"country": "pt",
"size": 40,
"invoicer": "sap",
"invoice_details": {},
"enabled": false,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"created": 1675429448,
"modified": 1696432749
},
{
"_id": "63dd0abce4276e00fcd91c95",
"id": 325,
"brand": "swear",
"shoe": "vyner",
"country": "pt",
"size": 40,
"invoicer": "invoice_express",
"invoice_details": {},
"enabled": false,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"created": 1675430588,
"modified": 1696432749
},
{
"_id": "63dd0abd3d3615c905d92518",
"id": 326,
"brand": "swear",
"shoe": "vyner",
"country": "pt",
"size": 40,
"invoicer": "sap",
"invoice_details": {},
"enabled": false,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"created": 1675430589,
"modified": 1696432749
},
{
"_id": "63dd18c83d3615c905d92a12",
"id": 329,
"brand": "swear",
"shoe": "vyner",
"country": "pt",
"size": 40,
"invoicer": "invoice_express",
"invoice_details": {},
"enabled": false,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"created": 1675434184,
"modified": 1696432749
},
{
"_id": "63dd18c9a5955f4469d924bc",
"id": 330,
"brand": "swear",
"shoe": "vyner",
"country": "pt",
"size": 40,
"invoicer": "sap",
"invoice_details": {},
"enabled": false,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"created": 1675434185,
"modified": 1696432749
},
{
"_id": "63dd1d733d3615c905d92c72",
"id": 333,
"brand": "swear",
"shoe": "vyner",
"country": "pt",
"size": 40,
"invoicer": "invoice_express",
"invoice_details": {},
"enabled": false,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"created": 1675435379,
"modified": 1696432749
},
{
"_id": "63dd1d733d3615c905d92c74",
"id": 334,
"brand": "swear",
"shoe": "vyner",
"country": "pt",
"size": 40,
"invoicer": "sap",
"invoice_details": {},
"enabled": false,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"created": 1675435379,
"modified": 1696432749
},
{
"_id": "63dd2288e4276e00fcd92288",
"id": 337,
"brand": "swear",
"shoe": "vyner",
"country": "pt",
"size": 40,
"invoicer": "invoice_express",
"invoice_details": {},
"enabled": false,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"created": 1675436680,
"modified": 1696432749
},
{
"_id": "63dd22893d3615c905d92fbd",
"id": 338,
"brand": "swear",
"shoe": "vyner",
"country": "pt",
"size": 40,
"invoicer": "sap",
"invoice_details": {},
"enabled": false,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"created": 1675436681,
"modified": 1696432749
},
{
"_id": "63dd25a9a5955f4469d92948",
"id": 341,
"brand": "swear",
"shoe": "vyner",
"country": "pt",
"size": 40,
"invoicer": "invoice_express",
"invoice_details": {},
"enabled": false,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"created": 1675437481,
"modified": 1696432749
},
{
"_id": "63dd25aaa5955f4469d9294a",
"id": 342,
"brand": "swear",
"shoe": "vyner",
"country": "pt",
"size": 40,
"invoicer": "sap",
"invoice_details": {},
"enabled": false,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"created": 1675437482,
"modified": 1696432749
},
{
"_id": "63dd3c7ba5955f4469d92d9f",
"id": 345,
"brand": "swear",
"shoe": "vyner",
"country": "pt",
"size": 40,
"invoicer": "invoice_express",
"invoice_details": {},
"enabled": false,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"created": 1675443323,
"modified": 1696432749
},
{
"_id": "63dd3c7ce4276e00fcd926eb",
"id": 346,
"brand": "swear",
"shoe": "vyner",
"country": "pt",
"size": 40,
"invoicer": "sap",
"invoice_details": {},
"enabled": false,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"created": 1675443324,
"modified": 1696432749
},
{
"_id": "63dd5a4c7653464659a6e131",
"id": 349,
"brand": "swear",
"shoe": "vyner",
"country": "pt",
"size": 40,
"invoicer": "invoice_express",
"invoice_details": {},
"enabled": false,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"created": 1675450956,
"modified": 1696432749
},
{
"_id": "63dd5a4de597ab0729a6df9c",
"id": 350,
"brand": "swear",
"shoe": "vyner",
"country": "pt",
"size": 40,
"invoicer": "sap",
"invoice_details": {},
"enabled": false,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"created": 1675450957,
"modified": 1696432749
},
{
"_id": "63dd5f623d3615c905d93a9a",
"id": 353,
"brand": "swear",
"shoe": "vyner",
"country": "pt",
"size": 40,
"invoicer": "invoice_express",
"invoice_details": {},
"enabled": false,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"created": 1675452258,
"modified": 1696432749
},
{
"_id": "63dd5f633d3615c905d93a9d",
"id": 354,
"brand": "swear",
"shoe": "vyner",
"country": "pt",
"size": 40,
"invoicer": "sap",
"invoice_details": {},
"enabled": false,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"created": 1675452259,
"modified": 1696432749
},
{
"_id": "63dd9873a5955f4469d93044",
"id": 357,
"brand": "swear",
"shoe": "vyner",
"country": "pt",
"size": 40,
"invoicer": "invoice_express",
"invoice_details": {},
"enabled": false,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"created": 1675466867,
"modified": 1696432749
},
{
"_id": "63dd9874a5955f4469d93047",
"id": 358,
"brand": "swear",
"shoe": "vyner",
"country": "pt",
"size": 40,
"invoicer": "sap",
"invoice_details": {},
"enabled": false,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"created": 1675466868,
"modified": 1696432749
},
{
"_id": "6421641e888e51ab75b6c69a",
"id": 361,
"brand": "swear",
"shoe": "vyner",
"country": "pt",
"size": 40,
"invoicer": "invoice_express",
"invoice_details": {},
"enabled": false,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"created": 1679909918,
"modified": 1696432749
},
{
"_id": "6421641f888e51ab75b6c69d",
"id": 362,
"brand": "swear",
"shoe": "vyner",
"country": "pt",
"size": 40,
"invoicer": "sap",
"invoice_details": {},
"enabled": false,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"created": 1679909919,
"modified": 1696432749
},
{
"_id": "6426c9b83b691fbfb380791f",
"id": 365,
"brand": "swear",
"shoe": "vyner",
"country": "pt",
"size": 40,
"invoicer": "invoice_express",
"invoice_details": {},
"enabled": false,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"created": 1680263608,
"modified": 1696432749
},
{
"_id": "6426c9b93b691fbfb3807922",
"id": 366,
"brand": "swear",
"shoe": "vyner",
"country": "pt",
"size": 40,
"invoicer": "sap",
"invoice_details": {},
"enabled": false,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"created": 1680263609,
"modified": 1696432749
},
{
"_id": "6426cdf70e8a6034748078f2",
"id": 369,
"brand": "swear",
"shoe": "vyner",
"country": "pt",
"size": 40,
"invoicer": "invoice_express",
"invoice_details": {},
"enabled": false,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"created": 1680264695,
"modified": 1696432749
},
{
"_id": "6426cdf80e8a6034748078f5",
"id": 370,
"brand": "swear",
"shoe": "vyner",
"country": "pt",
"size": 40,
"invoicer": "sap",
"invoice_details": {},
"enabled": false,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"created": 1680264696,
"modified": 1696432749
},
{
"_id": "6436cd753d2c8dc9bd978870",
"id": 373,
"brand": "swear",
"shoe": "vyner",
"country": "pt",
"size": 40,
"invoicer": "invoice_express",
"invoice_details": {},
"enabled": false,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"created": 1681313141,
"modified": 1696432749
},
{
"_id": "6436cd763d2c8dc9bd978873",
"id": 374,
"brand": "swear",
"shoe": "vyner",
"country": "pt",
"size": 40,
"invoicer": "sap",
"invoice_details": {},
"enabled": false,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"created": 1681313142,
"modified": 1696432749
},
{
"_id": "646644f302ec969f062171ec",
"id": 377,
"brand": "swear",
"shoe": "vyner",
"country": "pt",
"size": 40,
"invoicer": "invoice_express",
"invoice_details": {},
"enabled": false,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"created": 1684423923,
"modified": 1696432749
},
{
"_id": "646644f302ec969f062171ef",
"id": 378,
"brand": "swear",
"shoe": "vyner",
"country": "pt",
"size": 40,
"invoicer": "sap",
"invoice_details": {},
"enabled": false,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"created": 1684423923,
"modified": 1696432749
},
{
"_id": "64748307295f13e424709188",
"id": 381,
"brand": "swear",
"shoe": "vyner",
"country": "pt",
"size": 40,
"invoicer": "invoice_express",
"invoice_details": {},
"enabled": false,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"created": 1685357319,
"modified": 1696432749
},
{
"_id": "64748308295f13e42470918b",
"id": 382,
"brand": "swear",
"shoe": "vyner",
"country": "pt",
"size": 40,
"invoicer": "sap",
"invoice_details": {},
"enabled": false,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"created": 1685357320,
"modified": 1696432749
},
{
"_id": "64776e30295f13e42470a01b",
"id": 385,
"brand": "swear",
"shoe": "vyner",
"country": "pt",
"size": 40,
"invoicer": "invoice_express",
"invoice_details": {},
"enabled": false,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"created": 1685548592,
"modified": 1696432756
},
{
"_id": "64776e31295f13e42470a01e",
"id": 386,
"brand": "swear",
"shoe": "vyner",
"country": "pt",
"size": 40,
"invoicer": "sap",
"invoice_details": {},
"enabled": false,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"created": 1685548593,
"modified": 1696432756
},
{
"_id": "64889560295f13e42470af5a",
"id": 389,
"brand": "swear",
"shoe": "vyner",
"country": "pt",
"size": 40,
"invoicer": "invoice_express",
"invoice_details": {},
"enabled": false,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"created": 1686672736,
"modified": 1696432756
},
{
"_id": "6488956173c17c899570acf7",
"id": 390,
"brand": "swear",
"shoe": "vyner",
"country": "pt",
"size": 40,
"invoicer": "sap",
"invoice_details": {},
"enabled": false,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"created": 1686672737,
"modified": 1696432756
},
{
"_id": "64889953c117983e9870b9fc",
"id": 393,
"brand": "swear",
"shoe": "vyner",
"country": "pt",
"size": 40,
"invoicer": "invoice_express",
"invoice_details": {},
"enabled": false,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"created": 1686673747,
"modified": 1696432756
},
{
"_id": "648899546ab03cb2447094bf",
"id": 394,
"brand": "swear",
"shoe": "vyner",
"country": "pt",
"size": 40,
"invoicer": "sap",
"invoice_details": {},
"enabled": false,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"created": 1686673748,
"modified": 1696432756
},
{
"_id": "6488a0eac117983e9870bef7",
"id": 397,
"brand": "swear",
"shoe": "vyner",
"country": "pt",
"size": 40,
"invoicer": "invoice_express",
"invoice_details": {},
"enabled": false,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"created": 1686675690,
"modified": 1696432756
},
{
"_id": "6488a0ebc117983e9870bef9",
"id": 398,
"brand": "swear",
"shoe": "vyner",
"country": "pt",
"size": 40,
"invoicer": "sap",
"invoice_details": {},
"enabled": false,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"created": 1686675691,
"modified": 1696432756
},
{
"_id": "64ca6cc82be5ed0f0d306aff",
"id": 401,
"brand": "swear",
"shoe": "vyner",
"country": "pt",
"size": 40,
"invoicer": "invoice_express",
"invoice_details": {},
"enabled": false,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"created": 1690987720,
"modified": 1696432756
},
{
"_id": "64ca6cc97a7c05ed8c3066b6",
"id": 402,
"brand": "swear",
"shoe": "vyner",
"country": "pt",
"size": 40,
"invoicer": "sap",
"invoice_details": {},
"enabled": false,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"created": 1690987721,
"modified": 1696432756
},
{
"_id": "64ca7e11888684673c306b81",
"id": 405,
"brand": "swear",
"shoe": "vyner",
"country": "pt",
"size": 40,
"invoicer": "invoice_express",
"invoice_details": {},
"enabled": false,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"created": 1690992145,
"modified": 1696432756
},
{
"_id": "64ca7e12888684673c306b83",
"id": 406,
"brand": "swear",
"shoe": "vyner",
"country": "pt",
"size": 40,
"invoicer": "sap",
"invoice_details": {},
"enabled": false,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"created": 1690992146,
"modified": 1696432756
},
{
"_id": "64ca82122be5ed0f0d306ecf",
"id": 409,
"brand": "swear",
"shoe": "vyner",
"country": "pt",
"size": 40,
"invoicer": "invoice_express",
"invoice_details": {},
"enabled": false,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"created": 1690993170,
"modified": 1696432756
},
{
"_id": "64ca8213888684673c306d0b",
"id": 410,
"brand": "swear",
"shoe": "vyner",
"country": "pt",
"size": 40,
"invoicer": "sap",
"invoice_details": {},
"enabled": false,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"created": 1690993171,
"modified": 1696432756
},
{
"_id": "64cb5a4c7a7c05ed8c30675c",
"id": 413,
"brand": "swear",
"shoe": "vyner",
"country": "pt",
"size": 40,
"invoicer": "invoice_express",
"invoice_details": {},
"enabled": false,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"created": 1691048524,
"modified": 1696432756
},
{
"_id": "64cb5a4d888684673c306e8b",
"id": 414,
"brand": "swear",
"shoe": "vyner",
"country": "pt",
"size": 40,
"invoicer": "sap",
"invoice_details": {},
"enabled": false,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"created": 1691048525,
"modified": 1696432756
},
{
"_id": "64cb5e022be5ed0f0d307280",
"id": 417,
"brand": "swear",
"shoe": "vyner",
"country": "pt",
"size": 40,
"invoicer": "invoice_express",
"invoice_details": {},
"enabled": false,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"created": 1691049474,
"modified": 1696432756
},
{
"_id": "64cb5e032be5ed0f0d307282",
"id": 418,
"brand": "swear",
"shoe": "vyner",
"country": "pt",
"size": 40,
"invoicer": "sap",
"invoice_details": {},
"enabled": false,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"created": 1691049475,
"modified": 1696432756
},
{
"_id": "64cb668b2be5ed0f0d307512",
"id": 421,
"brand": "swear",
"shoe": "vyner",
"country": "pt",
"size": 40,
"invoicer": "invoice_express",
"invoice_details": {},
"enabled": false,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"created": 1691051659,
"modified": 1696432756
},
{
"_id": "64cb668c2be5ed0f0d307514",
"id": 422,
"brand": "swear",
"shoe": "vyner",
"country": "pt",
"size": 40,
"invoicer": "sap",
"invoice_details": {},
"enabled": false,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"created": 1691051660,
"modified": 1696432756
},
{
"_id": "65295682f3f55dfa8a8005a3",
"id": 426,
"brand": "swear",
"shoe": "vyner",
"country": "pt",
"size": 40,
"invoicer": "invoice_express",
"invoice_details": {},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"created": 1697207938,
"modified": 1697207938
},
{
"_id": "65295683f3f55dfa8a8005a5",
"id": 427,
"brand": "swear",
"shoe": "vyner",
"country": "pt",
"size": 40,
"invoicer": "sap",
"invoice_details": {},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"created": 1697207939,
"modified": 1697207939
},
{
"_id": "65295a91f3f55dfa8a800783",
"id": 430,
"brand": "swear",
"shoe": "vyner",
"country": "pt",
"size": 40,
"invoicer": "invoice_express",
"invoice_details": {},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"created": 1697208977,
"modified": 1697208977
},
{
"_id": "65295a93f3f55dfa8a800786",
"id": 431,
"brand": "swear",
"shoe": "vyner",
"country": "pt",
"size": 40,
"invoicer": "sap",
"invoice_details": {},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"created": 1697208979,
"modified": 1697208979
},
{
"_id": "655784fd8f5b593c07ab93c8",
"id": 435,
"enabled": true,
"description": "",
"created": 1700234493,
"modified": 1700482738,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": "",
"priority": null,
"brand": "swear",
"shoe": "vyner",
"country": "GB",
"invoicer": "invoice_express",
"invoice_details": {
"tax_exemption": "m16",
"finalize": false,
"series": "PLATFORMEMTOUNIPE",
"notes": [
"The exporter of these goods declares that they are good for EU",
"Any other remark you want",
"Note3"
]
},
"size": null
},
{
"_id": "65942c034e6c8bae5bd8086b",
"id": 469,
"brand": "swear",
"shoe": "vyner",
"country": "pt",
"size": 40,
"invoicer": "invoice_express",
"invoice_details": {},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"created": 1704209411,
"modified": 1704209411
},
{
"_id": "65942c03940712bb25d80eb1",
"id": 470,
"brand": "swear",
"shoe": "vyner",
"country": "pt",
"size": 40,
"invoicer": "sap",
"invoice_details": {},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"created": 1704209411,
"modified": 1704209412
},
{
"_id": "65942d814e6c8bae5bd80a32",
"id": 473,
"brand": "swear",
"shoe": "vyner",
"country": "pt",
"size": 40,
"invoicer": "invoice_express",
"invoice_details": {},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"created": 1704209793,
"modified": 1704209793
},
{
"_id": "65942d824e6c8bae5bd80a35",
"id": 474,
"brand": "swear",
"shoe": "vyner",
"country": "pt",
"size": 40,
"invoicer": "sap",
"invoice_details": {},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"created": 1704209794,
"modified": 1704209794
},
{
"_id": "659436a3940712bb25d8123a",
"id": 478,
"brand": "swear",
"shoe": "vyner",
"country": "pt",
"size": 40,
"invoicer": "invoice_express",
"invoice_details": {},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"created": 1704212131,
"modified": 1704212131
},
{
"_id": "659436a40635f95d44d8099b",
"id": 479,
"brand": "swear",
"shoe": "vyner",
"country": "pt",
"size": 40,
"invoicer": "sap",
"invoice_details": {},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"created": 1704212132,
"modified": 1704212132
},
{
"_id": "6596e717bb11325081aaf78c",
"id": 482,
"brand": "swear",
"shoe": "vyner",
"country": "pt",
"size": 40,
"invoicer": "invoice_express",
"invoice_details": {},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"created": 1704388375,
"modified": 1704388375
},
{
"_id": "6596e717bb11325081aaf78f",
"id": 483,
"brand": "swear",
"shoe": "vyner",
"country": "pt",
"size": 40,
"invoicer": "sap",
"invoice_details": {},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"created": 1704388375,
"modified": 1704388376
},
{
"_id": "6596ead13e27f1c070aaf838",
"id": 486,
"brand": "swear",
"shoe": "vyner",
"country": "pt",
"size": 40,
"invoicer": "invoice_express",
"invoice_details": {},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"created": 1704389329,
"modified": 1704389329
},
{
"_id": "6596ead2bb11325081aaf9da",
"id": 487,
"brand": "swear",
"shoe": "vyner",
"country": "pt",
"size": 40,
"invoicer": "invoice_express",
"invoice_details": {},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"created": 1704389330,
"modified": 1704389330
},
{
"_id": "6596eb47bb11325081aafaed",
"id": 489,
"brand": "swear",
"shoe": "vyner",
"country": "pt",
"size": 40,
"invoicer": "invoice_express",
"invoice_details": {},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"created": 1704389447,
"modified": 1704389447
},
{
"_id": "6596eb483e27f1c070aaf9d1",
"id": 490,
"brand": "swear",
"shoe": "vyner",
"country": "pt",
"size": 40,
"invoicer": "sap",
"invoice_details": {},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"created": 1704389448,
"modified": 1704389449
}
]
HTTP Request
GET https://ripe-core-sbx.platforme.com/api/invoice_rules
Parameters
This request receives 2 parameters: filter_operator
and filters
. If filters
is defined but not filter_operator
, its default value will be $and
.
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
filter_operator | no | text | $and |
The logic operator that unites all the options given in filters . |
filters | no | text | null |
The filters that will be applied to the invoice rules query. Must have the structure <parameter>:<operator>:<value> . More than one filter can be given to the query, and their application together is based on the filter_operator given. |
Filter Operator Values
Value | Description |
---|---|
$and | The results given must comply with all the filters. |
$or | The results given must comply with at least on of the filters. |
Filters Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
brand | no | text | null |
The brand's name. |
shoe | no | text | null |
The model's name. |
priority | no | numeric | null |
The priority of the invoice rule. |
name | no | text | null |
The name of the invoice rule. |
country | no | text | null |
The name of the country in wich this rule will be applied. |
size | no | numeric | null |
The model's native size. |
invoicer | no | text | null |
The identifier of the invoice software that is going to be used as the back-end for invoice generation. |
invoice_details | no | dictionary | null |
The details in a JSON like dictionary format that are going to be used to create the invoice this should include invoice specific information. |
Create
Creates a invoice rule for a specific country for model of a brand. If the user does not have permission for the given brand, an error is returned.
Example Request
curl -s -X POST \
"https://ripe-core-sbx.platforme.com/api/invoice_rules" \
-H "Content-Type: application/json" \
-H "X-Secret-Key: $RIPE_KEY" \
-d '{
"brand":"swear",
"model":"vyner",
"country": "pt",
"size": 40,
"invoicer": "invoice_express",
"invoice_details": {}
}'
Example Response
{
"_id": "659826263e27f1c070aafd63",
"id": 492,
"enabled": true,
"description": null,
"meta": {},
"brand_t": null,
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"brand": null,
"shoe": null,
"country": null,
"invoicer": null,
"invoice_details": {},
"size": null,
"created": 1704470054,
"modified": 1704470054
}
HTTP Request
POST https://ripe-core-sbx.platforme.com/api/invoice_rules
POST Body
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
brand | yes | text | The brand's name. | |
shoe | yes | text | The model's name. | |
country | yes | text | The name of the country in which this rule will be applied. | |
size | no | numeric | null |
The model's native size. |
invoicer | yes | text | The identifier of the invoice software that is going to be used as the back-end for invoice generation. | |
invoice_details | no | dictionary | null |
The details in a JSON like dictionary format that are going to be used to create the invoice this should include invoice specific information. |
name | no | text | null |
The name of the invoice rule. |
priority | no | numeric | null |
The priority of the invoice rule. |
Show
Returns the invoice with the given ID. If the user does not have permissions to access the rule's brand, returns a Not Found Exception (404) error.
Example Request
curl "https://ripe-core-sbx.platforme.com/api/invoice_rules/1" \
-H "X-Secret-Key: $RIPE_KEY"
Example Response
{
"_id": "659826263e27f1c070aafd65",
"id": 493,
"brand": "swear",
"shoe": "vyner",
"country": "pt",
"size": 40,
"invoicer": "invoice_express",
"invoice_details": {},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"created": 1704470054,
"modified": 1704470054
}
HTTP Request
GET https://ripe-core-sbx.platforme.com/api/invoice_rules/<int:id>
Path Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
id | yes | numeric | The rule's id. |
Update
Updates the invoice with the given ID. If the user does not have permissions to update the rule's brand, returns a Not Found Exception (404) error.
Example Request
curl -s -X PUT \
"https://ripe-core-sbx.platforme.com/api/invoice_rules/1" \
-H "Content-Type: application/json" \
-H "X-Secret-Key: $RIPE_KEY" \
-d '{
"courier": "dhl"
}'
Example Response
{
"_id": "65982627bb11325081aafdf6",
"id": 494,
"brand": "swear",
"shoe": "vyner",
"country": "pt",
"size": 40,
"invoicer": "sap",
"invoice_details": {},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"created": 1704470055,
"modified": 1704470056
}
HTTP Request
PUT https://ripe-core-sbx.platforme.com/api/invoice_rules/<int:id>
Path Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
id | yes | numeric | The rule's id. |
POST Body
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
brand | no | text | null |
The brand's name. |
shoe | no | text | null |
The model's name. |
country | no | text | null |
The name of the country in which this rule will be applied. |
size | no | numeric | null |
The model's native size. |
invoicer | no | text | null |
The identifier of the invoice software that is going to be used as the back-end for invoice generation. |
invoice_details | no | dictionary | null |
The details in a JSON like dictionary format that are going to be used to create the invoice this should include invoice specific information. |
name | no | text | null |
The name of the invoice rule. |
priority | no | numeric | null |
The priority of the invoice rule. |
Delete
Deletes the invoice with the given ID. If the user does not have permissions to access the rule's brand, returns a Not Found Exception (404) error.
Example Request
curl -s -X DELETE "https://ripe-core-sbx.platforme.com/api/invoice_rules/1" \
-H "X-Secret-Key: $RIPE_KEY"
Example Response
{
"_id": "65982628bb11325081aafdf9",
"id": 495,
"brand": "swear",
"shoe": "vyner",
"country": "pt",
"size": 40,
"invoicer": "invoice_express",
"invoice_details": {},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"created": 1704470056,
"modified": 1704470056
}
HTTP Request
DELETE https://ripe-core-sbx.platforme.com/api/invoice_rules/<int:id>
Path Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
id | yes | numeric | The rule's id. |
Letter Rule Endpoints
List
The list endpoint returns the existing letter rules according to the given parameters. If no parameters are given, it will be returned all the letter rules the user has permissions to access. A user only has permission to access and modify data related to him, meaning that he can only access data from the brands he is responsible for.
Query support can be consulted here.
Example Request
curl "https://ripe-core-sbx.platforme.com/api/letter_rules?filters[]=shoe:eq:vyner" \
-H "X-Secret-Key: $RIPE_KEY"
Example Response
[
{
"_id": "59b7020695387c003b479bce",
"description": null,
"created": 1505165830,
"color": null,
"variant": null,
"brand": null,
"material": null,
"enabled": true,
"modified": 1505165830,
"priority": null,
"meta": {},
"shoe": "vyner",
"letter": "B",
"part": "side",
"id": 20,
"name": null,
"brand_t": null,
"retailer_t": null,
"vendor_t": null
},
{
"_id": "59b7020695387c003b479bcd",
"description": null,
"created": 1505165830,
"color": null,
"variant": null,
"brand": null,
"material": null,
"enabled": true,
"modified": 1505165830,
"priority": null,
"meta": {},
"shoe": "vyner",
"letter": "A",
"part": "front",
"id": 19,
"name": null,
"brand_t": null,
"retailer_t": null,
"vendor_t": null
},
{
"_id": "619e20a44eb9939f04e31fe3",
"id": 154,
"letter": "hi",
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"color": "nappa",
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"created": 1637752996,
"modified": 1637752996
},
{
"_id": "619e20a50c63c1142fe32304",
"id": 155,
"letter": "hi",
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"color": "nappa",
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"created": 1637752997,
"modified": 1637752997
},
{
"_id": "61af554dde85c701c3c5dc43",
"id": 156,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"letter": "A",
"color": "white",
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"created": 1638880589,
"modified": 1638880589
},
{
"_id": "61af554dc9dd5bcf1ec5f840",
"id": 157,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"letter": "A",
"color": "white",
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"created": 1638880589,
"modified": 1638880589
},
{
"_id": "61af554df800c2513dc5d047",
"id": 158,
"brand": "swear",
"shoe": "vyner",
"letter": "A",
"part": "front",
"material": "nappa",
"color": "white",
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"created": 1638880589,
"modified": 1638880589
},
{
"_id": "61af556fc9dd5bcf1ec5f86f",
"id": 160,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"letter": "A",
"color": "white",
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"created": 1638880623,
"modified": 1638880623
},
{
"_id": "61af556fde85c701c3c5dc51",
"id": 161,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"letter": "A",
"color": "white",
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"created": 1638880623,
"modified": 1638880623
},
{
"_id": "61af556fc9cf1d3c3fc5cbaf",
"id": 162,
"brand": "swear",
"shoe": "vyner",
"letter": "A",
"part": "front",
"material": "nappa",
"color": "white",
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"created": 1638880623,
"modified": 1638880623
}
]
HTTP Request
GET https://ripe-core-sbx.platforme.com/api/letter_rules
Parameters
This request receives 2 parameters: filter_operator
and filters
. If filters
is defined but not filter_operator
, its default value will be $and
.
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
filter_operator | no | text | $and |
The logic operator that unites all the options given in filters . |
filters | no | text | null |
The filters that will be applied to the letter rules query. Must have the structure <parameter>:<operator>:<value> . More than one filter can be given to the query, and their application together is based on the filter_operator given. |
Filter Operator Values
Value | Description |
---|---|
$and | The results given must comply with all the filters. |
$or | The results given must comply with at least on of the filters. |
Filters Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
letter | no | text | null |
The letters to which the rule is applied. Its size must be between 0 and 4 letters. |
brand | no | text | null |
The model's brand. |
shoe | no | text | null |
The model's name. |
variant | no | text | null |
The variant (or sub-variant) of the specified model. |
part | no | text | null |
The part of the model to which the letter rule will be applied. |
material | no | text | null |
The material of the part to which the letter rule will be applied. |
color | no | text | null |
The color of the material of the part to which the letter rule will be applied. |
priority | no | numeric | null |
The priority of the letter rule. |
name | no | text | null |
The name of the letter rule. |
Create
Creates a letter rule for a specific combination of part, material and color of a model of a brand. If the user does not have permission for the given brand, an error is returned.
Example Request
curl -s -X POST \
"https://ripe-core-sbx.platforme.com/api/letter_rules" \
-H "Content-Type: application/json" \
-H "X-Secret-Key: $RIPE_KEY" \
-d '{
"brand":"swear",
"shoe":"vyner",
"letter":"A",
"part":"front",
"material":"nappa",
"color":"black"
}'
Example Response
{
"_id": "6598262abb11325081aafdfd",
"id": 637,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"letter": "A",
"color": "white",
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"created": 1704470058,
"modified": 1704470058
}
HTTP Request
POST https://ripe-core-sbx.platforme.com/api/letter_rules
POST Body
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
letter | yes | text | The letters to which the rule is applied. Its size must be between 0 and 4 letters. | |
brand | no | text | null |
The model's brand. |
shoe | no | text | null |
The model's name. |
variant | no | text | null |
The variant (or sub-variant) of the specified model. |
part | no | text | null |
The part of the model to which the letter rule will be applied. |
material | no | text | null |
The material of the part to which the letter rule will be applied. |
color | no | text | null |
The color of the material of the part to which the letter rule will be applied. |
priority | no | numeric | null |
The priority of the letter rule. |
name | no | text | null |
The name of the letter rule. |
Show
Returns the letter rule with the given ID. If the user does not have permissions to access the rule's brand, returns a Not Found Exception (404) error.
Example Request
curl "https://ripe-core-sbx.platforme.com/api/letter_rules/1" \
-H "X-Secret-Key: $RIPE_KEY"
Example Response
{
"_id": "6598262abb11325081aafdff",
"id": 638,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"letter": "A",
"color": "white",
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"created": 1704470058,
"modified": 1704470058
}
HTTP Request
GET https://ripe-core-sbx.platforme.com/api/letter_rules/<int:id>
Path Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
id | no | numeric | The rule's id. |
Update
Updates the letter rule with the given ID. If the user does not have permissions to update the rule's brand, returns a Not Found Exception (404) error.
Example Request
curl -s -X PUT \
"https://ripe-core-sbx.platforme.com/api/letter_rules/1" \
-H "Content-Type: application/json" \
-H "X-Secret-Key: $RIPE_KEY" \
-d '{
"color":"black"
}'
Example Response
{
"_id": "6598262bbb11325081aafe02",
"id": 639,
"brand": "swear",
"shoe": "vyner",
"letter": "A",
"part": "front",
"material": "nappa",
"color": "white",
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"created": 1704470059,
"modified": 1704470060
}
HTTP Request
PUT https://ripe-core-sbx.platforme.com/api/letter_rules/<int:id>
Path Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
id | yes | numeric | The rule's id. |
POST Body
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
letter | no | text | null |
The letters to which the rule is applied. Its size must be between 0 and 4 letters. |
brand | no | text | null |
The model's brand. |
shoe | no | text | null |
The model's name. |
variant | no | text | null |
The variant (or sub-variant) of the specified model. |
part | no | text | null |
The part of the model to which the letter rule will be applied. |
material | no | text | null |
The material of the part to which the letter rule will be applied. |
color | no | text | null |
The color of the material of the part to which the letter rule will be applied. |
priority | no | numeric | null |
The priority of the letter rule. |
name | no | text | null |
The name of the letter rule. |
Delete
Deletes the letter rule with the given ID. If the user does not have permissions to access the rule's brand, returns a Not Found Exception (404) error.
Example Request
curl -s -X DELETE "https://ripe-core-sbx.platforme.com/api/letter_rules/1" \
-H "X-Secret-Key: $RIPE_KEY"
Example Response
{
"_id": "6598262cbb11325081aafe05",
"id": 640,
"brand": "swear",
"shoe": "vyner",
"letter": "A",
"part": "front",
"material": "nappa",
"color": "black",
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"created": 1704470060,
"modified": 1704470060
}
HTTP Request
DELETE https://ripe-core-sbx.platforme.com/api/letter_rules/<int:id>
Path Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
id | yes | numeric | The rule's id. |
Price Rule Endpoints
List
The list endpoint returns the existing price rules according to the given parameters. If no parameters are given, it will be returned all the price rules the user has permissions to access. A user only has permission to access and modify data related to him, meaning that he can only access data from the brands he is responsible for.
Query support can be consulted here.
Example Request
curl "https://ripe-core-sbx.platforme.com/api/price_rules?filters[]=shoe:eq:vyner" \
-H "X-Secret-Key: $RIPE_KEY"
Example Response
[
{
"_id": "634c0feac0555f16cfd0c604",
"id": 27166,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"color": "white",
"vat_included": true,
"ddp_included": false,
"fixed_price": false,
"round_price": false,
"pivot": "",
"price_eur": 199.0,
"price_usd": 199.0,
"enabled": true,
"description": "",
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": "",
"priority": null,
"variant": "",
"price_gbp": null,
"price_geo": {},
"size": null,
"created": 1665929194,
"modified": 1672656880
},
{
"_id": "63b596f688c2f019449e3377",
"id": 28336,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"color": "white",
"size": 40,
"price_eur": 300.0,
"price_usd": 300.0,
"price_gbp": 300.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1672845046,
"modified": 1672845046
},
{
"_id": "63b596f788c2f019449e3379",
"id": 28337,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"size": 40,
"price_eur": 300.0,
"price_usd": 300.0,
"price_gbp": 300.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"color": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1672845047,
"modified": 1672845047
},
{
"_id": "63b596f7b61e6cf1429dfadd",
"id": 28338,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"color": "white",
"size": 40,
"price_eur": 100.0,
"price_usd": 100.0,
"price_gbp": 100.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1672845047,
"modified": 1672845047
},
{
"_id": "63b5990c88c2f019449e3812",
"id": 28340,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"color": "white",
"size": 40,
"price_eur": 300.0,
"price_usd": 300.0,
"price_gbp": 300.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1672845580,
"modified": 1672845580
},
{
"_id": "63b5990cb61e6cf1429dfd66",
"id": 28341,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"size": 40,
"price_eur": 300.0,
"price_usd": 300.0,
"price_gbp": 300.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"color": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1672845580,
"modified": 1672845580
},
{
"_id": "63b5990d88c2f019449e3815",
"id": 28342,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"color": "white",
"size": 40,
"price_eur": 100.0,
"price_usd": 100.0,
"price_gbp": 100.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1672845581,
"modified": 1672845582
},
{
"_id": "63b83d6a2a7384f6d80b07f3",
"id": 28344,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"color": "white",
"size": 40,
"price_eur": 300.0,
"price_usd": 300.0,
"price_gbp": 300.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1673018730,
"modified": 1673018730
},
{
"_id": "63b83d6ab403d6be4c0af5a6",
"id": 28345,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"size": 40,
"price_eur": 300.0,
"price_usd": 300.0,
"price_gbp": 300.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"color": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1673018730,
"modified": 1673018730
},
{
"_id": "63b83d6be1b1d584f90aedd2",
"id": 28346,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"color": "white",
"size": 40,
"price_eur": 100.0,
"price_usd": 100.0,
"price_gbp": 100.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1673018731,
"modified": 1673018731
},
{
"_id": "63b84700a3aba65875b84868",
"id": 28348,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"color": "white",
"size": 40,
"price_eur": 300.0,
"price_usd": 300.0,
"price_gbp": 300.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1673021184,
"modified": 1673021184
},
{
"_id": "63b847004a67397801b848c5",
"id": 28349,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"size": 40,
"price_eur": 300.0,
"price_usd": 300.0,
"price_gbp": 300.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"color": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1673021184,
"modified": 1673021184
},
{
"_id": "63b847012fa638beb5b84927",
"id": 28350,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"color": "white",
"size": 40,
"price_eur": 100.0,
"price_usd": 100.0,
"price_gbp": 100.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1673021185,
"modified": 1673021185
},
{
"_id": "63bd3992836b93f7a2b84a7c",
"id": 28434,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"color": "white",
"size": 40,
"price_eur": 300.0,
"price_usd": 300.0,
"price_gbp": 300.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1673345426,
"modified": 1673345426
},
{
"_id": "63bd399310720200f5b86697",
"id": 28435,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"size": 40,
"price_eur": 300.0,
"price_usd": 300.0,
"price_gbp": 300.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"color": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1673345427,
"modified": 1673345427
},
{
"_id": "63bd39944a67397801b8593f",
"id": 28436,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"color": "white",
"size": 40,
"price_eur": 100.0,
"price_usd": 100.0,
"price_gbp": 100.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1673345428,
"modified": 1673345428
},
{
"_id": "63bd3c8510720200f5b86870",
"id": 28438,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"color": "white",
"size": 40,
"price_eur": 300.0,
"price_usd": 300.0,
"price_gbp": 300.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1673346181,
"modified": 1673346181
},
{
"_id": "63bd3c8510720200f5b86872",
"id": 28439,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"size": 40,
"price_eur": 300.0,
"price_usd": 300.0,
"price_gbp": 300.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"color": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1673346181,
"modified": 1673346181
},
{
"_id": "63bd3c85a3aba65875b84ebe",
"id": 28440,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"color": "white",
"size": 40,
"price_eur": 100.0,
"price_usd": 100.0,
"price_gbp": 100.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1673346181,
"modified": 1673346181
},
{
"_id": "63bd3e652fa638beb5b86036",
"id": 28442,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"color": "white",
"size": 40,
"price_eur": 300.0,
"price_usd": 300.0,
"price_gbp": 300.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1673346661,
"modified": 1673346661
},
{
"_id": "63bd3e662fa638beb5b86038",
"id": 28443,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"size": 40,
"price_eur": 300.0,
"price_usd": 300.0,
"price_gbp": 300.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"color": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1673346662,
"modified": 1673346662
},
{
"_id": "63bd3e672fa638beb5b8603b",
"id": 28444,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"color": "white",
"size": 40,
"price_eur": 100.0,
"price_usd": 100.0,
"price_gbp": 100.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1673346663,
"modified": 1673346663
},
{
"_id": "63c536ae388068de9da08c5b",
"id": 29520,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"color": "white",
"size": 40,
"price_eur": 300.0,
"price_usd": 300.0,
"price_gbp": 300.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1673868974,
"modified": 1673868974
},
{
"_id": "63c536af12601765dca0863e",
"id": 29521,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"size": 40,
"price_eur": 300.0,
"price_usd": 300.0,
"price_gbp": 300.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"color": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1673868975,
"modified": 1673868975
},
{
"_id": "63c536af2b5e7e631fa0829e",
"id": 29522,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"color": "white",
"size": 40,
"price_eur": 100.0,
"price_usd": 100.0,
"price_gbp": 100.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1673868975,
"modified": 1673868976
},
{
"_id": "63d7ec1e377bf3d6846fe6c5",
"id": 29524,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"color": "white",
"size": 40,
"price_eur": 300.0,
"price_usd": 300.0,
"price_gbp": 300.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1675095070,
"modified": 1675095070
},
{
"_id": "63d7ec1eba5938cc9a6fe8de",
"id": 29525,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"size": 40,
"price_eur": 300.0,
"price_usd": 300.0,
"price_gbp": 300.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"color": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1675095070,
"modified": 1675095070
},
{
"_id": "63d7ec1fb0e6b723446fe9b5",
"id": 29526,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"color": "white",
"size": 40,
"price_eur": 100.0,
"price_usd": 100.0,
"price_gbp": 100.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1675095071,
"modified": 1675095072
},
{
"_id": "63d7ed171033a9d5df6fe624",
"id": 29528,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"color": "white",
"size": 40,
"price_eur": 300.0,
"price_usd": 300.0,
"price_gbp": 300.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1675095319,
"modified": 1675095319
},
{
"_id": "63d7ed173632384b856fe5f6",
"id": 29529,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"size": 40,
"price_eur": 300.0,
"price_usd": 300.0,
"price_gbp": 300.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"color": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1675095319,
"modified": 1675095319
},
{
"_id": "63d7ed18b0e6b723446feab2",
"id": 29530,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"color": "white",
"size": 40,
"price_eur": 100.0,
"price_usd": 100.0,
"price_gbp": 100.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1675095320,
"modified": 1675095320
},
{
"_id": "63d7ef2fb0e6b723446fecc5",
"id": 29532,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"color": "white",
"size": 40,
"price_eur": 300.0,
"price_usd": 300.0,
"price_gbp": 300.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1675095855,
"modified": 1675095855
},
{
"_id": "63d7ef2fb0e6b723446fecc7",
"id": 29533,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"size": 40,
"price_eur": 300.0,
"price_usd": 300.0,
"price_gbp": 300.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"color": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1675095855,
"modified": 1675095855
},
{
"_id": "63d7ef2f15e20c0ef16fe5a6",
"id": 29534,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"color": "white",
"size": 40,
"price_eur": 100.0,
"price_usd": 100.0,
"price_gbp": 100.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1675095855,
"modified": 1675095855
},
{
"_id": "63d7eff9b0e6b723446fee57",
"id": 29536,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"color": "white",
"size": 40,
"price_eur": 300.0,
"price_usd": 300.0,
"price_gbp": 300.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1675096057,
"modified": 1675096057
},
{
"_id": "63d7eff9b0e6b723446fee59",
"id": 29537,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"size": 40,
"price_eur": 300.0,
"price_usd": 300.0,
"price_gbp": 300.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"color": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1675096057,
"modified": 1675096057
},
{
"_id": "63d7effab0e6b723446fee5c",
"id": 29538,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"color": "white",
"size": 40,
"price_eur": 100.0,
"price_usd": 100.0,
"price_gbp": 100.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1675096058,
"modified": 1675096059
},
{
"_id": "63dcfe04f1ff6fef2fd916a1",
"id": 29540,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"color": "white",
"size": 40,
"price_eur": 300.0,
"price_usd": 300.0,
"price_gbp": 300.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1675427332,
"modified": 1675427332
},
{
"_id": "63dcfe05f1ff6fef2fd916a3",
"id": 29541,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"size": 40,
"price_eur": 300.0,
"price_usd": 300.0,
"price_gbp": 300.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"color": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1675427333,
"modified": 1675427333
},
{
"_id": "63dcfe06e4276e00fcd917be",
"id": 29542,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"color": "white",
"size": 40,
"price_eur": 100.0,
"price_usd": 100.0,
"price_gbp": 100.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1675427334,
"modified": 1675427334
},
{
"_id": "63dd02153d3615c905d91d58",
"id": 29544,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"color": "white",
"size": 40,
"price_eur": 300.0,
"price_usd": 300.0,
"price_gbp": 300.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1675428373,
"modified": 1675428373
},
{
"_id": "63dd0216f1ff6fef2fd91780",
"id": 29545,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"size": 40,
"price_eur": 300.0,
"price_usd": 300.0,
"price_gbp": 300.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"color": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1675428374,
"modified": 1675428374
},
{
"_id": "63dd02163d3615c905d91d5b",
"id": 29546,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"color": "white",
"size": 40,
"price_eur": 100.0,
"price_usd": 100.0,
"price_gbp": 100.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1675428374,
"modified": 1675428375
},
{
"_id": "63dd05b5f1ff6fef2fd917fc",
"id": 29548,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"color": "white",
"size": 40,
"price_eur": 300.0,
"price_usd": 300.0,
"price_gbp": 300.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1675429301,
"modified": 1675429301
},
{
"_id": "63dd05b5f1ff6fef2fd917fe",
"id": 29549,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"size": 40,
"price_eur": 300.0,
"price_usd": 300.0,
"price_gbp": 300.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"color": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1675429301,
"modified": 1675429301
},
{
"_id": "63dd05b6f1ff6fef2fd91800",
"id": 29550,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"color": "white",
"size": 40,
"price_eur": 100.0,
"price_usd": 100.0,
"price_gbp": 100.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1675429302,
"modified": 1675429302
},
{
"_id": "63dd0649e4276e00fcd919db",
"id": 29552,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"color": "white",
"size": 40,
"price_eur": 300.0,
"price_usd": 300.0,
"price_gbp": 300.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1675429449,
"modified": 1675429449
},
{
"_id": "63dd0649a5955f4469d91d70",
"id": 29553,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"size": 40,
"price_eur": 300.0,
"price_usd": 300.0,
"price_gbp": 300.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"color": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1675429449,
"modified": 1675429449
},
{
"_id": "63dd0649a5955f4469d91d73",
"id": 29554,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"color": "white",
"size": 40,
"price_eur": 100.0,
"price_usd": 100.0,
"price_gbp": 100.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1675429449,
"modified": 1675429449
},
{
"_id": "63dd0ac33d3615c905d9251e",
"id": 29556,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"color": "white",
"size": 40,
"price_eur": 300.0,
"price_usd": 300.0,
"price_gbp": 300.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1675430595,
"modified": 1675430595
},
{
"_id": "63dd0ac43d3615c905d92520",
"id": 29557,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"size": 40,
"price_eur": 300.0,
"price_usd": 300.0,
"price_gbp": 300.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"color": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1675430596,
"modified": 1675430596
},
{
"_id": "63dd0ac5a5955f4469d920b8",
"id": 29558,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"color": "white",
"size": 40,
"price_eur": 100.0,
"price_usd": 100.0,
"price_gbp": 100.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1675430597,
"modified": 1675430597
},
{
"_id": "63dd18cf3d3615c905d92a16",
"id": 29560,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"color": "white",
"size": 40,
"price_eur": 300.0,
"price_usd": 300.0,
"price_gbp": 300.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1675434191,
"modified": 1675434191
},
{
"_id": "63dd18d0a5955f4469d924c4",
"id": 29561,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"size": 40,
"price_eur": 300.0,
"price_usd": 300.0,
"price_gbp": 300.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"color": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1675434192,
"modified": 1675434192
},
{
"_id": "63dd18d0a5955f4469d924c7",
"id": 29562,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"color": "white",
"size": 40,
"price_eur": 100.0,
"price_usd": 100.0,
"price_gbp": 100.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1675434192,
"modified": 1675434193
},
{
"_id": "63dd1d74e4276e00fcd91fd0",
"id": 29564,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"color": "white",
"size": 40,
"price_eur": 300.0,
"price_usd": 300.0,
"price_gbp": 300.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1675435380,
"modified": 1675435380
},
{
"_id": "63dd1d74e4276e00fcd91fd2",
"id": 29565,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"size": 40,
"price_eur": 300.0,
"price_usd": 300.0,
"price_gbp": 300.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"color": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1675435380,
"modified": 1675435380
},
{
"_id": "63dd1d74e4276e00fcd91fd4",
"id": 29566,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"color": "white",
"size": 40,
"price_eur": 100.0,
"price_usd": 100.0,
"price_gbp": 100.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1675435380,
"modified": 1675435381
},
{
"_id": "63dd22903d3615c905d92fcb",
"id": 29568,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"color": "white",
"size": 40,
"price_eur": 300.0,
"price_usd": 300.0,
"price_gbp": 300.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1675436688,
"modified": 1675436688
},
{
"_id": "63dd22903d3615c905d92fcd",
"id": 29569,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"size": 40,
"price_eur": 300.0,
"price_usd": 300.0,
"price_gbp": 300.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"color": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1675436688,
"modified": 1675436688
},
{
"_id": "63dd25b0e4276e00fcd92380",
"id": 29570,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"color": "white",
"size": 40,
"price_eur": 300.0,
"price_usd": 300.0,
"price_gbp": 300.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1675437488,
"modified": 1675437488
},
{
"_id": "63dd25b13d3615c905d9316f",
"id": 29571,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"size": 40,
"price_eur": 300.0,
"price_usd": 300.0,
"price_gbp": 300.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"color": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1675437489,
"modified": 1675437489
},
{
"_id": "63dd25b2a5955f4469d92950",
"id": 29572,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"color": "white",
"size": 40,
"price_eur": 100.0,
"price_usd": 100.0,
"price_gbp": 100.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1675437490,
"modified": 1675437490
},
{
"_id": "63dd3c833d3615c905d93860",
"id": 29574,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"color": "white",
"size": 40,
"price_eur": 300.0,
"price_usd": 300.0,
"price_gbp": 300.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1675443331,
"modified": 1675443331
},
{
"_id": "63dd3c84e4276e00fcd926ed",
"id": 29575,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"size": 40,
"price_eur": 300.0,
"price_usd": 300.0,
"price_gbp": 300.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"color": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1675443332,
"modified": 1675443332
},
{
"_id": "63dd3c85f1ff6fef2fd91ec4",
"id": 29576,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"color": "white",
"size": 40,
"price_eur": 100.0,
"price_usd": 100.0,
"price_gbp": 100.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1675443333,
"modified": 1675443333
},
{
"_id": "63dd5a5463763adebaa6e0cc",
"id": 29578,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"color": "white",
"size": 40,
"price_eur": 300.0,
"price_usd": 300.0,
"price_gbp": 300.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1675450964,
"modified": 1675450964
},
{
"_id": "63dd5a5463763adebaa6e0ce",
"id": 29579,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"size": 40,
"price_eur": 300.0,
"price_usd": 300.0,
"price_gbp": 300.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"color": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1675450964,
"modified": 1675450964
},
{
"_id": "63dd5a55042d29d092a6dfd6",
"id": 29580,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"color": "white",
"size": 40,
"price_eur": 100.0,
"price_usd": 100.0,
"price_gbp": 100.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1675450965,
"modified": 1675450966
},
{
"_id": "63dd5f693d3615c905d93aa7",
"id": 29582,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"color": "white",
"size": 40,
"price_eur": 300.0,
"price_usd": 300.0,
"price_gbp": 300.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1675452265,
"modified": 1675452265
},
{
"_id": "63dd5f6a3d3615c905d93aa9",
"id": 29583,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"size": 40,
"price_eur": 300.0,
"price_usd": 300.0,
"price_gbp": 300.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"color": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1675452266,
"modified": 1675452266
},
{
"_id": "63dd5f6b1765e21aa0d917e9",
"id": 29584,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"color": "white",
"size": 40,
"price_eur": 100.0,
"price_usd": 100.0,
"price_gbp": 100.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1675452267,
"modified": 1675452267
},
{
"_id": "63dd987ba5955f4469d93057",
"id": 29586,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"color": "white",
"size": 40,
"price_eur": 300.0,
"price_usd": 300.0,
"price_gbp": 300.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1675466875,
"modified": 1675466875
},
{
"_id": "63dd987b1765e21aa0d917f8",
"id": 29587,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"size": 40,
"price_eur": 300.0,
"price_usd": 300.0,
"price_gbp": 300.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"color": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1675466875,
"modified": 1675466875
},
{
"_id": "63dd987ca5955f4469d9305a",
"id": 29588,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"color": "white",
"size": 40,
"price_eur": 100.0,
"price_usd": 100.0,
"price_gbp": 100.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1675466876,
"modified": 1675466877
},
{
"_id": "64216426888e51ab75b6c6a6",
"id": 29626,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"color": "white",
"size": 40,
"price_eur": 300.0,
"price_usd": 300.0,
"price_gbp": 300.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1679909926,
"modified": 1679909926
},
{
"_id": "64216426888e51ab75b6c6a8",
"id": 29627,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"size": 40,
"price_eur": 300.0,
"price_usd": 300.0,
"price_gbp": 300.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"color": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1679909926,
"modified": 1679909926
},
{
"_id": "64216427888e51ab75b6c6ab",
"id": 29628,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"color": "white",
"size": 40,
"price_eur": 100.0,
"price_usd": 100.0,
"price_gbp": 100.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1679909927,
"modified": 1679909928
},
{
"_id": "6426c9c00e8a603474807755",
"id": 29630,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"color": "white",
"size": 40,
"price_eur": 300.0,
"price_usd": 300.0,
"price_gbp": 300.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1680263616,
"modified": 1680263616
},
{
"_id": "6426c9c0257b54c1f4807377",
"id": 29631,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"size": 40,
"price_eur": 300.0,
"price_usd": 300.0,
"price_gbp": 300.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"color": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1680263616,
"modified": 1680263616
},
{
"_id": "6426c9c10e8a603474807758",
"id": 29632,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"color": "white",
"size": 40,
"price_eur": 100.0,
"price_usd": 100.0,
"price_gbp": 100.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1680263617,
"modified": 1680263618
},
{
"_id": "6426cdff257b54c1f48074a2",
"id": 29634,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"color": "white",
"size": 40,
"price_eur": 300.0,
"price_usd": 300.0,
"price_gbp": 300.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1680264703,
"modified": 1680264703
},
{
"_id": "6426cdff9a1ab65dba8075b7",
"id": 29635,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"size": 40,
"price_eur": 300.0,
"price_usd": 300.0,
"price_gbp": 300.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"color": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1680264703,
"modified": 1680264703
},
{
"_id": "6426ce0084576ba849807402",
"id": 29636,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"color": "white",
"size": 40,
"price_eur": 100.0,
"price_usd": 100.0,
"price_gbp": 100.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1680264704,
"modified": 1680264704
},
{
"_id": "6436cd7c3d2c8dc9bd978881",
"id": 29638,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"color": "white",
"size": 40,
"price_eur": 300.0,
"price_usd": 300.0,
"price_gbp": 300.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1681313148,
"modified": 1681313148
},
{
"_id": "6436cd7d3d2c8dc9bd978883",
"id": 29639,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"size": 40,
"price_eur": 300.0,
"price_usd": 300.0,
"price_gbp": 300.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"color": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1681313149,
"modified": 1681313149
},
{
"_id": "6436cd7e3d2c8dc9bd978886",
"id": 29640,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"color": "white",
"size": 40,
"price_eur": 100.0,
"price_usd": 100.0,
"price_gbp": 100.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1681313150,
"modified": 1681313150
},
{
"_id": "646644fa18ba9eb3812168cf",
"id": 29642,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"color": "white",
"size": 40,
"price_eur": 300.0,
"price_usd": 300.0,
"price_gbp": 300.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1684423930,
"modified": 1684423930
},
{
"_id": "646644fa02ec969f062171f8",
"id": 29643,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"size": 40,
"price_eur": 300.0,
"price_usd": 300.0,
"price_gbp": 300.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"color": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1684423930,
"modified": 1684423930
},
{
"_id": "646644fb02ec969f062171fa",
"id": 29644,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"color": "white",
"size": 40,
"price_eur": 100.0,
"price_usd": 100.0,
"price_gbp": 100.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1684423931,
"modified": 1684423932
},
{
"_id": "6474830e295f13e424709195",
"id": 29671,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"color": "white",
"size": 40,
"price_eur": 300.0,
"price_usd": 300.0,
"price_gbp": 300.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1685357326,
"modified": 1685357326
},
{
"_id": "6474830f295f13e424709197",
"id": 29672,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"size": 40,
"price_eur": 300.0,
"price_usd": 300.0,
"price_gbp": 300.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"color": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1685357327,
"modified": 1685357327
},
{
"_id": "6474830f295f13e424709199",
"id": 29673,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"color": "white",
"size": 40,
"price_eur": 100.0,
"price_usd": 100.0,
"price_gbp": 100.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1685357327,
"modified": 1685357328
},
{
"_id": "64776e38c96d421428709c6e",
"id": 29675,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"color": "white",
"size": 40,
"price_eur": 300.0,
"price_usd": 300.0,
"price_gbp": 300.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1685548600,
"modified": 1685548600
},
{
"_id": "64776e38c117983e9870a93d",
"id": 29676,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"size": 40,
"price_eur": 300.0,
"price_usd": 300.0,
"price_gbp": 300.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"color": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1685548600,
"modified": 1685548600
},
{
"_id": "64776e391a3d896c4b708d61",
"id": 29677,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"color": "white",
"size": 40,
"price_eur": 100.0,
"price_usd": 100.0,
"price_gbp": 100.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1685548601,
"modified": 1685548602
},
{
"_id": "64889567c96d42142870a451",
"id": 29679,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"color": "white",
"size": 40,
"price_eur": 300.0,
"price_usd": 300.0,
"price_gbp": 300.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1686672743,
"modified": 1686672743
},
{
"_id": "64889568c117983e9870b5d1",
"id": 29680,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"size": 40,
"price_eur": 300.0,
"price_usd": 300.0,
"price_gbp": 300.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"color": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1686672744,
"modified": 1686672744
},
{
"_id": "6488956873c17c899570acfa",
"id": 29681,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"color": "white",
"size": 40,
"price_eur": 100.0,
"price_usd": 100.0,
"price_gbp": 100.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1686672744,
"modified": 1686672745
},
{
"_id": "6488995bcc6a94d1517092da",
"id": 29683,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"color": "white",
"size": 40,
"price_eur": 300.0,
"price_usd": 300.0,
"price_gbp": 300.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1686673755,
"modified": 1686673755
},
{
"_id": "6488995bc117983e9870ba08",
"id": 29684,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"size": 40,
"price_eur": 300.0,
"price_usd": 300.0,
"price_gbp": 300.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"color": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1686673755,
"modified": 1686673755
},
{
"_id": "6488995c73c17c899570b034",
"id": 29685,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"color": "white",
"size": 40,
"price_eur": 100.0,
"price_usd": 100.0,
"price_gbp": 100.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1686673756,
"modified": 1686673756
},
{
"_id": "6488a0f173c17c899570b1a5",
"id": 29687,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"color": "white",
"size": 40,
"price_eur": 300.0,
"price_usd": 300.0,
"price_gbp": 300.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1686675697,
"modified": 1686675697
},
{
"_id": "6488a0f2c117983e9870bf08",
"id": 29688,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"size": 40,
"price_eur": 300.0,
"price_usd": 300.0,
"price_gbp": 300.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"color": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1686675698,
"modified": 1686675698
},
{
"_id": "6488a0f3c117983e9870bf0b",
"id": 29689,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"color": "white",
"size": 40,
"price_eur": 100.0,
"price_usd": 100.0,
"price_gbp": 100.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1686675699,
"modified": 1686675699
},
{
"_id": "64ca6cd104217b5528306679",
"id": 29741,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"color": "white",
"size": 40,
"price_eur": 300.0,
"price_usd": 300.0,
"price_gbp": 300.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1690987729,
"modified": 1690987729
},
{
"_id": "64ca6cd1d1f345d5173067c4",
"id": 29742,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"size": 40,
"price_eur": 300.0,
"price_usd": 300.0,
"price_gbp": 300.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"color": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1690987729,
"modified": 1690987729
},
{
"_id": "64ca6cd2888684673c3069b8",
"id": 29743,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"color": "white",
"size": 40,
"price_eur": 100.0,
"price_usd": 100.0,
"price_gbp": 100.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1690987730,
"modified": 1690987731
},
{
"_id": "64ca7e19888684673c306b8e",
"id": 29745,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"color": "white",
"size": 40,
"price_eur": 300.0,
"price_usd": 300.0,
"price_gbp": 300.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1690992153,
"modified": 1690992153
},
{
"_id": "64ca7e19e6ea9aad3e30666a",
"id": 29746,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"size": 40,
"price_eur": 300.0,
"price_usd": 300.0,
"price_gbp": 300.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"color": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1690992153,
"modified": 1690992153
},
{
"_id": "64ca7e1ad1f345d517306891",
"id": 29747,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"color": "white",
"size": 40,
"price_eur": 100.0,
"price_usd": 100.0,
"price_gbp": 100.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1690992154,
"modified": 1690992155
},
{
"_id": "64ca821a888684673c306d12",
"id": 29749,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"color": "white",
"size": 40,
"price_eur": 300.0,
"price_usd": 300.0,
"price_gbp": 300.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1690993178,
"modified": 1690993178
},
{
"_id": "64cb5e0a888684673c306fba",
"id": 29750,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"color": "white",
"size": 40,
"price_eur": 300.0,
"price_usd": 300.0,
"price_gbp": 300.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1691049482,
"modified": 1691049482
},
{
"_id": "64cb5e0a888684673c306fbc",
"id": 29751,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"size": 40,
"price_eur": 300.0,
"price_usd": 300.0,
"price_gbp": 300.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"color": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1691049482,
"modified": 1691049482
},
{
"_id": "64cb5e0bd1f345d517306b2c",
"id": 29752,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"color": "white",
"size": 40,
"price_eur": 100.0,
"price_usd": 100.0,
"price_gbp": 100.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1691049483,
"modified": 1691049484
},
{
"_id": "64cb6693888684673c307126",
"id": 29754,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"color": "white",
"size": 40,
"price_eur": 300.0,
"price_usd": 300.0,
"price_gbp": 300.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1691051667,
"modified": 1691051667
},
{
"_id": "64cb66942be5ed0f0d307519",
"id": 29755,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"size": 40,
"price_eur": 300.0,
"price_usd": 300.0,
"price_gbp": 300.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"color": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1691051668,
"modified": 1691051668
},
{
"_id": "64cb6695888684673c307128",
"id": 29756,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"color": "white",
"size": 40,
"price_eur": 100.0,
"price_usd": 100.0,
"price_gbp": 100.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1691051669,
"modified": 1691051669
},
{
"_id": "65295689f3f55dfa8a8005ad",
"id": 30224,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"color": "white",
"size": 40,
"price_eur": 300.0,
"price_usd": 300.0,
"price_gbp": 300.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1697207945,
"modified": 1697207945
},
{
"_id": "6529568a3d80c9f755800567",
"id": 30225,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"size": 40,
"price_eur": 300.0,
"price_usd": 300.0,
"price_gbp": 300.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"color": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1697207946,
"modified": 1697207946
},
{
"_id": "6529568bf3f55dfa8a8005b0",
"id": 30226,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"color": "white",
"size": 40,
"price_eur": 100.0,
"price_usd": 100.0,
"price_gbp": 100.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1697207947,
"modified": 1697207947
},
{
"_id": "65295a993d80c9f7558008a1",
"id": 30228,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"color": "white",
"size": 40,
"price_eur": 300.0,
"price_usd": 300.0,
"price_gbp": 300.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1697208985,
"modified": 1697208985
},
{
"_id": "65295a9a3d80c9f7558008a3",
"id": 30229,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"size": 40,
"price_eur": 300.0,
"price_usd": 300.0,
"price_gbp": 300.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"color": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1697208986,
"modified": 1697208986
},
{
"_id": "65295a9bf3f55dfa8a800792",
"id": 30230,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"color": "white",
"size": 40,
"price_eur": 100.0,
"price_usd": 100.0,
"price_gbp": 100.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1697208987,
"modified": 1697208987
},
{
"_id": "65942c08940712bb25d80ebc",
"id": 30895,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"color": "white",
"size": 40,
"price_eur": 300.0,
"price_usd": 300.0,
"price_gbp": 300.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1704209416,
"modified": 1704209416
},
{
"_id": "65942c08940712bb25d80ebe",
"id": 30896,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"size": 40,
"price_eur": 300.0,
"price_usd": 300.0,
"price_gbp": 300.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"color": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1704209416,
"modified": 1704209416
},
{
"_id": "65942c094e6c8bae5bd8086d",
"id": 30897,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"color": "white",
"size": 40,
"price_eur": 100.0,
"price_usd": 100.0,
"price_gbp": 100.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1704209417,
"modified": 1704209417
},
{
"_id": "65942d884e6c8bae5bd80a44",
"id": 30899,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"color": "white",
"size": 40,
"price_eur": 300.0,
"price_usd": 300.0,
"price_gbp": 300.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1704209800,
"modified": 1704209800
},
{
"_id": "65942d894e6c8bae5bd80a46",
"id": 30900,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"size": 40,
"price_eur": 300.0,
"price_usd": 300.0,
"price_gbp": 300.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"color": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1704209801,
"modified": 1704209801
},
{
"_id": "65942d8a4e6c8bae5bd80a49",
"id": 30901,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"color": "white",
"size": 40,
"price_eur": 100.0,
"price_usd": 100.0,
"price_gbp": 100.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1704209802,
"modified": 1704209802
},
{
"_id": "659436aa4e6c8bae5bd80f9f",
"id": 30903,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"color": "white",
"size": 40,
"price_eur": 300.0,
"price_usd": 300.0,
"price_gbp": 300.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1704212138,
"modified": 1704212138
},
{
"_id": "659436ab4e6c8bae5bd80fa1",
"id": 30904,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"size": 40,
"price_eur": 300.0,
"price_usd": 300.0,
"price_gbp": 300.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"color": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1704212139,
"modified": 1704212139
},
{
"_id": "659436ac4e6c8bae5bd80fa4",
"id": 30905,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"color": "white",
"size": 40,
"price_eur": 100.0,
"price_usd": 100.0,
"price_gbp": 100.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1704212140,
"modified": 1704212140
},
{
"_id": "6596e71e0f1ae1f241aaf31a",
"id": 30907,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"color": "white",
"size": 40,
"price_eur": 300.0,
"price_usd": 300.0,
"price_gbp": 300.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1704388382,
"modified": 1704388382
},
{
"_id": "6596e71fed44d3f74baaf522",
"id": 30908,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"size": 40,
"price_eur": 300.0,
"price_usd": 300.0,
"price_gbp": 300.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"color": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1704388383,
"modified": 1704388383
},
{
"_id": "6596e71fbb11325081aaf7a2",
"id": 30909,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"color": "white",
"size": 40,
"price_eur": 100.0,
"price_usd": 100.0,
"price_gbp": 100.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1704388383,
"modified": 1704388384
},
{
"_id": "6596eb4fed44d3f74baaf6d5",
"id": 30911,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"color": "white",
"size": 40,
"price_eur": 300.0,
"price_usd": 300.0,
"price_gbp": 300.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1704389455,
"modified": 1704389455
},
{
"_id": "6596eb4f152d4ad638aaf528",
"id": 30912,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"size": 40,
"price_eur": 300.0,
"price_usd": 300.0,
"price_gbp": 300.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"color": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1704389455,
"modified": 1704389455
},
{
"_id": "6596eb50ed44d3f74baaf6d7",
"id": 30913,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"color": "white",
"size": 40,
"price_eur": 100.0,
"price_usd": 100.0,
"price_gbp": 100.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1704389456,
"modified": 1704389457
}
]
HTTP Request
GET https://ripe-core-sbx.platforme.com/api/price_rules
Parameters
This request receives 2 parameters: filter_operator
and filters
. If filters
is defined but not filter_operator
, its default value will be $and
.
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
filter_operator | no | text | $and |
The logic operator that unites all the options given in filters . |
filters | no | text | null |
The filters that will be applied to the price rules query. Must have the structure <parameter>:<operator>:<value> . More than one filter can be given to the query, and their application together is based on the filter_operator given. |
Filter Operator Values
Value | Description |
---|---|
$and | The results given must comply with all the filters. |
$or | The results given must comply with at least on of the filters. |
Filters Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
brand | no | text | null |
The model's brand. |
shoe | no | text | null |
The model's name. |
variant | no | text | null |
The variant (or sub-variant) of the specified model. |
part | no | text | null |
The part of the model to which the price rule will be applied. |
material | no | text | null |
The material of the part to which the price rule will be applied. |
color | no | text | null |
The color of the material of the part to which the price rule will be applied. |
size | no | numeric | null |
The model's native size. |
priority | no | numeric | null |
The priority of the price rule. |
pivot | no | text | null |
The location and currency tuple that defines the base price to be used for the exchanged prices. |
price_eur | no | numeric | null |
The price in eur. |
price_usd | no | numeric | null |
The price in us dollars. |
price_gbp | no | numeric | null |
The price in british pounds. |
price_geo | no | dictionary | null |
The dictionary that contains the multiple Geo-Priced currencies in a country and currency based. strategy. |
vat_included | no | boolean | false | If the price has VAT tax included. |
ddp_included | no | boolean | false | If the DDP (Delivery Duty Paid) value is already incuded. |
fixed_price | no | boolean | false | If the provided price value should be considered fixed and final meaning that it should be guaranteed to be presented like that to the final user. |
round_price | no | boolean | false | If the provided price value should be rounded for a proper presentation for the end-user, the algorithm itself is not defined by this boolean. |
Create
Creates a price rule for a specific combination of part, material and color of a model of a brand. If the user does not have permission for the given brand, an error is returned.
Example Request
curl -s -X POST \
"https://ripe-core-sbx.platforme.com/api/price_rules" \
-H "Content-Type: application/json" \
-H "X-Secret-Key: $RIPE_KEY" \
-d '{
"brand":"swear",
"model":"vyner",
"part":"front",
"material":"nappa",
"color":"white",
"size": 40,
"price_eur": 300,
"price_usd": 300,
"price_gbp": 300
}'
Example Response
{
"_id": "6598262ebb11325081aafe08",
"id": 30942,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"color": "white",
"size": 40,
"price_eur": 300.0,
"price_usd": 300.0,
"price_gbp": 300.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1704470062,
"modified": 1704470062
}
HTTP Request
POST https://ripe-core-sbx.platforme.com/api/price_rules
POST Body
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
brand | no | text | null |
The model's brand. |
shoe | no | text | null |
The model's name. |
variant | no | text | null |
The variant (or sub-variant) of the specified model. |
part | no | text | null |
The part of the model to which the price rule will be applied. |
material | no | text | null |
The material of the part to which the price rule will be applied. |
color | no | text | null |
The color of the material of the part to which the price rule will be applied. |
size | no | numeric | null |
The model's native size. |
priority | no | numeric | null |
The priority of the price rule. |
pivot | no | text | null |
The location and currency tuple that defines the base price to be used for the exchanged prices. |
price_eur | no | numeric | null |
The price in eur. |
price_usd | no | numeric | null |
The price in us dollars. |
price_gbp | no | numeric | null |
The price in british pounds. |
price_geo | no | dictionary | null |
The dictionary that contains the multiple Geo-Priced currencies in a country and currency based strategy. |
vat_included | no | boolean | false | If the price has VAT tax included. |
ddp_included | no | boolean | false | If the DDP (Delivery Duty Paid) value is already incuded. |
fixed_price | no | boolean | false | If the provided price value should be considered fixed and final meaning that it should be guaranteed to be presented like that to the final user. |
round_price | no | boolean | false | If the provided price value should be rounded for a proper presentation for the end-user, the algorithm itself is not defined by this boolean. |
Show
Returns the availability with the given ID. If the user does not have permissions to access the rule's brand, returns a Not Found Exception (404) error.
Example Request
curl "https://ripe-core-sbx.platforme.com/api/price_rules/<id>" \
-H "X-Secret-Key: $RIPE_KEY"
Example Response
{
"_id": "6598262ebb11325081aafe0a",
"id": 30943,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"size": 40,
"price_eur": 300.0,
"price_usd": 300.0,
"price_gbp": 300.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"color": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1704470062,
"modified": 1704470062
}
HTTP Request
GET https://ripe-core-sbx.platforme.com/api/price_rules/<int:id>
Path Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
id | yes | numeric | The rule's id. |
Update
Updates the price rule with the given ID. If the user does not have permissions to update the rule's brand, returns a Not Found Exception (404) error.
Example Request
curl -s -X PUT \
"https://ripe-core-sbx.platforme.com/api/price_rules/1" \
-H "Content-Type: application/json" \
-H "X-Secret-Key: $RIPE_KEY" \
-d '{
"price_eur": 100,
"price_usd": 100,
"price_gbp": 100
}'
Example Response
{
"_id": "6598262fbb11325081aafe0d",
"id": 30944,
"brand": "swear",
"shoe": "vyner",
"part": "front",
"material": "nappa",
"color": "white",
"size": 40,
"price_eur": 100.0,
"price_usd": 100.0,
"price_gbp": 100.0,
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"variant": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_geo": {},
"created": 1704470063,
"modified": 1704470064
}
HTTP Request
PUT https://ripe-core-sbx.platforme.com/api/price_rules/<int:id>
Path Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
id | yes | numeric | The rule's id. |
POST Body
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
brand | no | text | null |
The model's brand. |
shoe | no | text | null |
The model's name. |
variant | no | text | null |
The variant (or sub-variant) of the specified model. |
part | no | text | null |
The part of the model to which the price rule will be applied. |
material | no | text | null |
The material of the part to which the price rule will be applied. |
color | no | text | null |
The color of the material of the part to which the price rule will be applied. |
size | no | numeric | null |
The model's native size. |
priority | no | numeric | null |
The priority of the price rule. |
pivot | no | text | null |
The location and currency tuple that defines the base price to be used for the exchanged prices. |
price_eur | no | numeric | null |
The price in eur. |
price_usd | no | numeric | null |
The price in us dollars. |
price_gbp | no | numeric | null |
The price in british pounds. |
price_geo | no | dictionary | null |
The dictionary that contains the multiple Geo-Priced currencies in a country and currency based strategy. |
vat_included | no | boolean | false | If the price has VAT tax included. |
ddp_included | no | boolean | false | If the DDP (Delivery Duty Paid) value is already incuded. |
fixed_price | no | boolean | false | If the provided price value should be considered fixed and final meaning that it should be guaranteed to be presented like that to the final user. |
round_price | no | boolean | false | If the provided price value should be rounded for a proper presentation for the end-user, the algorithm itself is not defined by this boolean. |
Delete
Deletes the availability with the given ID. If the user does not have permissions to access the rule's brand, returns a Not Found Exception (404) error.
Example Request
curl -s -X DELETE "https://ripe-core-sbx.platforme.com/api/price/1" \
-H "X-Secret-Key: $RIPE_KEY"
Example Response
{
"_id": "659826303e27f1c070aafd68",
"id": 30945,
"enabled": true,
"description": null,
"meta": {},
"brand_t": null,
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"brand": null,
"shoe": null,
"variant": null,
"part": null,
"material": null,
"color": null,
"vat_included": false,
"ddp_included": false,
"fixed_price": false,
"round_price": true,
"pivot": null,
"price_eur": null,
"price_usd": null,
"price_gbp": null,
"price_geo": {},
"size": null,
"created": 1704470064,
"modified": 1704470064
}
HTTP Request
DELETE https://ripe-core-sbx.platforme.com/api/price_rules/<int:id>
Path Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
id | yes | numeric | The rule's id. |
Transport Rule Endpoints
List
The list endpoint returns the existing transport rules according to the given parameters. If no parameters are given, it will be returned all the transport rules the user has permissions to access. A user only has permission to access and modify data related to him, meaning that he can only access data from the brands he is responsible for.
Query support can be consulted here.
Example Request
curl "https://ripe-core-sbx.platforme.com/api/transport_rules?filters[]=shoe:eq:vyner" \
-H "X-Secret-Key: $RIPE_KEY"
Example Response
[
{
"_id": "65647370fa05e4db991b52a1",
"id": 1501,
"brand": "swear",
"shoe": "vyner",
"size": 40,
"weight": 90.0,
"weight_units": "kilograms",
"package": "envelope",
"courier": "ups",
"shipping_details": {
"service": "standard",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"country": null,
"factory": null,
"documents": [],
"created": 1675095074,
"modified": 1701081968
},
{
"_id": "65647370fa05e4db991b52a2",
"id": 1501,
"brand": "swear",
"shoe": "vyner",
"size": 40,
"weight": 90.0,
"weight_units": "kilograms",
"package": "envelope",
"courier": "ups",
"shipping_details": {
"service": "standard",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"country": null,
"factory": null,
"documents": [],
"created": 1675095074,
"modified": 1701081968
},
{
"_id": "65647370fa05e4db991b52a3",
"id": 1501,
"brand": "swear",
"shoe": "vyner",
"size": 40,
"weight": 90.0,
"weight_units": "kilograms",
"package": "envelope",
"courier": "dhl",
"shipping_details": {
"service": "standard",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"country": null,
"factory": null,
"documents": [],
"created": 1675095075,
"modified": 1701081968
},
{
"_id": "65647370fa05e4db991b52a4",
"id": 1501,
"brand": "swear",
"shoe": "vyner",
"size": 40,
"weight": 90.0,
"weight_units": "kilograms",
"package": "envelope",
"courier": "ups",
"shipping_details": {
"service": "standard",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"country": null,
"factory": null,
"documents": [],
"created": 1675095322,
"modified": 1701081968
},
{
"_id": "65647370fa05e4db991b52a5",
"id": 1501,
"brand": "swear",
"shoe": "vyner",
"size": 40,
"weight": 90.0,
"weight_units": "kilograms",
"package": "envelope",
"courier": "ups",
"shipping_details": {
"service": "standard",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"country": null,
"factory": null,
"documents": [],
"created": 1675095322,
"modified": 1701081968
},
{
"_id": "65647370fa05e4db991b52a6",
"id": 1501,
"brand": "swear",
"shoe": "vyner",
"size": 40,
"weight": 90.0,
"weight_units": "kilograms",
"package": "envelope",
"courier": "dhl",
"shipping_details": {
"service": "standard",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"country": null,
"factory": null,
"documents": [],
"created": 1675095323,
"modified": 1701081968
},
{
"_id": "65647370fa05e4db991b52a7",
"id": 1501,
"brand": "swear",
"shoe": "vyner",
"size": 40,
"weight": 90.0,
"weight_units": "kilograms",
"package": "envelope",
"courier": "ups",
"shipping_details": {
"service": "standard",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"country": null,
"factory": null,
"documents": [],
"created": 1675095855,
"modified": 1701081968
},
{
"_id": "65647370fa05e4db991b52a8",
"id": 1501,
"brand": "swear",
"shoe": "vyner",
"size": 40,
"weight": 90.0,
"weight_units": "kilograms",
"package": "envelope",
"courier": "ups",
"shipping_details": {
"service": "standard",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"country": null,
"factory": null,
"documents": [],
"created": 1675095855,
"modified": 1701081968
},
{
"_id": "65647370fa05e4db991b52a9",
"id": 1501,
"brand": "swear",
"shoe": "vyner",
"size": 40,
"weight": 90.0,
"weight_units": "kilograms",
"package": "envelope",
"courier": "dhl",
"shipping_details": {
"service": "standard",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"country": null,
"factory": null,
"documents": [],
"created": 1675095855,
"modified": 1701081968
},
{
"_id": "65647370fa05e4db991b52aa",
"id": 1501,
"brand": "swear",
"shoe": "vyner",
"size": 40,
"weight": 90.0,
"weight_units": "kilograms",
"package": "envelope",
"courier": "ups",
"shipping_details": {
"service": "standard",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"country": null,
"factory": null,
"documents": [],
"created": 1675096060,
"modified": 1701081968
},
{
"_id": "65647370fa05e4db991b52ab",
"id": 1501,
"brand": "swear",
"shoe": "vyner",
"size": 40,
"weight": 90.0,
"weight_units": "kilograms",
"package": "envelope",
"courier": "ups",
"shipping_details": {
"service": "standard",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"country": null,
"factory": null,
"documents": [],
"created": 1675096060,
"modified": 1701081968
},
{
"_id": "65647370fa05e4db991b52ac",
"id": 1501,
"brand": "swear",
"shoe": "vyner",
"size": 40,
"weight": 90.0,
"weight_units": "kilograms",
"package": "envelope",
"courier": "dhl",
"shipping_details": {
"service": "standard",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"country": null,
"factory": null,
"documents": [],
"created": 1675096061,
"modified": 1701081968
},
{
"_id": "65647370fa05e4db991b52ad",
"id": 1501,
"brand": "swear",
"shoe": "vyner",
"size": 40,
"weight": 90.0,
"weight_units": "kilograms",
"package": "envelope",
"courier": "ups",
"shipping_details": {
"service": "standard",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"country": null,
"factory": null,
"documents": [],
"created": 1675427336,
"modified": 1701081968
},
{
"_id": "65647370fa05e4db991b52ae",
"id": 1501,
"brand": "swear",
"shoe": "vyner",
"size": 40,
"weight": 90.0,
"weight_units": "kilograms",
"package": "envelope",
"courier": "ups",
"shipping_details": {
"service": "standard",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"country": null,
"factory": null,
"documents": [],
"created": 1675427336,
"modified": 1701081968
},
{
"_id": "65647370fa05e4db991b52af",
"id": 1501,
"brand": "swear",
"shoe": "vyner",
"size": 40,
"weight": 90.0,
"weight_units": "kilograms",
"package": "envelope",
"courier": "dhl",
"shipping_details": {
"service": "standard",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"country": null,
"factory": null,
"documents": [],
"created": 1675427337,
"modified": 1701081968
},
{
"_id": "65647370fa05e4db991b52b0",
"id": 1501,
"brand": "swear",
"shoe": "vyner",
"size": 40,
"weight": 90.0,
"weight_units": "kilograms",
"package": "envelope",
"courier": "ups",
"shipping_details": {
"service": "standard",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"country": null,
"factory": null,
"documents": [],
"created": 1675428376,
"modified": 1701081968
},
{
"_id": "65647370fa05e4db991b52b1",
"id": 1501,
"brand": "swear",
"shoe": "vyner",
"size": 40,
"weight": 90.0,
"weight_units": "kilograms",
"package": "envelope",
"courier": "ups",
"shipping_details": {
"service": "standard",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"country": null,
"factory": null,
"documents": [],
"created": 1675428377,
"modified": 1701081968
},
{
"_id": "65647370fa05e4db991b52b2",
"id": 1501,
"brand": "swear",
"shoe": "vyner",
"size": 40,
"weight": 90.0,
"weight_units": "kilograms",
"package": "envelope",
"courier": "dhl",
"shipping_details": {
"service": "standard",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"country": null,
"factory": null,
"documents": [],
"created": 1675428377,
"modified": 1701081968
},
{
"_id": "65647370fa05e4db991b52b3",
"id": 1501,
"brand": "swear",
"shoe": "vyner",
"size": 40,
"weight": 90.0,
"weight_units": "kilograms",
"package": "envelope",
"courier": "ups",
"shipping_details": {
"service": "standard",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"country": null,
"factory": null,
"documents": [],
"created": 1675429302,
"modified": 1701081968
},
{
"_id": "65647370fa05e4db991b52b4",
"id": 1501,
"brand": "swear",
"shoe": "vyner",
"size": 40,
"weight": 90.0,
"weight_units": "kilograms",
"package": "envelope",
"courier": "ups",
"shipping_details": {
"service": "standard",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"country": null,
"factory": null,
"documents": [],
"created": 1675429302,
"modified": 1701081968
},
{
"_id": "65647370fa05e4db991b52b5",
"id": 1501,
"brand": "swear",
"shoe": "vyner",
"size": 40,
"weight": 90.0,
"weight_units": "kilograms",
"package": "envelope",
"courier": "dhl",
"shipping_details": {
"service": "standard",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"country": null,
"factory": null,
"documents": [],
"created": 1675429302,
"modified": 1701081968
},
{
"_id": "65647370fa05e4db991b52b6",
"id": 1501,
"brand": "swear",
"shoe": "vyner",
"size": 40,
"weight": 90.0,
"weight_units": "kilograms",
"package": "envelope",
"courier": "ups",
"shipping_details": {
"service": "standard",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"country": null,
"factory": null,
"documents": [],
"created": 1675429450,
"modified": 1701081968
},
{
"_id": "65647370fa05e4db991b52b7",
"id": 1501,
"brand": "swear",
"shoe": "vyner",
"size": 40,
"weight": 90.0,
"weight_units": "kilograms",
"package": "envelope",
"courier": "ups",
"shipping_details": {
"service": "standard",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"country": null,
"factory": null,
"documents": [],
"created": 1675429450,
"modified": 1701081968
},
{
"_id": "65647370fa05e4db991b52b8",
"id": 1501,
"brand": "swear",
"shoe": "vyner",
"size": 40,
"weight": 90.0,
"weight_units": "kilograms",
"package": "envelope",
"courier": "dhl",
"shipping_details": {
"service": "standard",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"country": null,
"factory": null,
"documents": [],
"created": 1675429450,
"modified": 1701081968
},
{
"_id": "65647370fa05e4db991b52b9",
"id": 1501,
"brand": "swear",
"shoe": "vyner",
"size": 40,
"weight": 90.0,
"weight_units": "kilograms",
"package": "envelope",
"courier": "ups",
"shipping_details": {
"service": "standard",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"country": null,
"factory": null,
"documents": [],
"created": 1675430599,
"modified": 1701081968
},
{
"_id": "65647370fa05e4db991b52ba",
"id": 1501,
"brand": "swear",
"shoe": "vyner",
"size": 40,
"weight": 90.0,
"weight_units": "kilograms",
"package": "envelope",
"courier": "ups",
"shipping_details": {
"service": "standard",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"country": null,
"factory": null,
"documents": [],
"created": 1675430600,
"modified": 1701081968
},
{
"_id": "65647370fa05e4db991b52bb",
"id": 1501,
"brand": "swear",
"shoe": "vyner",
"size": 40,
"weight": 90.0,
"weight_units": "kilograms",
"package": "envelope",
"courier": "dhl",
"shipping_details": {
"service": "standard",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"country": null,
"factory": null,
"documents": [],
"created": 1675430601,
"modified": 1701081968
},
{
"_id": "65647370fa05e4db991b52bc",
"id": 1501,
"brand": "swear",
"shoe": "vyner",
"size": 40,
"weight": 90.0,
"weight_units": "kilograms",
"package": "envelope",
"courier": "ups",
"shipping_details": {
"service": "standard",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"country": null,
"factory": null,
"documents": [],
"created": 1675434195,
"modified": 1701081968
},
{
"_id": "65647370fa05e4db991b52bd",
"id": 1501,
"brand": "swear",
"shoe": "vyner",
"size": 40,
"weight": 90.0,
"weight_units": "kilograms",
"package": "envelope",
"courier": "ups",
"shipping_details": {
"service": "standard",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"country": null,
"factory": null,
"documents": [],
"created": 1675434195,
"modified": 1701081968
},
{
"_id": "65647370fa05e4db991b52be",
"id": 1501,
"brand": "swear",
"shoe": "vyner",
"size": 40,
"weight": 90.0,
"weight_units": "kilograms",
"package": "envelope",
"courier": "dhl",
"shipping_details": {
"service": "standard",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"country": null,
"factory": null,
"documents": [],
"created": 1675434196,
"modified": 1701081968
},
{
"_id": "65647370fa05e4db991b52bf",
"id": 1501,
"brand": "swear",
"shoe": "vyner",
"size": 40,
"weight": 90.0,
"weight_units": "kilograms",
"package": "envelope",
"courier": "ups",
"shipping_details": {
"service": "standard",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"country": null,
"factory": null,
"documents": [],
"created": 1675435381,
"modified": 1701081968
},
{
"_id": "65647370fa05e4db991b52c0",
"id": 1501,
"brand": "swear",
"shoe": "vyner",
"size": 40,
"weight": 90.0,
"weight_units": "kilograms",
"package": "envelope",
"courier": "ups",
"shipping_details": {
"service": "standard",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"country": null,
"factory": null,
"documents": [],
"created": 1675435381,
"modified": 1701081968
},
{
"_id": "65647370fa05e4db991b52c1",
"id": 1501,
"brand": "swear",
"shoe": "vyner",
"size": 40,
"weight": 90.0,
"weight_units": "kilograms",
"package": "envelope",
"courier": "dhl",
"shipping_details": {
"service": "standard",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"country": null,
"factory": null,
"documents": [],
"created": 1675435381,
"modified": 1701081968
},
{
"_id": "65647370fa05e4db991b52c2",
"id": 1501,
"brand": "swear",
"shoe": "vyner",
"size": 40,
"weight": 90.0,
"weight_units": "kilograms",
"package": "envelope",
"courier": "ups",
"shipping_details": {
"service": "standard",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"country": null,
"factory": null,
"documents": [],
"created": 1675437492,
"modified": 1701081968
},
{
"_id": "65647370fa05e4db991b52c3",
"id": 1501,
"brand": "swear",
"shoe": "vyner",
"size": 40,
"weight": 90.0,
"weight_units": "kilograms",
"package": "envelope",
"courier": "ups",
"shipping_details": {
"service": "standard",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"country": null,
"factory": null,
"documents": [],
"created": 1675437493,
"modified": 1701081968
},
{
"_id": "65647370fa05e4db991b52c4",
"id": 1501,
"brand": "swear",
"shoe": "vyner",
"size": 40,
"weight": 90.0,
"weight_units": "kilograms",
"package": "envelope",
"courier": "dhl",
"shipping_details": {
"service": "standard",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"country": null,
"factory": null,
"documents": [],
"created": 1675437494,
"modified": 1701081968
},
{
"_id": "65647370fa05e4db991b52c5",
"id": 1501,
"brand": "swear",
"shoe": "vyner",
"size": 40,
"weight": 90.0,
"weight_units": "kilograms",
"package": "envelope",
"courier": "ups",
"shipping_details": {
"service": "standard",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"country": null,
"factory": null,
"documents": [],
"created": 1675443335,
"modified": 1701081968
},
{
"_id": "65647370fa05e4db991b52c6",
"id": 1501,
"brand": "swear",
"shoe": "vyner",
"size": 40,
"weight": 90.0,
"weight_units": "kilograms",
"package": "envelope",
"courier": "ups",
"shipping_details": {
"service": "standard",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"country": null,
"factory": null,
"documents": [],
"created": 1675443336,
"modified": 1701081968
},
{
"_id": "65647370fa05e4db991b52c7",
"id": 1501,
"brand": "swear",
"shoe": "vyner",
"size": 40,
"weight": 90.0,
"weight_units": "kilograms",
"package": "envelope",
"courier": "dhl",
"shipping_details": {
"service": "standard",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"country": null,
"factory": null,
"documents": [],
"created": 1675443337,
"modified": 1701081968
},
{
"_id": "65647370fa05e4db991b52c8",
"id": 1501,
"brand": "swear",
"shoe": "vyner",
"size": 40,
"weight": 90.0,
"weight_units": "kilograms",
"package": "envelope",
"courier": "ups",
"shipping_details": {
"service": "standard",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"country": null,
"factory": null,
"documents": [],
"created": 1675450968,
"modified": 1701081968
},
{
"_id": "65647370fa05e4db991b52c9",
"id": 1501,
"brand": "swear",
"shoe": "vyner",
"size": 40,
"weight": 90.0,
"weight_units": "kilograms",
"package": "envelope",
"courier": "ups",
"shipping_details": {
"service": "standard",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"country": null,
"factory": null,
"documents": [],
"created": 1675450968,
"modified": 1701081968
},
{
"_id": "65647370fa05e4db991b52ca",
"id": 1501,
"brand": "swear",
"shoe": "vyner",
"size": 40,
"weight": 90.0,
"weight_units": "kilograms",
"package": "envelope",
"courier": "dhl",
"shipping_details": {
"service": "standard",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"country": null,
"factory": null,
"documents": [],
"created": 1675450969,
"modified": 1701081968
},
{
"_id": "65647370fa05e4db991b52cb",
"id": 1501,
"brand": "swear",
"shoe": "vyner",
"size": 40,
"weight": 90.0,
"weight_units": "kilograms",
"package": "envelope",
"courier": "ups",
"shipping_details": {
"service": "standard",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"country": null,
"factory": null,
"documents": [],
"created": 1675452269,
"modified": 1701081968
},
{
"_id": "65647370fa05e4db991b52cc",
"id": 1501,
"brand": "swear",
"shoe": "vyner",
"size": 40,
"weight": 90.0,
"weight_units": "kilograms",
"package": "envelope",
"courier": "ups",
"shipping_details": {
"service": "standard",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"country": null,
"factory": null,
"documents": [],
"created": 1675452270,
"modified": 1701081968
},
{
"_id": "65647370fa05e4db991b52cd",
"id": 1501,
"brand": "swear",
"shoe": "vyner",
"size": 40,
"weight": 90.0,
"weight_units": "kilograms",
"package": "envelope",
"courier": "dhl",
"shipping_details": {
"service": "standard",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"country": null,
"factory": null,
"documents": [],
"created": 1675452271,
"modified": 1701081968
},
{
"_id": "65647370fa05e4db991b52ce",
"id": 1501,
"brand": "swear",
"shoe": "vyner",
"size": 40,
"weight": 90.0,
"weight_units": "kilograms",
"package": "envelope",
"courier": "ups",
"shipping_details": {
"service": "standard",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"country": null,
"factory": null,
"documents": [],
"created": 1675466879,
"modified": 1701081968
},
{
"_id": "65647370fa05e4db991b52cf",
"id": 1501,
"brand": "swear",
"shoe": "vyner",
"size": 40,
"weight": 90.0,
"weight_units": "kilograms",
"package": "envelope",
"courier": "ups",
"shipping_details": {
"service": "standard",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"country": null,
"factory": null,
"documents": [],
"created": 1675466879,
"modified": 1701081968
},
{
"_id": "65647370fa05e4db991b52d0",
"id": 1501,
"brand": "swear",
"shoe": "vyner",
"size": 40,
"weight": 90.0,
"weight_units": "kilograms",
"package": "envelope",
"courier": "dhl",
"shipping_details": {
"service": "standard",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"country": null,
"factory": null,
"documents": [],
"created": 1675466880,
"modified": 1701081968
},
{
"_id": "65647370fa05e4db991b52d1",
"id": 1501,
"brand": "swear",
"shoe": "vyner",
"size": 40,
"weight": 90.0,
"weight_units": "kilograms",
"package": "envelope",
"courier": "ups",
"shipping_details": {
"service": "standard",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"country": null,
"factory": null,
"documents": [],
"created": 1679909930,
"modified": 1701081968
},
{
"_id": "65647370fa05e4db991b52d2",
"id": 1501,
"brand": "swear",
"shoe": "vyner",
"size": 40,
"weight": 90.0,
"weight_units": "kilograms",
"package": "envelope",
"courier": "ups",
"shipping_details": {
"service": "standard",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"country": null,
"factory": null,
"documents": [],
"created": 1679909930,
"modified": 1701081968
},
{
"_id": "65647370fa05e4db991b52d3",
"id": 1501,
"brand": "swear",
"shoe": "vyner",
"size": 40,
"weight": 90.0,
"weight_units": "kilograms",
"package": "envelope",
"courier": "dhl",
"shipping_details": {
"service": "standard",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"country": null,
"factory": null,
"documents": [],
"created": 1679909931,
"modified": 1701081968
},
{
"_id": "65647370fa05e4db991b52d4",
"id": 1501,
"brand": "swear",
"shoe": "vyner",
"size": 40,
"weight": 90.0,
"weight_units": "kilograms",
"package": "envelope",
"courier": "ups",
"shipping_details": {
"service": "standard",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"country": null,
"factory": null,
"documents": [],
"created": 1680263620,
"modified": 1701081968
},
{
"_id": "65647370fa05e4db991b52d5",
"id": 1501,
"brand": "swear",
"shoe": "vyner",
"size": 40,
"weight": 90.0,
"weight_units": "kilograms",
"package": "envelope",
"courier": "ups",
"shipping_details": {
"service": "standard",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"country": null,
"factory": null,
"documents": [],
"created": 1680263620,
"modified": 1701081968
},
{
"_id": "65647370fa05e4db991b52d6",
"id": 1501,
"brand": "swear",
"shoe": "vyner",
"size": 40,
"weight": 90.0,
"weight_units": "kilograms",
"package": "envelope",
"courier": "dhl",
"shipping_details": {
"service": "standard",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"country": null,
"factory": null,
"documents": [],
"created": 1680263621,
"modified": 1701081968
},
{
"_id": "65647370fa05e4db991b52d7",
"id": 1501,
"brand": "swear",
"shoe": "vyner",
"size": 40,
"weight": 90.0,
"weight_units": "kilograms",
"package": "envelope",
"courier": "ups",
"shipping_details": {
"service": "standard",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"country": null,
"factory": null,
"documents": [],
"created": 1680264707,
"modified": 1701081968
},
{
"_id": "65647370fa05e4db991b52d8",
"id": 1501,
"brand": "swear",
"shoe": "vyner",
"size": 40,
"weight": 90.0,
"weight_units": "kilograms",
"package": "envelope",
"courier": "ups",
"shipping_details": {
"service": "standard",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"country": null,
"factory": null,
"documents": [],
"created": 1680264707,
"modified": 1701081968
},
{
"_id": "65647370fa05e4db991b52d9",
"id": 1501,
"brand": "swear",
"shoe": "vyner",
"size": 40,
"weight": 90.0,
"weight_units": "kilograms",
"package": "envelope",
"courier": "dhl",
"shipping_details": {
"service": "standard",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"country": null,
"factory": null,
"documents": [],
"created": 1680264708,
"modified": 1701081968
},
{
"_id": "65647370fa05e4db991b52da",
"id": 1501,
"brand": "swear",
"shoe": "vyner",
"size": 40,
"weight": 90.0,
"weight_units": "kilograms",
"package": "envelope",
"courier": "ups",
"shipping_details": {
"service": "standard",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"country": null,
"factory": null,
"documents": [],
"created": 1681313152,
"modified": 1701081968
},
{
"_id": "65647370fa05e4db991b52db",
"id": 1501,
"brand": "swear",
"shoe": "vyner",
"size": 40,
"weight": 90.0,
"weight_units": "kilograms",
"package": "envelope",
"courier": "ups",
"shipping_details": {
"service": "standard",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"country": null,
"factory": null,
"documents": [],
"created": 1681313153,
"modified": 1701081968
},
{
"_id": "65647370fa05e4db991b52dc",
"id": 1501,
"brand": "swear",
"shoe": "vyner",
"size": 40,
"weight": 90.0,
"weight_units": "kilograms",
"package": "envelope",
"courier": "dhl",
"shipping_details": {
"service": "standard",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"country": null,
"factory": null,
"documents": [],
"created": 1681313154,
"modified": 1701081968
},
{
"_id": "65647370fa05e4db991b52dd",
"id": 1501,
"brand": "swear",
"shoe": "vyner",
"size": 40,
"weight": 90.0,
"weight_units": "kilograms",
"package": "envelope",
"courier": "ups",
"shipping_details": {
"service": "standard",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"country": null,
"factory": null,
"documents": [],
"created": 1684423934,
"modified": 1701081968
},
{
"_id": "65647370fa05e4db991b52de",
"id": 1501,
"brand": "swear",
"shoe": "vyner",
"size": 40,
"weight": 90.0,
"weight_units": "kilograms",
"package": "envelope",
"courier": "ups",
"shipping_details": {
"service": "standard",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"country": null,
"factory": null,
"documents": [],
"created": 1684423934,
"modified": 1701081968
},
{
"_id": "65647370fa05e4db991b52df",
"id": 1501,
"brand": "swear",
"shoe": "vyner",
"size": 40,
"weight": 90.0,
"weight_units": "kilograms",
"package": "envelope",
"courier": "dhl",
"shipping_details": {
"service": "standard",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"country": null,
"factory": null,
"documents": [],
"created": 1684423935,
"modified": 1701081968
},
{
"_id": "65647370fa05e4db991b52e0",
"id": 1501,
"brand": "swear",
"shoe": "vyner",
"size": 40,
"weight": 90.0,
"weight_units": "kilograms",
"package": "envelope",
"courier": "ups",
"shipping_details": {
"service": "standard",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"country": null,
"factory": null,
"documents": [],
"created": 1685357330,
"modified": 1701081968
},
{
"_id": "65647370fa05e4db991b52e1",
"id": 1501,
"brand": "swear",
"shoe": "vyner",
"size": 40,
"weight": 90.0,
"weight_units": "kilograms",
"package": "envelope",
"courier": "ups",
"shipping_details": {
"service": "standard",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"country": null,
"factory": null,
"documents": [],
"created": 1685357331,
"modified": 1701081968
},
{
"_id": "65647370fa05e4db991b52e2",
"id": 1501,
"brand": "swear",
"shoe": "vyner",
"size": 40,
"weight": 90.0,
"weight_units": "kilograms",
"package": "envelope",
"courier": "dhl",
"shipping_details": {
"service": "standard",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"country": null,
"factory": null,
"documents": [],
"created": 1685357331,
"modified": 1701081968
},
{
"_id": "65647370fa05e4db991b52e3",
"id": 1501,
"brand": "swear",
"shoe": "vyner",
"size": 40,
"weight": 90.0,
"weight_units": "kilograms",
"package": "envelope",
"courier": "ups",
"shipping_details": {
"service": "standard",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"country": null,
"factory": null,
"documents": [],
"created": 1685548604,
"modified": 1701081968
},
{
"_id": "65647370fa05e4db991b52e4",
"id": 1501,
"brand": "swear",
"shoe": "vyner",
"size": 40,
"weight": 90.0,
"weight_units": "kilograms",
"package": "envelope",
"courier": "ups",
"shipping_details": {
"service": "standard",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"country": null,
"factory": null,
"documents": [],
"created": 1685548604,
"modified": 1701081968
},
{
"_id": "65647370fa05e4db991b52e5",
"id": 1501,
"brand": "swear",
"shoe": "vyner",
"size": 40,
"weight": 90.0,
"weight_units": "kilograms",
"package": "envelope",
"courier": "dhl",
"shipping_details": {
"service": "standard",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"country": null,
"factory": null,
"documents": [],
"created": 1685548605,
"modified": 1701081968
},
{
"_id": "65647370fa05e4db991b52e6",
"id": 1501,
"brand": "swear",
"shoe": "vyner",
"size": 40,
"weight": 90.0,
"weight_units": "kilograms",
"package": "envelope",
"courier": "ups",
"shipping_details": {
"service": "standard",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"country": null,
"factory": null,
"documents": [],
"created": 1686672747,
"modified": 1701081968
},
{
"_id": "65647370fa05e4db991b52e7",
"id": 1501,
"brand": "swear",
"shoe": "vyner",
"size": 40,
"weight": 90.0,
"weight_units": "kilograms",
"package": "envelope",
"courier": "ups",
"shipping_details": {
"service": "standard",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"country": null,
"factory": null,
"documents": [],
"created": 1686672748,
"modified": 1701081968
},
{
"_id": "65647370fa05e4db991b52e8",
"id": 1501,
"brand": "swear",
"shoe": "vyner",
"size": 40,
"weight": 90.0,
"weight_units": "kilograms",
"package": "envelope",
"courier": "dhl",
"shipping_details": {
"service": "standard",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"country": null,
"factory": null,
"documents": [],
"created": 1686672749,
"modified": 1701081968
},
{
"_id": "65647370fa05e4db991b52e9",
"id": 1501,
"brand": "swear",
"shoe": "vyner",
"size": 40,
"weight": 90.0,
"weight_units": "kilograms",
"package": "envelope",
"courier": "ups",
"shipping_details": {
"service": "standard",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"country": null,
"factory": null,
"documents": [],
"created": 1686673759,
"modified": 1701081968
},
{
"_id": "65647370fa05e4db991b52ea",
"id": 1501,
"brand": "swear",
"shoe": "vyner",
"size": 40,
"weight": 90.0,
"weight_units": "kilograms",
"package": "envelope",
"courier": "ups",
"shipping_details": {
"service": "standard",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"country": null,
"factory": null,
"documents": [],
"created": 1686673759,
"modified": 1701081968
},
{
"_id": "65647370fa05e4db991b52eb",
"id": 1501,
"brand": "swear",
"shoe": "vyner",
"size": 40,
"weight": 90.0,
"weight_units": "kilograms",
"package": "envelope",
"courier": "dhl",
"shipping_details": {
"service": "standard",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"country": null,
"factory": null,
"documents": [],
"created": 1686673760,
"modified": 1701081968
},
{
"_id": "65647370fa05e4db991b52ec",
"id": 1501,
"brand": "swear",
"shoe": "vyner",
"size": 40,
"weight": 90.0,
"weight_units": "kilograms",
"package": "envelope",
"courier": "ups",
"shipping_details": {
"service": "standard",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"country": null,
"factory": null,
"documents": [],
"created": 1686675701,
"modified": 1701081968
},
{
"_id": "65647370fa05e4db991b52ed",
"id": 1501,
"brand": "swear",
"shoe": "vyner",
"size": 40,
"weight": 90.0,
"weight_units": "kilograms",
"package": "envelope",
"courier": "ups",
"shipping_details": {
"service": "standard",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"country": null,
"factory": null,
"documents": [],
"created": 1686675702,
"modified": 1701081968
},
{
"_id": "65647370fa05e4db991b52ee",
"id": 1501,
"brand": "swear",
"shoe": "vyner",
"size": 40,
"weight": 90.0,
"weight_units": "kilograms",
"package": "envelope",
"courier": "dhl",
"shipping_details": {
"service": "standard",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"country": null,
"factory": null,
"documents": [],
"created": 1686675703,
"modified": 1701081968
},
{
"_id": "65647370fa05e4db991b52ef",
"id": 1501,
"brand": "swear",
"shoe": "vyner",
"size": 40,
"weight": 90.0,
"weight_units": "kilograms",
"package": "envelope",
"courier": "ups",
"shipping_details": {
"service": "standard",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"country": null,
"factory": null,
"documents": [],
"created": 1690987733,
"modified": 1701081968
},
{
"_id": "65647370fa05e4db991b52f0",
"id": 1501,
"brand": "swear",
"shoe": "vyner",
"size": 40,
"weight": 90.0,
"weight_units": "kilograms",
"package": "envelope",
"courier": "ups",
"shipping_details": {
"service": "standard",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"country": null,
"factory": null,
"documents": [],
"created": 1690987734,
"modified": 1701081968
},
{
"_id": "65647370fa05e4db991b52f1",
"id": 1501,
"brand": "swear",
"shoe": "vyner",
"size": 40,
"weight": 90.0,
"weight_units": "kilograms",
"package": "envelope",
"courier": "dhl",
"shipping_details": {
"service": "standard",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"country": null,
"factory": null,
"documents": [],
"created": 1690987735,
"modified": 1701081968
},
{
"_id": "65647370fa05e4db991b52f2",
"id": 1501,
"brand": "swear",
"shoe": "vyner",
"size": 40,
"weight": 90.0,
"weight_units": "kilograms",
"package": "envelope",
"courier": "ups",
"shipping_details": {
"service": "standard",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"country": null,
"factory": null,
"documents": [],
"created": 1690992157,
"modified": 1701081968
},
{
"_id": "65647370fa05e4db991b52f3",
"id": 1501,
"brand": "swear",
"shoe": "vyner",
"size": 40,
"weight": 90.0,
"weight_units": "kilograms",
"package": "envelope",
"courier": "ups",
"shipping_details": {
"service": "standard",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"country": null,
"factory": null,
"documents": [],
"created": 1690992158,
"modified": 1701081968
},
{
"_id": "65647370fa05e4db991b52f4",
"id": 1501,
"brand": "swear",
"shoe": "vyner",
"size": 40,
"weight": 90.0,
"weight_units": "kilograms",
"package": "envelope",
"courier": "dhl",
"shipping_details": {
"service": "standard",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"country": null,
"factory": null,
"documents": [],
"created": 1690992159,
"modified": 1701081968
},
{
"_id": "65647371fa05e4db991b532d",
"id": 1501,
"brand": "swear",
"shoe": "vyner",
"size": 40,
"weight": 90.0,
"weight_units": "kilograms",
"package": "envelope",
"courier": "ups",
"shipping_details": {
"service": "standard",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"country": null,
"factory": null,
"documents": [],
"created": 1691049486,
"modified": 1701081969
},
{
"_id": "65647371fa05e4db991b532e",
"id": 1501,
"brand": "swear",
"shoe": "vyner",
"size": 40,
"weight": 90.0,
"weight_units": "kilograms",
"package": "envelope",
"courier": "ups",
"shipping_details": {
"service": "standard",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"country": null,
"factory": null,
"documents": [],
"created": 1691049487,
"modified": 1701081969
},
{
"_id": "65647371fa05e4db991b532f",
"id": 1501,
"brand": "swear",
"shoe": "vyner",
"size": 40,
"weight": 90.0,
"weight_units": "kilograms",
"package": "envelope",
"courier": "dhl",
"shipping_details": {
"service": "standard",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"country": null,
"factory": null,
"documents": [],
"created": 1691049488,
"modified": 1701081969
},
{
"_id": "65647371fa05e4db991b5330",
"id": 1501,
"brand": "swear",
"shoe": "vyner",
"size": 40,
"weight": 90.0,
"weight_units": "kilograms",
"package": "envelope",
"courier": "ups",
"shipping_details": {
"service": "standard",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"country": null,
"factory": null,
"documents": [],
"created": 1691051672,
"modified": 1701081969
},
{
"_id": "65647371fa05e4db991b5331",
"id": 1501,
"brand": "swear",
"shoe": "vyner",
"size": 40,
"weight": 90.0,
"weight_units": "kilograms",
"package": "envelope",
"courier": "ups",
"shipping_details": {
"service": "standard",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"country": null,
"factory": null,
"documents": [],
"created": 1691051673,
"modified": 1701081969
},
{
"_id": "65647371fa05e4db991b5332",
"id": 1501,
"brand": "swear",
"shoe": "vyner",
"size": 40,
"weight": 90.0,
"weight_units": "kilograms",
"package": "envelope",
"courier": "dhl",
"shipping_details": {
"service": "standard",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"country": null,
"factory": null,
"documents": [],
"created": 1691051674,
"modified": 1701081969
},
{
"_id": "65647371fa05e4db991b5336",
"id": 1501,
"brand": "swear",
"shoe": "vyner",
"size": 40,
"weight": 90.0,
"weight_units": "kilograms",
"package": "envelope",
"courier": "ups",
"shipping_details": {
"service": "standard",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"country": null,
"factory": null,
"documents": [],
"created": 1697207950,
"modified": 1701081969
},
{
"_id": "65647371fa05e4db991b5337",
"id": 1501,
"brand": "swear",
"shoe": "vyner",
"size": 40,
"weight": 90.0,
"weight_units": "kilograms",
"package": "envelope",
"courier": "ups",
"shipping_details": {
"service": "standard",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"country": null,
"factory": null,
"documents": [],
"created": 1697207950,
"modified": 1701081969
},
{
"_id": "65647371fa05e4db991b5338",
"id": 1501,
"brand": "swear",
"shoe": "vyner",
"size": 40,
"weight": 90.0,
"weight_units": "kilograms",
"package": "envelope",
"courier": "dhl",
"shipping_details": {
"service": "standard",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"country": null,
"factory": null,
"documents": [],
"created": 1697207951,
"modified": 1701081969
},
{
"_id": "65647371fa05e4db991b5339",
"id": 1501,
"brand": "swear",
"shoe": "vyner",
"size": 40,
"weight": 90.0,
"weight_units": "kilograms",
"package": "envelope",
"courier": "ups",
"shipping_details": {
"service": "standard",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"country": null,
"factory": null,
"documents": [],
"created": 1697208990,
"modified": 1701081969
},
{
"_id": "65647371fa05e4db991b533a",
"id": 1501,
"brand": "swear",
"shoe": "vyner",
"size": 40,
"weight": 90.0,
"weight_units": "kilograms",
"package": "envelope",
"courier": "ups",
"shipping_details": {
"service": "standard",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"country": null,
"factory": null,
"documents": [],
"created": 1697208990,
"modified": 1701081969
},
{
"_id": "65647371fa05e4db991b533b",
"id": 1501,
"brand": "swear",
"shoe": "vyner",
"size": 40,
"weight": 90.0,
"weight_units": "kilograms",
"package": "envelope",
"courier": "dhl",
"shipping_details": {
"service": "standard",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"country": null,
"factory": null,
"documents": [],
"created": 1697208991,
"modified": 1701081969
},
{
"_id": "65647371fa05e4db991b533d",
"id": 1501,
"enabled": true,
"description": "",
"created": 1698234315,
"modified": 1701081969,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": "",
"name": "",
"priority": null,
"brand": "swear",
"shoe": "vyner",
"country": "",
"size": null,
"factory": "",
"courier": "ups",
"package": "envelope",
"weight": 1.5,
"weight_units": "kilograms",
"documents": [
"invoice",
"general-certificate"
],
"shipping_details": {
"service": "express",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
}
},
{
"_id": "65647371fa05e4db991b533e",
"id": 1501,
"enabled": true,
"description": "",
"created": 1700234241,
"modified": 1701081969,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": "",
"name": "",
"priority": null,
"brand": "swear",
"shoe": "vyner",
"country": "GB",
"size": null,
"factory": "",
"courier": "ups",
"package": "envelope",
"weight": 1.0,
"weight_units": "kilograms",
"documents": [
"invoice",
"general-certificate"
],
"shipping_details": {
"service": "standard",
"parcels": 2,
"hs_code": "609.99",
"description": "leather sneakers",
"shipper": {
"eori": "GB12345",
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
}
},
{
"_id": "65942c0b940712bb25d80ec5",
"id": 1509,
"brand": "swear",
"shoe": "vyner",
"size": 40,
"weight": 90.0,
"weight_units": "kilograms",
"package": "envelope",
"courier": "ups",
"shipping_details": {
"service": "standard",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"country": null,
"factory": null,
"documents": [],
"created": 1704209419,
"modified": 1704209419
},
{
"_id": "65942c0b348eb2fe3bd80343",
"id": 1510,
"brand": "swear",
"shoe": "vyner",
"size": 40,
"weight": 90.0,
"weight_units": "kilograms",
"package": "envelope",
"courier": "ups",
"shipping_details": {
"service": "standard",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"country": null,
"factory": null,
"documents": [],
"created": 1704209419,
"modified": 1704209419
},
{
"_id": "65942c0c8d160c9411d80119",
"id": 1511,
"brand": "swear",
"shoe": "vyner",
"size": 40,
"weight": 90.0,
"weight_units": "kilograms",
"package": "envelope",
"courier": "dhl",
"shipping_details": {
"service": "standard",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"country": null,
"factory": null,
"documents": [],
"created": 1704209420,
"modified": 1704209420
},
{
"_id": "65942d8e0635f95d44d80841",
"id": 1513,
"brand": "swear",
"shoe": "vyner",
"size": 40,
"weight": 90.0,
"weight_units": "kilograms",
"package": "envelope",
"courier": "ups",
"shipping_details": {
"service": "standard",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"country": null,
"factory": null,
"documents": [],
"created": 1704209806,
"modified": 1704209806
},
{
"_id": "65942d8e0635f95d44d80843",
"id": 1514,
"brand": "swear",
"shoe": "vyner",
"size": 40,
"weight": 90.0,
"weight_units": "kilograms",
"package": "envelope",
"courier": "ups",
"shipping_details": {
"service": "standard",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"country": null,
"factory": null,
"documents": [],
"created": 1704209806,
"modified": 1704209806
},
{
"_id": "65942d8f0635f95d44d80846",
"id": 1515,
"brand": "swear",
"shoe": "vyner",
"size": 40,
"weight": 90.0,
"weight_units": "kilograms",
"package": "envelope",
"courier": "dhl",
"shipping_details": {
"service": "standard",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"country": null,
"factory": null,
"documents": [],
"created": 1704209807,
"modified": 1704209808
},
{
"_id": "659436af4e6c8bae5bd80fab",
"id": 1517,
"brand": "swear",
"shoe": "vyner",
"size": 40,
"weight": 90.0,
"weight_units": "kilograms",
"package": "envelope",
"courier": "ups",
"shipping_details": {
"service": "standard",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"country": null,
"factory": null,
"documents": [],
"created": 1704212143,
"modified": 1704212143
},
{
"_id": "659436af4e6c8bae5bd80fad",
"id": 1518,
"brand": "swear",
"shoe": "vyner",
"size": 40,
"weight": 90.0,
"weight_units": "kilograms",
"package": "envelope",
"courier": "ups",
"shipping_details": {
"service": "standard",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"country": null,
"factory": null,
"documents": [],
"created": 1704212143,
"modified": 1704212143
},
{
"_id": "659436b04e6c8bae5bd80fb0",
"id": 1519,
"brand": "swear",
"shoe": "vyner",
"size": 40,
"weight": 90.0,
"weight_units": "kilograms",
"package": "envelope",
"courier": "dhl",
"shipping_details": {
"service": "standard",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"country": null,
"factory": null,
"documents": [],
"created": 1704212144,
"modified": 1704212144
},
{
"_id": "6596e723152d4ad638aaf421",
"id": 1521,
"brand": "swear",
"shoe": "vyner",
"size": 40,
"weight": 90.0,
"weight_units": "kilograms",
"package": "envelope",
"courier": "ups",
"shipping_details": {
"service": "standard",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"country": null,
"factory": null,
"documents": [],
"created": 1704388387,
"modified": 1704388387
},
{
"_id": "6596e723152d4ad638aaf423",
"id": 1522,
"brand": "swear",
"shoe": "vyner",
"size": 40,
"weight": 90.0,
"weight_units": "kilograms",
"package": "envelope",
"courier": "ups",
"shipping_details": {
"service": "standard",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"country": null,
"factory": null,
"documents": [],
"created": 1704388387,
"modified": 1704388387
},
{
"_id": "6596e724152d4ad638aaf426",
"id": 1523,
"brand": "swear",
"shoe": "vyner",
"size": 40,
"weight": 90.0,
"weight_units": "kilograms",
"package": "envelope",
"courier": "dhl",
"shipping_details": {
"service": "standard",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"country": null,
"factory": null,
"documents": [],
"created": 1704388388,
"modified": 1704388388
},
{
"_id": "6596eb53bb11325081aafaf3",
"id": 1525,
"brand": "swear",
"shoe": "vyner",
"size": 40,
"weight": 90.0,
"weight_units": "kilograms",
"package": "envelope",
"courier": "ups",
"shipping_details": {
"service": "standard",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"country": null,
"factory": null,
"documents": [],
"created": 1704389459,
"modified": 1704389459
},
{
"_id": "6596eb54bb11325081aafaf5",
"id": 1526,
"brand": "swear",
"shoe": "vyner",
"size": 40,
"weight": 90.0,
"weight_units": "kilograms",
"package": "envelope",
"courier": "ups",
"shipping_details": {
"service": "standard",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"country": null,
"factory": null,
"documents": [],
"created": 1704389460,
"modified": 1704389460
},
{
"_id": "6596eb55bb11325081aafaf8",
"id": 1527,
"brand": "swear",
"shoe": "vyner",
"size": 40,
"weight": 90.0,
"weight_units": "kilograms",
"package": "envelope",
"courier": "dhl",
"shipping_details": {
"service": "standard",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"country": null,
"factory": null,
"documents": [],
"created": 1704389461,
"modified": 1704389461
}
]
HTTP Request
GET https://ripe-core-sbx.platforme.com/api/transport_rules
Parameters
This request receives 2 parameters: filter_operator
and filters
. If filters
is defined but not filter_operator
, its default value will be $and
.
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
filter_operator | no | text | $and |
The logic operator that unites all the options given in filters . |
filters | no | text | null |
The filters that will be applied to the transport rules query. Must have the structure <parameter>:<operator>:<value> . More than one filter can be given to the query, and their application together is based on the filter_operator given. |
Filter Operator Values
Value | Description |
---|---|
$and | The results given must comply with all the filters. |
$or | The results given must comply with at least on of the filters. |
Filters Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
brand | no | text | null |
The brand's name. |
shoe | no | text | null |
The model's name. |
priority | no | numeric | null |
The priority of the transport rule. |
name | no | text | null |
The name of the transport rule. |
country | no | text | null |
The name of the country in which this rule will be applied. |
size | no | numeric | null |
The model's native size. |
factory | no | text | null |
The name of the factory rule. |
courier | no | text | null |
The identifier of the courier that is going to be used for the transport. |
package | no | text | null |
The kind of package (size and style) to be used for the transport. |
courier | no | text | null |
TThe identifier of the courier that is going to be used for the transport. |
weight | no | numeric | null |
The weight in kilograms of the payload of the transport associated with the rule. |
weight_units | no | enum | kilograms |
The weight units associated with the weight of the transport associated with the rule. Possible values are kilograms and pounds . |
documents | no | list | null |
The sequence of document description strings for the documents that are considered required for the processing of the transport operation and the generation of the associated documents and operations. |
shipping_details | no | dictionary | null |
The details in a JSON like dictionary format that are going to be used to process the shipping this should include courier specific information and information about the shipper entity and the receiver entity. |
Create
Creates a transport rule for a specific combination of part, material and color of a model of a brand. If the user does not have permission for the given brand, an error is returned.
Example Request
curl -s -X POST \
"https://ripe-core-sbx.platforme.com/api/transport_rules" \
-H "Content-Type: application/json" \
-H "X-Secret-Key: $RIPE_KEY" \
-d '{
"brand":"swear",
"model":"vyner",
"size": 40,
"weight": 90,
"weight_units": "kilograms",
"package":"envelope",
"courier": "ups",
"shipping_details": {
"service": "standard",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
}
}'
Example Response
{
"_id": "65982632ed44d3f74baaf951",
"id": 1529,
"brand": "swear",
"shoe": "vyner",
"size": 40,
"weight": 90.0,
"weight_units": "kilograms",
"package": "envelope",
"courier": "ups",
"shipping_details": {
"service": "standard",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"country": null,
"factory": null,
"documents": [],
"created": 1704470066,
"modified": 1704470066
}
HTTP Request
POST https://ripe-core-sbx.platforme.com/api/transport_rules
POST Body
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
brand | no | text | null |
The brand's name. |
shoe | no | text | null |
The model's name. |
country | no | text | null |
The name of the country in which this rule will be applied. |
size | no | numeric | null |
The model's native size. |
factory | no | text | null |
The name of the factory rule. |
courier | no | text | null |
The identifier of the courier that is going to be used for the transport. |
package | no | text | null |
The kind of package (size and style) to be used for the transport. |
weight | no | float | null |
The weight in kilograms of the payload of the transport associated with the rule. |
weight_units | no | enum | kilograms |
The weight units associated with the weight of the transport associated with the rule. Possible values are kilograms and pounds . |
documents | no | list | null |
The sequence of document description strings for the documents that are considered required for the processing of the transport operation and the generation of the associated documents and operations. |
shipping_details | no | dictionary | null |
The details in a JSON like dictionary format that are going to be used to process the shipping this should include courier specific information and information about the shipper entity and the receiver entity. |
priority | no | numeric | null |
The priority of the transport rule. |
name | no | text | null |
The name of the transport rule. |
Show
Returns the transport with the given ID. If the user does not have permissions to access the rule's brand, returns a Not Found Exception (404) error.
Example Request
curl "https://ripe-core-sbx.platforme.com/api/transport_rules/1" \
-H "X-Secret-Key: $RIPE_KEY"
Example Response
{
"_id": "65982633152d4ad638aaf60f",
"id": 1530,
"brand": "swear",
"shoe": "vyner",
"size": 40,
"weight": 90.0,
"weight_units": "kilograms",
"package": "envelope",
"courier": "ups",
"shipping_details": {
"service": "standard",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"country": null,
"factory": null,
"documents": [],
"created": 1704470067,
"modified": 1704470067
}
HTTP Request
GET https://ripe-core-sbx.platforme.com/api/transport_rules/<int:id>
Path Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
id | yes | numeric | The rule's id. |
Update
Updates the transport with the given ID. If the user does not have permissions to update the rule's brand, returns a Not Found Exception (404) error.
Example Request
curl -s -X PUT \
"https://ripe-core-sbx.platforme.com/api/transport_rules/1" \
-H "Content-Type: application/json" \
-H "X-Secret-Key: $RIPE_KEY" \
-d '{
"courier": "dhl",
}'
Example Response
{
"_id": "65982634ed44d3f74baaf954",
"id": 1531,
"brand": "swear",
"shoe": "vyner",
"size": 40,
"weight": 90.0,
"weight_units": "kilograms",
"package": "envelope",
"courier": "dhl",
"shipping_details": {
"service": "standard",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"country": null,
"factory": null,
"documents": [],
"created": 1704470068,
"modified": 1704470068
}
HTTP Request
PUT https://ripe-core-sbx.platforme.com/api/transport_rules/<int:id>
Path Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
id | yes | numeric | The rule's id. |
POST Body
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
brand | no | text | null |
The brand's name. |
shoe | no | text | null |
The model's name. |
country | no | text | null |
The name of the country in which this rule will be applied. |
size | no | numeric | null |
The model's native size. |
factory | no | text | null |
The name of the factory rule. |
courier | no | text | null |
TThe identifier of the courier that is going to be used for the transport. |
package | no | text | null |
The kind of package (size and style) to be used for the transport. |
weight | no | float | null |
The weight in kilograms of the payload of the transport associated with the rule. |
weight_units | no | enum | kilograms |
The weight units associated with the weight of the transport associated with the rule. Possible values are kilograms and pounds . |
shipping_details | no | dictionary | null |
The details in a JSON like dictionary format that are going to be used to process the shipping this should include courier specific information and information about the shipper entity and the receiver entity. |
documents | no | list | null |
The sequence of document description strings for the documents that are considered required for the processing of the transport operation and the generation of the associated documents and operations. |
priority | no | numeric | null |
The priority of the transport rule. |
name | no | text | null |
The name of the transport rule. |
Delete
Deletes the transport with the given ID. If the user does not have permissions to access the rule's brand, returns a Not Found Exception (404) error.
Example Request
curl -s -X DELETE "https://ripe-core-sbx.platforme.com/api/transport_rules/1" \
-H "X-Secret-Key: $RIPE_KEY"
Example Response
{
"_id": "65982635996e33ea91aaf4d6",
"id": 1532,
"brand": "swear",
"size": 40,
"weight": 90.0,
"weight_units": "kilograms",
"package": "envelope",
"courier": "ups",
"shipping_details": {
"service": "standard",
"description": "sneakers",
"shipper": {
"name": "Coolstuffz Porto",
"phone": "222333444",
"address": {
"line": "Rua de Santa Catarina 4",
"city": "Porto",
"postal_code": "4000542",
"country_code": "PT"
}
}
},
"enabled": true,
"description": null,
"meta": {},
"brand_t": "swear",
"retailer_t": null,
"vendor_t": null,
"name": null,
"priority": null,
"shoe": null,
"country": null,
"factory": null,
"documents": [],
"created": 1704470069,
"modified": 1704470069
}
HTTP Request
DELETE https://ripe-core-sbx.platforme.com/api/transport_rules/<int:id>
Path Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
id | yes | numeric | The rule's id. |
Webhooks Endpoints
List
Lists all webhooks that one has subscribed to, displaying webhooks subscription data such as the url
and arguments
.
For a complete list of names for the webhooks available use this reference.
Example Request
curl "https://ripe-core-sbx.platforme.com/api/webhooks" \
-H "X-Secret-Key: $RIPE_KEY"
Example Response
[
{
"id": 101,
"event": "order.created",
"username": "docs",
"url": "https://domain.tld/path101",
"arguments": {}
},
{
"id": 102,
"event": "order.ready",
"username": "docs",
"url": "https://domain.tld/path102",
"arguments": {}
},
{
"id": 103,
"event": "order.send",
"username": "docs",
"url": "https://domain.tld/path103",
"arguments": {}
}
]
HTTP Request
GET https://ripe-core-sbx.platforme.com/api/webhooks
Header Fields
Field | Mandatory | Type | Default | Description |
---|---|---|---|---|
X-Secret-Key | yes | text | The X-Secret-Key to authenticate the request. |
Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
sid | no | text | The RIPE Session ID to authenticate the request. |
Show
Shows the subscription data of registered webhook, identified by its id
.
For a complete list of names for the webhooks available use this reference.
Example Request
curl "https://ripe-core-sbx.platforme.com/api/webhooks/101" \
-H "X-Secret-Key: $RIPE_KEY"
Example Response
{
"id": 101,
"event": "order.created",
"username": "docs",
"url": "https://domain.tld/path101",
"arguments": {}
}
HTTP Request
GET https://ripe-core-sbx.platforme.com/api/webhooks/<number>
Header Fields
Field | Mandatory | Type | Default | Description |
---|---|---|---|---|
X-Secret-Key | yes | text | The X-Secret-Key to authenticate the request. |
Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
sid | no | text | The RIPE Session ID to authenticate the request. |
Subscribe
Subscribes a webhook to an event. Every time there's a new occurrence the webhook will be triggered with the event's payload.
For a complete list of names for the webhooks available use this reference.
Example Request
curl -X POST \
"https://ripe-core-sbx.platforme.com/api/webhooks" \
-H "X-Secret-Key: $RIPE_KEY" \
-d '{
"event": "order.created",
"url": "https://domain.tld/path"
}'
Example Response
{
"event": "order.created",
"url": "https://domain.tld/path",
"id": 1,
"username": "docs",
"arguments": {}
}
HTTP Request
POST https://ripe-core-sbx.platforme.com/api/webhooks
Header Fields
Field | Mandatory | Type | Default | Description |
---|---|---|---|---|
X-Secret-Key | yes | text | The X-Secret-Key to authenticate the request. |
Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
event | yes | text | The event name. | |
url | yes | text | The webhook url. | |
arguments | no | dictionary | A pair (key, value) of arguments to the specific event. | |
sid | no | text | The RIPE Session ID to authenticate the request. |
Unsubscribe
Unsubscribes an webhook from the system.
For a complete list of names for the webhooks available use this reference.
Example Request
curl -X DELETE \
"https://ripe-core-sbx.platforme.com/api/webhooks/101" \
-H "X-Secret-Key: $RIPE_KEY"
Example Response
{
"id": 101,
"event": "order.created",
"username": "docs",
"url": "https://domain.tld/path101",
"arguments": {}
}
HTTP Request
DELETE https://ripe-core-sbx.platforme.com/api/webhooks/101
Header Fields
Field | Mandatory | Type | Default | Description |
---|---|---|---|---|
X-Secret-Key | yes | text | The X-Secret-Key to authenticate the request. |
Parameters
Parameter | Mandatory | Type | Default | Description |
---|---|---|---|---|
sid | no | text | The RIPE Session ID to authenticate the request. |
Appendix
Filters Operators
Operator | Description |
---|---|
eq / equals | Matches values that are equal to a specified value. |
ne / not_equals | Matches all values that are not equal to a specified value. |
in | Matches any of the values specified in an array. |
nin / not_in | Matches none of the values specified in an array. |
like | Selects results using a case sensitive regular expression where its values contain the value given. |
likei | Selects results using a case insensitive regular expression where its values contain the value given. |
llike | Selects results using a case sensitive regular expression where its values end with the value given. |
llikei | Selects results using a case insensitive regular expression where its values end with the value given. |
rlike | Selects results using a case sensitive regular expression where its values start with the value given. |
rlikei | Selects results using a case insensitive regular expression where its values start with the value given. |
gt / greater | Matches values that are greater than a specified value. |
gte / greater_equal | Matches values that are greater than or equal to a specified value. |
lt / lesser | Matches values that are less than a specified value. |
lte / lesser_equal | Matches values that are less than or equal to a specified value. |
null / is_null | Matches values that are null. |
not_null / is_not_null | Matches values that are not null. |
contains | Matches arrays that contain all elements specified in the filter. |
Specification (spec)
Field | Type | Description |
---|---|---|
brand | text | The brand name. |
model | text | The brand's model name. |
version | numeric | The version of the model. |
variant | text | The variant (or sub-variant) of the model. |
parts | dictionary | The customization (part, material, color). |
initials | text | The personalization initials (letters and/or symbols). |
engraving | text | The personalization properties, with the format property_name1:property_type1.property_name2:property_type2 (recommended) or property_name1.property_name2 . |
initials_extra | dictionary | An object representing personalization (initials and engraving) for each personalization group. |
description | text | The description of the specification. |
gender | text | The model's gender. |
size | numeric | The model's size. |
meta | dictionary | The metadata of the specification. |