Skip to main content

Create or update a pickup delegate

PUT /v2/post_checkout/orders/{order_id}/pickup_delegate

Creates or updates a pickup delegate, which represents a person authorized to pick up the order on the customer's behalf.

This operation only associates the delegate with the referenced order. Also, the operation does not add the delegate to the Connect user account linked to the order.

For more information, see Pickup delegate.

NameInDescription
AuthorizationheaderThe Authorization header with the bearer token acquired during authentication.

Parameters

NameInTypeRequiredDescription
order_idpathstringRequiredThe order ID.

Request

FieldTypeRequiredDescription
namestringRequiredThe name of the pickup delegate.
phone_numberstringRequiredThe phone number of the pickup delegate.

Request examples

curl --request PUT \
--url 'https://connect.instacart.com/v2/post_checkout/orders/{order_id}/pickup_delegate' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"name": "string",
"phone_number": "string"
}'

Response

None.

Response examples

200 Success

{
// Empty
}

4XX Errors

Error responses return either a single error or multiple errors.

HTTP CodeCauseError MessageError CodeError Meta
400Invalid params"Pickup unavailable for non-pickup orders"4001Not applicable
404Order not found"Resource not found"4000Not applicable