GET
/v1/checkouts/{id}/trackingGet tracking information for a checkout
Get tracking information for a checkout, including current status and event history. If configured, fetches live status from the carrier API.
Parameters
Request parameters for this endpoint
| Name | Location | Type | Required | Description |
|---|---|---|---|---|
| id | path | string | Required | Checkout public ID |
Response Data
Fields returned in the response
Always Present
| Name | Type | Description |
|---|---|---|
events | List of tracking events |
Optional
| Name | Type | Description |
|---|---|---|
carrier | - | |
currentLocation | - | |
deliveredAt | string | When the package was delivered |
estimatedDelivery | string | Estimated delivery date |
shippedAt | string | When the package was shipped |
signedBy | string | Who signed for the package |
status | - | |
statusDescription | string | Human-readable status description |
trackingNumber | string | Tracking number |
GET
/v1/checkouts/{id}/trackingRequest
curl https://api.thesweetspot.com/v1/checkouts/id_123/tracking \
-H "Content-Type: application/json"Response
{
"carrier": null,
"currentLocation": null,
"deliveredAt": null,
"estimatedDelivery": null,
"events": [
{
"description": null,
"status": null,
"timestamp": null
}
],
"shippedAt": null,
"signedBy": null,
"status": null,
"statusDescription": null,
"trackingNumber": null
}