Path parameters

  • userId string Required
application/json

Body Required

  • id string

    The user ID.

  • name string Required

    The user's name.

  • email string Required

    The user's email address.

Responses

  • 200

    User updated

PUT /users/{userId}
curl \
 -X PUT http://localhost:5000/users/{userId} \
 -H "Content-Type: application/json" \
 -d '{"id":"string","name":"string","email":"string"}'
Request example
{
  "id": "string",
  "name": "string",
  "email": "string"
}