Tags

GET tag

Return data about the specified tag.

Request

GET /tag HTTP/1.1

Response

{
  "id": 1,
  "url": "http://yourdomain.com/api/tags/1",
  "name": "foo"
}

GET tags

Return data about tags.

Request

GET /tags HTTP/1.1

Response

An array of JSON tag representations (see above).

POST tag

New tags must be created via the owner record.

DELETE tag

Delete a tag.

Request

DELETE /tags/:id HTTP/1.1

Response

HTTP/1.1 204 No Content