Skip to main content

Edit order

PUT /orders/:orderId HTTP/1.1
Accept: application/vnd.aplazame.v1+json
Authorization: Bearer api_private_key
Host: api.aplazame.com
Content-Type: application/json
{
"order": {
"shipping": {
"first_name": "Django",
"last_name": "Reinhard",
"phone": "616123456",
"alt_phone": "+34917909930",
"street": "Plaza del Angel nº10",
"address_addition": "Cerca de la plaza Santa Ana",
"city": "Madrid",
"state": "Madrid",
"country": "ES",
"postcode": "28012",
"price": 500,
"tax_rate": 2100,
"name": "Planet Express",
"discount": 100
},
"articles": [
{
"id": "59825349042875546873",
"name": "N°5 eau premiere spray",
"description": "A decidedly lighter, fresher...",
"url": "http://www.chanel.com/fragrance-beauty/Fragrance-N05-88145/sku/138083",
"image_url": "http://www.chanel.com/fragrance-beauty/Fragrance-N05-88145/sku/138083/product_01.jpg",
"quantity": 1,
"price": 29000,
"tax_rate": 2100
}
],
"discount": 300,
"currency": "EUR",
"total_amount": 31080
}
}
ParameterTypeRequiredDescription
:orderIdstringOrder ID.
orderobjectOrder to update.

Response

HTTP/1.1 204 No Content
X-Aplazame-Media-Type: aplazame.v1

Partial edit

PATCH /orders/:orderId HTTP/1.1
Accept: application/vnd.aplazame.v1+json
Authorization: Bearer api_private_key
Host: api.aplazame.com
Content-Type: application/json
{
"order": {
"articles": [
{
"id": "59825349042875546873",
"name": "N°5 eau premiere spray",
"description": "A decidedly lighter, fresher...",
"url": "http://www.chanel.com/fragrance-beauty/Fragrance-N05-88145/sku/138083",
"image_url": "http://www.chanel.com/fragrance-beauty/Fragrance-N05-88145/sku/138083/product_01.jpg",
"quantity": 1,
"price": 29000,
"tax_rate": 2100
}
],
"discount": 300
}
}

ParameterTypeRequiredDescription
:orderIdstringOrder ID.
orderobjectOrder to update.

Response

HTTP/1.1 204 No Content
X-Aplazame-Media-Type: aplazame.v1