API Sample Codes
How to integrate Zoho Office with AWS - S3 to edit S3 Files?
Preview or Edit AWS S3 file in your Web Application Web applications Office files that are hosted in AWS S3 server can use Zoho Office editors to allow view or collaborative edit of those documents from your web application. Otherwise users of your ...
What are the different ways the 'Save' can be triggered in Office Integrator?
We have three different ways to perform the 'Save' and they are listed below: 1. You can trigger the 'Save' using the button present within the editor in the top right-corner. 2. If you have integrated our editor inside your application iframe, then ...
How are the input parameter values pushed back to the user after the save is performed?
Input value Output value Description context_info id Any secured information about the file can be passed in the 'context_info' parameter; whereas, we will be pushing it back to you inside the 'id' parameter. save_format format Specifies the 'format' ...
How to get the cURL or PHP cURL codes from Postman to implement them through PHP?
Once the Postman Collection setup is completed, please follow the below steps to know how to get the Curl or PHP Curl codes. 1. Select the API for which you require the code in the left corner and click on 'Code' in the right corner. 2. 'Generate ...
How do I convert a presentation from one format to another? Any sample codes?
To convert a presentation from one format (say .pptx) to another (say .ppsx, .odp, .pdf), you need to make use of Zoho Show's Conversion API. HTML Sample Code: <form method="POST" action="https://show.zoho.com/show/officeapi/v1/presentation/convert" ...
How do I preview a presentation in Zoho Show? Any sample codes?
To preview a presentation or open it in read-only mode, you need to make use of Zoho Show's Preview Presentation API. HTML Sample Code: <form method="POST" action="https://show.zoho.com/show/officeapi/v1/presentation/preview" ...
How do I edit presentation in Zoho Show? Any sample codes?
To edit an existing presentation from your web application, you need to make use of Zoho Show's Edit Presentation API. HTML Sample Code: <form method="POST" action="https://show.zoho.com/show/officeapi/v1/presentation" enctype="multipart/form-data" ...
How to setup Postman Collection to test Office Integrator API's?
To complete the Postman Collection setup in Office integrator API, you need to import the JSON files as listed below: Office Integrator API Collection JSON file Office Integrator API Environment JSON file How to import Office Integrator API ...
How do I edit documents in Zoho Writer? Any sample codes?
To edit an existing document from your web application, you need to make use of Zoho Writer's Edit Document API. HTML Sample Code: <form method="POST" action=" https://writer.zoho.com/writer/officeapi/v1/document" enctype="multipart/form-data" ...
How do I compare two documents in Zoho Writer? Any sample codes?
To compare two versions of a document, you need to make use of Zoho Writer's Comparison API. HTML Sample Code: <form method="POST" action="https://writer.zoho.com/writer/officeapi/v1/document/compare" enctype="multipart/form-data" ...
How do I convert a document from one format to another? Any sample codes?
To convert a document from one format (say .docx) to another (say .html, .pdf, etc.), you need to make use of Zoho Writer's Conversion API. HTML Sample Code: <form method="POST" action="https://writer.zoho.com/writer/officeapi/v1/document/convert" ...
How do I preview a document in Zoho Writer? Any sample codes?
To preview a document or open it in read-only mode, you need to make use of Zoho Writer's Preview Document API. HTML Sample Code: <form method="POST" action="https://writer.zoho.com/writer/officeapi/v1/document/preview" enctype="multipart/form-data" ...
How do I create a new presentation in Zoho Show? Any sample codes?
To create a new presentation, please leave the "document" or "url" parameter in the Edit API request as blank. Zoho Show will create a new presentation by default if no content is provided in the Edit request. HTML Sample Code: <form method="POST" ...
How do I create a new spreadsheet in Zoho Sheet? Any sample codes?
To create a new spreadsheet, please leave the "content" or "url" parameter in the Edit API request as blank. Zoho Sheet will create a new spreadsheet by default if no content is provided in the Edit request. HTML Sample Code: <form method="POST" ...
How do I create a new document in Zoho Writer? Any sample codes?
To create a new document from scratch, you need to make use of Zoho Writer's Create Document API. HTML Sample Code: <form method="POST" action="https://writer.zoho.com/writer/officeapi/v1/document" enctype="multipart/form-data" target="_self" ...
How do I save documents locally using "save_url" method? Any sample codes available?
A "save_url" is a publicly accessible Web hook or a Web URL to which Zoho will push the updated document content from its Office editors (Writer, Sheet, Show) to your storage server. In order to make use of "save_url" method and save document ...