PUT /api/users/update

PUT /api/users/update

Body

  • firstName string | null
  • lastName string | null
  • city string | null
  • street string | null
  • year integer(int32)
  • month integer(int32)
  • day integer(int32)
  • Additional properties are NOT allowed

Responses

  • 200

    Success

curl \
 --request PUT 'http://api.example.com/api/users/update' \
 --header "Content-Type: application/json" \
 --data '{"firstName":"string","lastName":"string","city":"string","street":"string","year":42,"month":42,"day":42}'
curl \
 --request PUT 'http://api.example.com/api/users/update' \
 --header "Content-Type: text/json"
curl \
 --request PUT 'http://api.example.com/api/users/update' \
 --header "Content-Type: application/*+json"
Request examples
{
  "firstName": "string",
  "lastName": "string",
  "city": "string",
  "street": "string",
  "year": 42,
  "month": 42,
  "day": 42
}