修改文档

PUT /apiv2/posts/{id}.json
调用权限

admin

curl 示例
curl https://{subdomain}.kf5.com/apiv2/posts/{id}.json \
  -H "Content-Type: application/json" -d '{"post": {"title": "this is new title"}}' \
  -v -u {email_address}:{password} -X PUT
返回示例
Status: 200 OK{
  "post": {
      "id":   715,
      "title": "this is new title",
      ...   }}