Update User API
이 API는 특정 사용자의 정보를 업데이트하는 데 사용됩니다.
PUT /users/{id}
Content-Type: application/json
Authorization: Bearer {access_token}
{
"name": "Updated Name",
"email": "updatedemail@example.com"
}
Content-Type: application/json
{
"id": 123,
"name": "Updated Name",
"email": "updatedemail@example.com"
}
PUT /users/123
Content-Type: application/json
Authorization: Bearer {access_token}
{
"name": "Updated Name",
"email": "updatedemail@example.com"
}
HTTP/1.1 200 OK
Content-Type: application/json
{
"id": 123,
"name": "Updated Name",
"email": "updatedemail@example.com"
}
이 API는 SSL/TLS를 통해 암호화된 연결을 사용합니다.
이 API는 인증이 필요합니다. 액세스 토큰을 요청 헤더의 Authorization 필드에 Bearer 스키마와 함께 제공해야 합니다.
이 API는 1분당 최대 1000개의 요청을 허용합니다.
현재 버전: v1