| |||||
API Home >> Writer >> API Reference >> POST Method APIs
To create a new document in your Zoho Writer account.
| Field | Description |
| Document Name | New document name to be created. |
| content | Specify the content of the document. |
<form method="POST" action="http://export.writer.zoho.com/api/private/xml/newDocument/[DocName]?apikey=[APIKEY]&ticket=[Ticket]">
<input type="hidden" name="content" value="[Specify Doc content here]">
<input type="submit" value="CreateNewDoc" class="divbutton" name="submit">
</form>
| Field | Description |
| documentId | Unique ID associated with the newly created document. |
| documentName | Name of the created document. |
<?xml version="1.0" encoding="UTF-8" ?>
<response uri="/api/private/xml/newDocument/CreateNew">
<result>
<documentId>8892000000068007</documentId>
<documentName>CreateNew</documentName>
</result>
</response>
{
"response":
{
"uri": "/api/private/json/newDocument/CreateNew",
"result":
{
"documentId":"8892000000068007",
"documentName":"CreateNew"
}
}
}