Real Time Tracking API (2.0.0)

Real Time Tracking API - Managed by Real Time Tracking Team

Download OpenAPI description
Overview
Bettermile - Real Time Tracking Team

tracking@bettermile.com

Languages
Servers
Production Environment

https://data-solutions-v2.bettermile.com/

Parcel Monitoring Service

Operations

parcelTrackingSubscribe

Request

This endpoint allows you to subscribe to tracking updates for a specific parcel. It provides detailed information about the parcel’s status, ensuring that it can be tracked throughout its journey.

Bodyapplication/jsonrequired
parcelNumberstringrequired
tenantIdstringrequired
curl -i -X POST \
  https://data-solutions-v2.bettermile.com/sm/api/v2/parcel-tracking-subscribe \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>' \
  -H 'Content-Type: application/json' \
  -d '{
    "parcelNumber": "string",
    "tenantId": "string"
  }'

Responses

OK

Bodyapplication/json
parcelNumberstringrequired
tenantIdstringrequired
statusobject(Status)
Response
application/json
{ "parcelNumber": "string", "tenantId": "string", "status": { "position": {}, "etaTimestampMin": "2022-01-15T14:15:00Z", "etaTimestampMax": "2022-01-15T14:45:00Z", "remainingStops": 0, "type": "OUT_FOR_DELIVERY" } }