Update User's Post Information API
이 API는 특정 사용자의 특정 포스트 정보 일부를 업데이트하는 데 사용됩니다.
PATCH /users/{id}/posts/{post_id}
Content-Type: application/json
{
"title": "Updated Post Title",
"content": "Updated post content."
}
Content-Type: application/json
{
"id": 123,
"user_id": 456,
"title": "Updated Post Title",
"content": "Updated post content.",
"created_at": "2023-06-18T12:00:00Z",
"updated_at": "2023-06-18T13:30:00Z"
}
PATCH /users/123/posts/456
Content-Type: application/json
{
"title": "Updated Post Title",
"content": "Updated post content."
}
HTTP/1.1 200 OK
Content-Type: application/json
{
"id": 123,
"user_id": 456,
"title": "Updated Post Title",
"content": "Updated post content.",
"created_at": "2023-06-18T12:00:00Z",
"updated_at": "2023-06-18T13:30:00Z"
}
이 API는 SSL/TLS를 통해 암호화된 연결을 사용합니다.
이 API는 인증이 필요하지 않습니다.
이 API는 1분당 최대 1000개의 요청을 허용합니다.
현재 버전: v1