action shipengine_list_tags { label: "Get Tags" description: "Get a list of all tags associated with an account." provider: shipengine method: GET path: "/v1/tags" encoding: json output: { type: "object" description: "Response body from a successful GET /tags API call" properties: { tags: { type: "array" description: "The array of tags returned by the API call" items: { type: "object" } } } additionalProperties: false } }