curl https://api.goshippo.com/parcel-templates/Fedex_Box_Small_1 \
-H "Authorization: ShippoToken <API_TOKEN>" \
-H "Content-Type: application/json"{
"carrier": "FedEx",
"distance_unit": "in",
"height": "1.5",
"is_variable_dimensions": false,
"length": "12.375",
"name": "FedEx® Small Box (S1)",
"token": "FedEx_Box_Small_1",
"width": "10.875"
}Fetches the parcel template information for a specific carrier parcel template, identified by the token.
curl https://api.goshippo.com/parcel-templates/Fedex_Box_Small_1 \
-H "Authorization: ShippoToken <API_TOKEN>" \
-H "Content-Type: application/json"{
"carrier": "FedEx",
"distance_unit": "in",
"height": "1.5",
"is_variable_dimensions": false,
"length": "12.375",
"name": "FedEx® Small Box (S1)",
"token": "FedEx_Box_Small_1",
"width": "10.875"
}API key authentication using the ShippoToken scheme. Format: Authorization: ShippoToken <API_TOKEN> Example: Authorization: ShippoToken shippo_live_abc123
Optional string used to pick a non-default API version to use. See our API version guide.
"2018-02-08"
The unique string representation of the carrier parcel template
Carrier parcel template
The name of the carrier that provides this parcel template
"FedEx"
The measure unit used for length, width and height.
cm, in, ft, m, mm, yd "in"
The height of the package, in units specified by the distance_unit attribute
"1.5"
True if the carrier parcel template allows custom dimensions, such as USPS Softpack.
false
The length of the package, in units specified by the distance_unit attribute
"12.375"
The name of the carrier parcel template
"FedEx® Small Box (S1)"
The unique string representation of the carrier parcel template
"FedEx_Box_Small_1"
The width of the package, in units specified by the distance_unit attribute
"10.875"
Was this page helpful?