Site Logo

List All Tags

You may want to add tags beforehand, in the event you're using our tag endpoint to manage your own tags. For example, having a user choose from a list of available tags to apply to a shipment.

Example

GET /v1/tags/

Example Request

1
2
3
GET /v1/tags HTTP/1.1
Host: api.shipengine.com
API-Key: __YOUR_API_KEY_HERE__

Example Response

1
2
3
4
5
6
7
8
9
10
{
"tags": [
{
"name": "east_warehouse"
},
{
"name": "west_warehouse"
}
]
}