Update a user

PUT /users/{id}
application/json

Body Required

Responses

  • 200 application/json

    User updated successfully

PUT /users/{id}
curl \
 -X PUT localhost:8080/users/{id} \
 -H "Content-Type: application/json" \
 -d '{"full_name":"string","email":"string","age":"string","gender":"male","phone_number":"string","profile_image_url":"string","type":"string","status":"string","submissions":["string"]}'
Request example
{
  "full_name": "string",
  "email": "string",
  "age": "string",
  "gender": "male",
  "phone_number": "string",
  "profile_image_url": "string",
  "type": "string",
  "status": "string",
  "submissions": [
    "string"
  ]
}
Request examples
{
  "full_name": "string",
  "email": "string",
  "age": "string",
  "gender": "male",
  "phone_number": "string",
  "profile_image_url": "string",
  "type": "string",
  "status": "string",
  "submissions": [
    "string"
  ]
}