PUT /carrier-pickups/{id}.json
Path parameters
-
Numeric ID of the instance
Minimum value is
1
.
Body Required
-
Carrier
-
createdAt string(date-time)
Created at
-
Dropship provider
-
externalId string | null
External
-
fromAddressLineOne string | null
From address line one
-
fromAddressLineTwo string | null
From address line two
-
fromCity string | null
From city
-
fromCountry string | null
From country
-
fromEmail string | null
From email
-
fromName string | null
From name
-
fromPhone string | null
From phone
-
fromState string | null
From state
-
fromZip string | null
From zip
-
id integer(int32)
Id
-
Pickup at
-
Source
-
Status
-
toCountry string | null
To country
-
updatedAt string(date-time)
Updated at
PUT /carrier-pickups/{id}.json
curl \
-X PUT http://api.example.com/v1/carrier-pickups/{id}.json \
-H "Authorization: Bearer $ACCESS_TOKEN" \
-H "Content-Type: application/json" \
-d '{"carrier":"string","createdAt":"2024-05-04T09:42:00+00:00","dropshipProviderId":42,"externalId":"string","fromAddressLineOne":"string","fromAddressLineTwo":"string","fromCity":"string","fromCountry":"string","fromEmail":"string","fromName":"string","fromPhone":"string","fromState":"string","fromZip":"string","id":42,"payload":{},"pickupAt":"2024-05-04T09:42:00+00:00","response":{},"source":"string","status":"string","toCountry":"string","updatedAt":"2024-05-04T09:42:00+00:00"}'
Request example
{
"carrier": "string",
"createdAt": "2024-05-04T09:42:00+00:00",
"dropshipProviderId": 42,
"externalId": "string",
"fromAddressLineOne": "string",
"fromAddressLineTwo": "string",
"fromCity": "string",
"fromCountry": "string",
"fromEmail": "string",
"fromName": "string",
"fromPhone": "string",
"fromState": "string",
"fromZip": "string",
"id": 42,
"payload": {},
"pickupAt": "2024-05-04T09:42:00+00:00",
"response": {},
"source": "string",
"status": "string",
"toCountry": "string",
"updatedAt": "2024-05-04T09:42:00+00:00"
}