Updates an existing user

PUT /users/{id}

Path parameters

  • id string Required

Body

  • id string Required

    The user's unique identifier

  • name string

    The user's preferred name

  • email string

    Email address

Responses

  • Updated user

    Hide response attributes Show response attributes object
    • id string Required

      The user's unique identifier

    • name string

      The user's preferred name

    • email string

      Email address

PUT /users/{id}
curl \
 -X PUT /users/{id} \
 -H "Content-Type: application/json" \
 -d '{"id":"string","name":"string","email":"string"}'
Request example
{
  "id": "string",
  "name": "string",
  "email": "string"
}
Request examples
{
  "id": "string",
  "name": "string",
  "email": "string"
}
Response examples (200)
{
  "id": "string",
  "name": "string",
  "email": "string"
}
Response examples (200)
{
  "id": "string",
  "name": "string",
  "email": "string"
}