# List all carrier parcel templates List all carrier parcel template objects. Use the following query string params to filter the results as needed. include=all (the default). Includes templates from all carriers include=user. Includes templates only from carriers which the user has added (whether or not they're currently enabled) include=enabled. includes templates only for carriers which the user has added and enabled carrier=token. filter by specific carrier, e.g. fedex, usps Endpoint: GET /parcel-templates Version: 2018-02-08 Security: APIKeyHeader ## Query parameters: - `include` (string) filter by user or enabled Enum: "all", "user", "enabled" - `carrier` (string) filter by specific carrier Example: "fedex" ## Header parameters: - `SHIPPO-API-VERSION` (string) Optional string used to pick a non-default API version to use. See our API version guide. Example: "2018-02-08" ## Response 200 fields (application/json): - `results` (array) - `results.carrier` (string) The name of the carrier that provides this parcel template Example: "FedEx" - `results.distance_unit` (string) The measure unit used for length, width and height. Enum: "cm", "in", "ft", "m", "mm", "yd" - `results.height` (string) The height of the package, in units specified by the distance_unit attribute Example: "1.5" - `results.is_variable_dimensions` (boolean) True if the carrier parcel template allows custom dimensions, such as USPS Softpack. - `results.length` (string) The length of the package, in units specified by the distance_unit attribute Example: "12.375" - `results.name` (string) The name of the carrier parcel template Example: "FedEx® Small Box (S1)" - `results.token` (string) The unique string representation of the carrier parcel template Example: "FedEx_Box_Small_1" - `results.width` (string) The width of the package, in units specified by the distance_unit attribute Example: "10.875"