You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"summary": "Fetches a single tagged item for tag {tag_name} and item ID {id}",
82
+
"parameters": [
83
+
{
84
+
"paramType": "path",
85
+
"name": "id",
86
+
"type": "integer",
87
+
"description": "ID of the tagged item",
88
+
"required": true
89
+
},
90
+
{
91
+
"paramType": "path",
92
+
"name": "tag_name",
93
+
"type": "string",
94
+
"description": "Name of the tag that is was applied to the tagged item",
95
+
"required": true
96
+
},
97
+
{
98
+
"paramType": "query",
99
+
"name": "item_type",
100
+
"type": "string",
101
+
"description": "Name of the item type by which to filter the applicable tags (e.g., 'city'), so that just one tagged item is ever returned; defaults to 'inventory_item'",
102
+
"required": false
103
+
}
104
+
],
105
+
"responseMessages": [
106
+
{
107
+
"code": 304,
108
+
"message": "The content has not changed in relation to the request ETag / If-Modified-Since"
"summary": "Deletes an existing association between a tag (by name) and a tagged item",
125
+
"parameters": [
126
+
{
127
+
"paramType": "path",
128
+
"name": "id",
129
+
"type": "integer",
130
+
"description": "ID of the item that is currently tagged",
131
+
"required": true
132
+
},
133
+
{
134
+
"paramType": "path",
135
+
"name": "tag_name",
136
+
"type": "string",
137
+
"description": "name of the tag to be removed from the item",
138
+
"required": true
139
+
},
140
+
{
141
+
"paramType": "query",
142
+
"name": "item_type",
143
+
"type": "string",
144
+
"description": "Name of the item type by which to filter the applicable tags (e.g., 'city'), so that just one tagged item is ever destroyed; defaults to 'inventory_item'",
0 commit comments