Skip to content

Latest commit

 

History

History
29 lines (26 loc) · 453 Bytes

File metadata and controls

29 lines (26 loc) · 453 Bytes

Create a new song

Description

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

Request

  • Method: POST
  • Path: /songs
  • Body
    {
      "title": "My Song",
      "artist_id": 123,
      "album": "My Album",
      "length": 180
    }

Response

  • Body
    {
      "id": 456,
      "title": "My Song",
      "artist_id": 123,
      "album": "My Album",
      "length": 180
    }