Deliveries API
Search
K
Comment on page

Generate Secure Tracking Url

This endpoint lets you generate the secure tracking link with a unique token that matches the information of the recipient.
A secure tracking URL with a token is needed so recipients are the only ones able to see the link on their devices.

Endpoint

GET /v1/deliveries/token/:id

Request

Property
Type
Description
Required
Constraints
id
string
Id of the task created within the system, you can also use the reference id here
NO

Response

Property
Type
Description
token
string
Token that gives permission to see the tracking of the task.
url
string
Url of the tracking task.
recipient
Contact
Data of the recipient contact.

Example

Request
200 Success
curl --location --request GET 'https://api.shippify.co/v1/deliveries/token/t-pruaas-4973' \
--header 'Authorization: Basic XXXXXXXXXXXXXXXXXXXXXXXXXXXXX' \
--header 'Content-Type: application/json'
{
"token": "XXXXXXXXXXXXXXXX",
"url": "https://api.shippify.co/track/t-pruaas-4973?token=XXXXXXXXXXXXXXXX&ref=server",
"recipient": {
"name": "Mayger Rene Montero Saavedra",
"email": "[email protected]",
"phonenumber": "777"
}
}