Parcel Monitoring Service

The Parcel Monitoring Service provides endpoints for tracking and managing parcel delivery status.

parcelTrackingSubscribe

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.

Securityapi_key
Request
Request Body schema: application/json
parcelNumber
required
string
tenantId
required
string
Responses
200

OK

401

Unauthorized

404

Parcel not found

500

Server error

post/parcel-tracking-subscribe
Request samples
application/json
{
  • "parcelNumber": "string",
  • "tenantId": "string"
}
Response samples
application/json
{
  • "parcelNumber": "string",
  • "tenantId": "string",
  • "status": {
    }
}