Site Logo

Create Branded Tracking Page Url

This API allows you to create a tracking page for a specific shipment. A unique URL will be generated for each tracking page.

Example Request:

POST /v-beta/tracking_page/

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
POST /v-beta/tracking_page HTTP/1.1
Host: api.shipengine.com
API-Key: __YOUR_API_KEY_HERE__
Content-Type: application/json
{
"tracking_pages" :[
{
"branded_tracking_theme_guid" : "fc16e39d-9722-4514-aff5-75e1f24c5bbd",
"tracking_number" : "012345678910",
"carrier_code" : "ups",
"service_code" : "ups_ground",
"to_city_locality" :"austin",
"to_state_province" : "tx",
"to_postal_code" : "78756",
"to_country_code" : "US",
"from_city_locality" :"denver",
"from_state_province" : "CO",
"from_postal_code" : "80014",
"from_country_code" : "US"
}
]
}

Example Response:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
"tracking_pages": [
{
"carrier_code": "ups",
"tracking_number": "012345678910",
"branded_tracking_theme_guid": "fc16e39d-9722-4514-aff5-75e1f24c5bbd",
"token": "MYkORKpDv02x-LX3yv7bdQ",
"url": "http://track.shipengine.com/se/v1/MYkORKpDv02x-LX3yv7bdQ",
"service_code": "ups_ground"
}
],
"page": 0,
"pages": 0,
"total": 1
}