PUT /api/users/update
application/json
PUT
/api/users/update
cURL (application/json)
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
}
Request examples
{
"firstName": "string",
"lastName": "string",
"city": "string",
"street": "string",
"year": 42,
"month": 42,
"day": 42
}
Request examples
{
"firstName": "string",
"lastName": "string",
"city": "string",
"street": "string",
"year": 42,
"month": 42,
"day": 42
}