Thì ta thấy nội dung Cách thức tạo một Document mới là:
When either the query parameter callback or jsonp is provided, the reply will be a JSONP response.
Create or update a document
PUT /v1/docs/:id
The request body must contain the document including meta data.
To update an existing document, the document must contain an _id and _rev property.
Example:
PUT http://api.jsoneditoronline.org/v1/docs/2e120f5b4d34c678833c354541a74e10
{
"_id": "2e120f5b4d34c678833c354541a74e10",
"_rev": "1-33913f3da9cd9f78d476f75b26f5db0f",
"name": "helloworld",
"data": "{\"goodbye\": \"world\"}",
"updated": "2015-03-14T11:39:47.394Z"
}
·
Meta data mà trang này đã nhắc đến ở đầu trang là: _id, _rev, name, timestamp, data.
·
Để update nội dung trang mới thì DataToSend phải chứa _id và _rev. Còn ta chỉ mới tạo một Document mới thì chưa cần 2 meta data đó nên DataToSend chỉ cần dùng 2 meta data name và data là đủ
·
URL để request đến là: http://api.jsoneditoronline.org/v1/docs/
·
Nếu request thành công thì ta sẽ có kết quả trả về có dạng sau: