Skip to content

Latest commit

 

History

History
24 lines (21 loc) · 386 Bytes

File metadata and controls

24 lines (21 loc) · 386 Bytes

Create a new genre

Description

This ticket requests the implementation of a route that allows the creation of a new genre.

Request

  • Method: POST
  • Path: /genres
  • Body
    {
      "description": "Genre Description"
    }

Response

  • Body
    {
      "id": 123,
      "description": "Genre Description"
    }
  • Status Code: 201 Created