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.
GET /v1/deliveries/token/:id
Property | Type | Description | Required | Constraints |
---|---|---|---|---|
id | string | Id of the task created within the system, you can also use the reference id here | NO | |
Property | Type | Description |
---|---|---|
token | string | Token that gives permission to see the tracking of the task. |
url | string | Url of the tracking task. |
recipient | Data of the recipient contact. |
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"
}
}
Last modified 1mo ago