Update shippings by supplier
PATCH/api/checkout/:id/shipping
Update shippings by supplier.
Request
Path Parameters
id stringrequired
The ID of the Cart
- application/json
Body
array
required
Array [
]
supplier_id integer
The ID of the supplier
shipping_id string
The ID of the shipping option
Responses
- 200
Successful initialization of payment
- application/json
- Schema
- Example (from schema)
- Example
Schema
any
{
"cart_id": "3fad8ca8-930c-4926-9325-08bb2115bab7",
"customer_session_id": "232933",
"shippingCountry": "NO",
"line_items": [
{
"id": "7bd43bbb-f7c3-4037-9288-6b3be8d9f290",
"supplier": "Supplier name",
"product_available_shippings": [
{
"id": "58a83a33-7783-449f-8b7a-d3d615a01fb0",
"name": "shipping norge",
"description": "shipping norge",
"countryCode": "NO",
"price": {
"amount": 10,
"currencyCode": "NOK"
}
}
],
"product_id": 1230279,
"product_title": "My product",
"product_image": [
{
"id": 577259,
"url": "https://container.reachu.io/my-image.png",
"width": 5472,
"height": 3648
}
],
"variant_id": null,
"variant_title": null,
"variant": [],
"quantity": 1,
"shipping": {
"id": "58a83a33-7783-449f-8b7a-d3d615a01fb0",
"name": "shipping norge",
"description": "shipping norge",
"price": {
"amount": 10,
"currencyCode": "NOK"
}
},
"price": {
"amount": 10,
"tax": 25,
"currencyCode": "NOK",
"discount": 0,
"compareAt": 0
}
}
],
"total_amount": 10,
"currency": "NOK",
"available_shipping_countries": [
"NO"
]
}
{
"cart_id": "3fad8ca8-930c-4926-9325-08bb2115bab7",
"customer_session_id": "232933",
"shippingCountry": "NO",
"line_items": [
{
"id": "7bd43bbb-f7c3-4037-9288-6b3be8d9f290",
"supplier": "Supplier name",
"product_available_shippings": [
{
"id": "58a83a33-7783-449f-8b7a-d3d615a01fb0",
"name": "shipping norge",
"description": "shipping norge",
"countryCode": "NO",
"price": {
"amount": 10,
"currencyCode": "NOK"
}
}
],
"product_id": 1230279,
"product_title": "My product",
"product_image": [
{
"id": 577259,
"url": "https://container.reachu.io/my-image.png",
"width": 5472,
"height": 3648
}
],
"variant_id": null,
"variant_title": null,
"variant": [],
"quantity": 1,
"shipping": {
"id": "58a83a33-7783-449f-8b7a-d3d615a01fb0",
"name": "shipping norge",
"description": "shipping norge",
"price": {
"amount": 10,
"currencyCode": "NOK"
}
},
"price": {
"amount": 10,
"tax": 25,
"currencyCode": "NOK",
"discount": 0,
"compareAt": 0
}
}
],
"total_amount": 10,
"currency": "NOK",
"available_shipping_countries": [
"NO"
]
}
Loading...