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.
Name | In | Description |
---|---|---|
Authorization | header | The Authorization header with the bearer token acquired during authentication. |
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
order_id | path | string | ![]() | The order ID. |
Request
Field | Type | Required | Description |
---|---|---|---|
name | string | ![]() | The name of the pickup delegate. |
phone_number | string | ![]() | The phone number of the pickup delegate. |
Request examples
- cURL
- Java
- Python
- Go
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"
}'
HttpResponse<String> response = Unirest.put("https://connect.instacart.com/v2/post_checkout/orders/{order_id}/pickup_delegate")
.header("Accept", "application/json")
.header("Content-Type", "application/json")
.header("Authorization", "Bearer <token>")
.body("{\n \"name\": \"string\",\n \"phone_number\": \"string\"\n}")
.asString();
import http.client
conn = http.client.HTTPSConnection("connect.instacart.com")
payload = "{\n \"name\": \"string\",\n \"phone_number\": \"string\"\n}"
headers = {
'Accept': "application/json",
'Content-Type': "application/json",
'Authorization': "Bearer <token>"
}
conn.request("PUT", "/v2/post_checkout/orders/{order_id}/pickup_delegate", 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/post_checkout/orders/{order_id}/pickup_delegate"
payload := strings.NewReader("{\n \"name\": \"string\",\n \"phone_number\": \"string\"\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
None.Response examples
200 Success
200
Pickup delegate created/updated
{
// Empty
}
4XX Errors
Error responses return either a single error or multiple errors.
HTTP Code | Cause | Error Message | Error Code | Error Meta |
---|---|---|---|---|
400 | Invalid params | "Pickup unavailable for non-pickup orders" | 4001 | Not applicable |
404 | Order not found | "Resource not found" | 4000 | Not applicable |