v3

latestOpenAPI 3.1.0raw.githubusercontent.com2025-07-02111260.6 KB
📦 Trackers

Bulk create trackers

This endpoint allows you to create up to 100 new Trackers in a single operation, based on the specified information. Once the Trackers are created, you will be able to receive webhook notifications and/or fetch their tracking results.

While tracker creation is idempotent, this endpoint itself is not. Any duplicate within the request or any tracker parameters matching an existing tracker will not create a duplicate Tracker. However, providing different information in any of the fields will create a new Tracker, as it will be considered as a new shipment.

The response will include a summary of:

  • The number of trackers successfully created.
  • The number of trackers ignored because they already exist.
  • The number of trackers that could not be created due to errors.

Additionally, the response will provide details about the created trackers and any errors that occurred during the tracker creation process.

post/public/v1/trackers/bulk

Request body

Response

Created

status'success' | 'partial' | 'error' required

Status of the bulk creation.

success: All trackers were created successfully or already existed. (Status code 200)

partial: Operation contains both successes and errors. (Status code 207)

error: All creations failed or error on request level. (Status codes 400, 403)