Update an order
PUT /v2/fulfillment/users/{user_id}/orders/{order_id}
Updates a delivery or pickup order. You can change the time slot, tip amount, instructions, user details, and items.
You cannot update an order after the order is assigned to a shopper.
Order item limitations
If your request specifies a delivery order containing items that exceed any of the following limitations, the order is not updated:
- Maximum total quantity of items
- Maximum total weight of beverage items
- Maximum quantity of large or bulky items
For more information about why a delivery order couldn't be updated, see the returned error message.
Unattended delivery and alcohol
If the original order was created with leave_unattended
set to true
and alcohol is added in the update order request, the leave_unattended
parameter is changed to false
automatically. If all alcohol is later removed, the parameter is not changed and remains false
.
Security
Name | In | Description |
---|---|---|
Authorization | header | The Authorization header with the bearer token acquired during authentication. |
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
user_id | path | string | The ID of the user. | |
order_id | path | string | The ID of the order. |
Request
Field | Type | Required | Description |
---|---|---|---|
service_option_hold_id | integer | The ID of the service option hold. | |
initial_tip_cents | integer | The pre-delivery tip amount in cents. | |
special_instructions | string | Special instructions about the order to pass on to the shopper. | |
user | OrderUser | Any additional attributes for the user, these take precedence over values set during user create. | |
items | Array(OrderItem) | The items for the order. Existing order items will be looked up by their line numbers and updated, and those that are not specified in the request will be removed. Only count, weight, special instructions and replacement items can be updated. |
OrderUser Object
Field | Type | Required | Description |
---|---|---|---|
birthday | string | The user's birthday in ISO 8601 format, this is used for alcohol eligibility validation. | |
phone_number | string | The user's phone number. | |
sms_opt_in | boolean | Indicator whether the user has opted-in to receive SMS communications. |
OrderItem Object
Field | Type | Required | Description |
---|---|---|---|
line_num | string | The item's line number in the order. | |
count | integer | The count of the item. Must be a non-negative integer. | |
weight | number | For items sold by weight, the numerical weight of the item. The API interprets this value as whatever unit of measure is defined for the item in the catalog, such as lb or kg. Must be a non-negative number. | |
special_instructions | string | Any special instructions about the item selection. | |
replacement_policy | string | One of "no_replacements", "users_choice" (default if replacement_items specified), or "shoppers_choice" (default otherwise). | |
replacement_items | Array(Replacement_items) | A list of requested replacement items if the original item could not be found. This field needs to be turned on via configuration. Contact your Instacart Connect representative. | |
item | Item | The item's code. |
Replacement_items Object
One of the following:
Field | Type | Required | Description |
---|---|---|---|
upc | string | The item's universal product code (upc). |
or
Field | Type | Required | Description |
---|---|---|---|
rrc | string | The item's retailer reference code (rrc). |
Item Object
One of the following:
Field | Type | Required | Description |
---|---|---|---|
upc | string | The item's universal product code (upc). |
or
Field | Type | Required | Description |
---|---|---|---|
rrc | string | The item's retailer reference code (rrc). |
Request examples
- cURL
- Java
- Python
- Go
curl --request PUT \
--url 'https://connect.instacart.com/v2/fulfillment/users/{user_id}/orders/{order_id}' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"service_option_hold_id": 1,
"initial_tip_cents": 1,
"special_instructions": "string",
"user": {
"birthday": "string",
"phone_number": "string",
"sms_opt_in": true
},
"items": [
{
"line_num": "string",
"count": 1,
"weight": 1,
"special_instructions": "string",
"replacement_policy": "no_replacements",
"replacement_items": [
{
"upc": "string"
}
],
"item": {
"upc": "string"
}
}
]
}'
HttpResponse<String> response = Unirest.put("https://connect.instacart.com/v2/fulfillment/users/{user_id}/orders/{order_id}")
.header("Accept", "application/json")
.header("Content-Type", "application/json")
.header("Authorization", "Bearer <token>")
.body("{\n \"service_option_hold_id\": 1,\n \"initial_tip_cents\": 1,\n \"special_instructions\": \"string\",\n \"user\": {\n \"birthday\": \"string\",\n \"phone_number\": \"string\",\n \"sms_opt_in\": true\n },\n \"items\": [\n {\n \"line_num\": \"string\",\n \"count\": 1,\n \"weight\": 1,\n \"special_instructions\": \"string\",\n \"replacement_policy\": \"no_replacements\",\n \"replacement_items\": [\n {\n \"upc\": \"string\"\n }\n ],\n \"item\": {\n \"upc\": \"string\"\n }\n }\n ]\n}")
.asString();
import http.client
conn = http.client.HTTPSConnection("connect.instacart.com")
payload = "{\n \"service_option_hold_id\": 1,\n \"initial_tip_cents\": 1,\n \"special_instructions\": \"string\",\n \"user\": {\n \"birthday\": \"string\",\n \"phone_number\": \"string\",\n \"sms_opt_in\": true\n },\n \"items\": [\n {\n \"line_num\": \"string\",\n \"count\": 1,\n \"weight\": 1,\n \"special_instructions\": \"string\",\n \"replacement_policy\": \"no_replacements\",\n \"replacement_items\": [\n {\n \"upc\": \"string\"\n }\n ],\n \"item\": {\n \"upc\": \"string\"\n }\n }\n ]\n}"
headers = {
'Accept': "application/json",
'Content-Type': "application/json",
'Authorization': "Bearer <token>"
}
conn.request("PUT", "/v2/fulfillment/users/{user_id}/orders/{order_id}", payload, headers)
res = conn.getresponse()
data = res.read()
print(data.decode("utf-8"))
package main
import (
"fmt"
"strings"
"net/http"
"io/ioutil"
)
func main() {
url := "https://connect.instacart.com/v2/fulfillment/users/{user_id}/orders/{order_id}"
payload := strings.NewReader("{\n \"service_option_hold_id\": 1,\n \"initial_tip_cents\": 1,\n \"special_instructions\": \"string\",\n \"user\": {\n \"birthday\": \"string\",\n \"phone_number\": \"string\",\n \"sms_opt_in\": true\n },\n \"items\": [\n {\n \"line_num\": \"string\",\n \"count\": 1,\n \"weight\": 1,\n \"special_instructions\": \"string\",\n \"replacement_policy\": \"no_replacements\",\n \"replacement_items\": [\n {\n \"upc\": \"string\"\n }\n ],\n \"item\": {\n \"upc\": \"string\"\n }\n }\n ]\n}")
req, _ := http.NewRequest("PUT", url, payload)
req.Header.Add("Accept", "application/json")
req.Header.Add("Content-Type", "application/json")
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := ioutil.ReadAll(res.Body)
fmt.Println(res)
fmt.Println(string(body))
}
Response
Field | Type | Required | Description |
---|---|---|---|
id | string | The ID of the order. | |
status | string | The current order status. | |
order_url | string | Link to view the order. | |
created_at | string | The time of order creation in ISO 8601 format. | |
cancellation_reason | string | The reason the order was canceled. | |
locale | string | The order's locale in POSIX format. Example: en_US. | |
is_express | boolean | Deprecated. Use `is_instacartplus` instead. Indicates whether the order received Instacart+ membership benefits. Defaults to false. | |
is_instacartplus | boolean | Indicates whether the order received Instacart+ membership benefits. Defaults to false. | |
fulfillment_details | OrderFulfillmentDetails | The order delivery details. | |
warnings | Array(Error) | Any warnings associated with this request. | |
items | Array(OrderItem) | The items in the order. |
OrderFulfillmentDetails Object
Field | Type | Required | Description |
---|---|---|---|
store_location | string | The location code of the store where the order was fulfilled. The store_location is often the same as the location_code that was used to create the order. However, orders can be fulfilled from a different store location. | |
window_starts_at | string | The start time of the delivery window in ISO 8601 format. | |
window_ends_at | string | The end time of the delivery window in ISO 8601 format. | |
delivered_at | string | The time the order was delivered in ISO 8601 format. | |
bag_count | integer | The number of bags in the order. | |
handoff_window_starts_at | string | The start time of the handoff window in ISO 8601 format. | |
handoff_window_ends_at | string | The end time of the handoff window in ISO 8601 format. |
Error Object
Field | Type | Required | Description |
---|---|---|---|
error | ErrorDetails | Information relevant to the error. | |
meta | MetaError | The error metadata. |
ErrorDetails Object
Field | Type | Required | Description |
---|---|---|---|
message | string | The error message. | |
error_code | integer | The error code. |
MetaError Object
Field | Type | Required | Description |
---|---|---|---|
items | Array(ItemInfo) | The items that triggered the error. |
ItemInfo Object
Field | Type | Required | Description |
---|---|---|---|
item_code | string | The retailer reference code (RRC) or universal product code (UPC) of an item that triggered the error. |
OrderItem Object
Field | Type | Required | Description |
---|---|---|---|
line_num | string | The item's line number in the order. | |
qty | number | The quantity of the item. | |
qty_unit | string | The quantity type, either "each" or "lb". | |
qty_fulfilled | number | The fulfilled quantity of the item. | |
qty_fulfilled_unit | string | The fulfilled quantity type, either "each" or "lb". | |
qty_requested | number | The initally requested quantity of the item. | |
qty_requested_unit | string | The initally requested quantity type, either "each" or "lb". | |
replaced | boolean | Indicates whether the item was replaced. | |
scan_code | string | The scan code of the item. | |
replacement_policy | string | The replacement policy for the item. | |
shopper_provided_item_name | string | The item name provided by shoppers for items that they added. | |
shopper_provided_item_price | Money | The item price provided by shoppers for items that they added. | |
item | Item | The item's codes. |
Money Object
Field | Type | Required | Description |
---|---|---|---|
amount | number | The amount of a specified currency. | |
currency | string | The currency type in ISO 4217 format. For example: USD. |
Item Object
Field | Type | Required | Description |
---|---|---|---|
upc | string | The item's universal product code (UPC). | |
rrc | string | The item's retailer reference code (RRC). | |
requested_upc | string | The requested item's universal product code (UPC). | |
requested_rrc | string | The requested item's retailer reference code (RRC). | |
delivered_upc | string | The delivered item's universal product code (UPC). | |
delivered_rrc | string | The delivered item's retailer reference code (RRC). |
Response examples
200 Success
200
Order updated
{
"id": "12345676789012345678780",
"status": "created",
"order_url": "https://example.com/example-order",
"created_at": "2018-02-22T00:00:00Z",
"cancellation_reason": "shopper_driven",
"locale": "en_US",
"is_express": true,
"is_instacartplus": true,
"fulfillment_details": {
"store_location": "000-32325",
"window_starts_at": "2018-02-22T00:00:00Z",
"window_ends_at": "2018-02-22T00:30:00Z"
},
"items": [
{
"line_num": "75",
"qty": 10,
"qty_unit": "each",
"replaced": false,
"scan_code": "00070481001186",
"replacement_policy": "shoppers_choice",
"item": {
"upc": "123456789084",
"rrc": "",
"requested_upc": "123456789084",
"requested_rrc": "",
"delivered_upc": "123456789084",
"delivered_rrc": ""
}
}
]
}
4XX Errors
Error responses return either a single error or multiple errors.
HTTP Code | Cause | Error Message | Error Code | Error Meta |
---|---|---|---|---|
400 | Invalid user id | "User Not Found" | 1001 | {"key":"user_id"} |
400 | User and order without phone number | "can't be blank" | 1001 | {"key":"user.phone_number"} |
400 | Invalid replacement_policy | "is not included in the list" | 1001 | {"key":"items[0].replacement_policy"} |
400 | Invalid items | "1 item not found." | 2000 | {"items":[{"item_upc":"123456789092"}]} |
400 | Invalid order params* | "There were issues with your request" | 9999 | Not applicable |
400 | Tip over maximum | "Tip value is above maximum: $500.00." | 1001 | {"key":"initial_tip_cents"} |
400 | Fails alcohol compliance check | "Alcoholic items can not be added to this order. Please remove and retry." | 2001 | Not applicable |
400 | Order updated recently | "Order has been recently updated, please try again in a little while." | 2003 | {"wait":1200,"retry":true} |
400 | Too late to update order | "The order can no longer be updated." | 2020 | Not applicable |
400 | Too many big and bulky items | "The number of big and bulky items in your cart exceeds our maximum limit for a single delivery. Please remove 2 such items from your cart to continue." | 2023 | Not applicable |
400 | Too much beverage | "The weight of beverages in your cart exceeds our maximum limit for a single delivery. Please remove 20lb of beverages from your cart to continue." | 2026 | Not applicable |
400 | Too many items | "The number of items in your cart exceeds our maximum limit for a single delivery. Please remove 15 such items from your cart to continue." | 2024 | Not applicable |
400 | Too much weight | "The total weight of items in your cart exceeds our maximum limit for a single delivery. Please remove 20 lb from your cart to continue." | 2027 | Not applicable |
403 | Inactive user | "User Not Active" | null | Not applicable |