Path parameters
-
id
integer(int64) Required Numeric ID of the instance
Minimum value is
1
.
Body
Required
-
actionRequired
boolean | null Action required
-
city
string | null City
-
country
string | null Country
-
createdAt
string(date-time) Created at
-
details
string | null Details
-
externalId
string | null External
-
id
integer(int32) Id
-
purchaseInvoiceId
integer(int32) | null Purchase invoice
-
state
string | null State
-
status
string | null Status
Values are
pre_transit
,transit
,delivered
,returned
,failure
, orunknown
. -
statusAt
string(date-time) Required Status at
-
subStatus
string | null Sub status
Values are
information_received
,address_issue
,contact_carrier
,delayed
,delivery_attempted
,delivery_rescheduled
,delivery_scheduled
,location_inaccessible
,notice_left
,out_for_delivery
,package_accepted
,package_arrived
,package_damaged
,package_departed
,package_forwarded
,package_held
,package_processed
,package_processing
,pickup_available
,reschedule_delivery
,delivered
,return_to_sender
,package_unclaimed
,package_undeliverable
,package_disposed
,package_lost
, orother
. -
transactionId
integer(int32) Required Transaction
-
updatedAt
string(date-time) Updated at
-
zip
string | null Zip
PUT
/tracking-events/{id}.json
curl \
--request PUT 'http://api.example.com/v1/tracking-events/{id}.json' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--data '{"actionRequired":true,"city":"string","country":"string","createdAt":"2025-05-04T09:42:00Z","details":"string","externalId":"string","id":42,"purchaseInvoiceId":42,"state":"string","status":"pre_transit","statusAt":"2025-05-04T09:42:00Z","subStatus":"information_received","transactionId":42,"updatedAt":"2025-05-04T09:42:00Z","zip":"string"}'
Request examples
{
"actionRequired": true,
"city": "string",
"country": "string",
"createdAt": "2025-05-04T09:42:00Z",
"details": "string",
"externalId": "string",
"id": 42,
"purchaseInvoiceId": 42,
"state": "string",
"status": "pre_transit",
"statusAt": "2025-05-04T09:42:00Z",
"subStatus": "information_received",
"transactionId": 42,
"updatedAt": "2025-05-04T09:42:00Z",
"zip": "string"
}