Skip to main content
PUT
/
genres
/
update
/
{genreId}
update
curl --request PUT \
  --url http://localhost:8000/v1/genres/update/{genreId} \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "SciFi"
}
'
This response has no body data.

Path Parameters

genreId
string
required
Example:

"670bedd7886075d8ddc7468d"

Body

application/json
name
string
Example:

"SciFi"

Response

205 - undefined