Skip to content

Latest commit

 

History

History
53 lines (38 loc) · 1.11 KB

categories.rst

File metadata and controls

53 lines (38 loc) · 1.11 KB

Categories

Retrieve a list of available categories.

Example request

shell

curl -i http://example.com/api/v1/categories -H 'If-None-Match: be534a1d37be8db1c3c57177e1305f6c'

Example response

http

HTTP/1.1 200 OK Date: Tue, 28 Aug 2018 09:35:27 GMT Server: WSGIServer/0.2 CPython/3.7.0 Content-Type: application/json Last-Modified: Sun, 26 Aug 2018 16:40:11 GMT ETag: "fe35ca7670b351b38c1c1d5e4b1e773d" X-Frame-Options: SAMEORIGIN Content-Length: 79

[
{

"id": "drama", "name": "Drama", "description": "Drama"

}

]

Response body

The response body is an array of JSON objects. Each object contains the following:

  • id (string) - The ID of the category.
  • name (string) - The name of the category.
  • description (string) - The description of the category.