Skip to main content
cURL
curl --request POST \
  --url https://api.example.com/speakers/update \
  --header 'Content-Type: application/json' \
  --data '
{
  "id": 123,
  "name": "<string>"
}
'
{
  "id": 123,
  "name": "<string>"
}

Body

application/json
id
integer
required
name
string
required

Response

200 - application/json
id
integer
required
name
string | null
required