GET /v2/taggings.jsonwill return taggings.
[
{
"id": 4,
"feed_id": 1,
"name": "Tech"
},
{
"id": 5,
"feed_id": 2,
"name": "News"
}
]Status Codes
200 OKwill be returned
GET /v2/taggings/4.jsonwill return the tagging with an id of4
{
"id": 4,
"feed_id": 1,
"name": "Tech"
}Status Codes
200 OKwill be returned if found403 Forbiddenwill be returned if the user does not own this tagging
POST /v2/taggings.jsonwill create a new tagging
Request
{
"feed_id": 1,
"name": "Design"
}| Parameter | Required |
|---|---|
feed_id: number |
true |
name: string |
true |
Status Codes
201 Createdwill be returned if tagging is successful, theLocationheader will have the URL to the newly created tagging302 Foundwill be returned if tagging exists, theLocationheader will have the URL to the tagging
DELETE /v2/taggings/4.json will delete the tagging with and id of 4
Status Codes
204 No Contentwill be returned if the request was successful403 Forbiddenwill be returned if the user does not own this tagging