Rotate Pages from PDF
Purpose
This API allows you to rotate pages in a PDF and either download the result or store it in Zoho WorkDrive.
Quick Reference
| Property | Value |
|---|---|
| Method | POST |
| Request URL (Download) | https://{zohoapis_domain}/pdfeditor/api/v1/pdf/pages/rotate |
| Request URL (Store) | https://{zohoapis_domain}/pdfeditor/api/v1/pdf/pages/rotate/store |
Body Parameters
| Parameter | Value | Mandatory/Optional | Description |
|---|---|---|---|
| file | File or String | Mandatory | Upload the PDF file from your local drive or desktop. If the PDF is available via a publicly accessible web URL, you can provide the URL using the same parameter. |
| input_options | { "page_ranges": "[1,3-5]", "direction": "right" | "left", "degree": 90 | 180 | 270 | 360 } | Optional | Specify which pages to rotate, the rotation direction, and the rotation angle. |
| output_settings | { "name": "<document_name>" } | Mandatory for download variant | Specify output configuration for downloadable result. |
| output_settings | { "name": "<document_name>", "folder_id": "<folder_id>", "overwrite_existing_file": true | false } | Mandatory for store variant | name – Specify the name for the output PDF document. folder_id – Specify the ID of the WorkDrive folder in which to store the output file. overwrite_existing_file(optional) – Set to true to overwrite an existing file with the same name in the folder. |
input_options Parameters
| Parameter | Data Type | Possible Values | Default Value |
|---|---|---|---|
| page_ranges | String | [1-5,8,10] / [1,3-5] | all pages |
| direction | String | right, left | right |
| degree | Integer | 90, 180, 270, 360 | 90 |
output_settings (Download) Parameters
| Parameter | Data Type | Possible Values | Default Value |
|---|---|---|---|
| name | String | Name for the modified PDF document | – |
output_settings (Store) Parameters
| Parameter | Data Type | Possible Values | Default Value |
|---|---|---|---|
| name | String | Name for the modified PDF document | – |
| folder_id | String | ID of the folder in Zoho WorkDrive to store the modified PDF | – |
| overwrite_existing_file | Boolean | true, false | false |
Notes and Limits
- The maximum file size allowed for the input PDF is 50 MB. The input PDF cannot exceed 400 pages.
- If page_ranges is omitted, rotation applies to all pages.
- direction defaults to right and degree defaults to 90.
- The store variant requires a Zoho WorkDrive account.
- To use the download variant, an OAuth token should be generated with the following scopes: ZohoWriter.pdfEditor.ALL
- To use the store variant, an OAuth token should be generated with the following scopes: ZohoWriter.pdfEditor.ALL, WorkDrive.files.ALL, WorkDrive.organization.ALL
Possible Errors
Refer to the following pages for the list of possible errors for this API:
Download Variant Sample Request
Copiedcurl --location --request POST "https://www.zohoapis.com/pdfeditor/api/v1/pdf/pages/rotate" \
--header "Authorization: Zoho-oauthtoken xxx.yyy.zzz" \
--form 'file=@"/Users/username/Documents/Sample.pdf"' \
--form 'output_settings=“{\”name\”:\”ModifiedFile.pdf\"}"' \
--form 'input_options=“{\”page_ranges\”:\”1-4,8,10\",\”direction\”:\”right\",\”degree\”:\”90\"}"' Once the process begins, you will initially receive the 'status_url'. By invoking the 'status_url', you will be able to monitor the status of the scheduled job.
Store Variant Sample Request
Copiedcurl --location --request POST "https://www.zohoapis.com/pdfeditor/api/v1/pdf/pages/rotate" \
--header "Authorization: Zoho-oauthtoken xxx.yyy.zzz" \
--form 'file=@"/Users/username/Documents/Sample.pdf"' \
--form 'output_settings=“{\”name\”:\”ModifiedFile.pdf\"}"' \
--form 'input_options=“{\”page_ranges\”:\”1-4,8,10\",\”direction\”:\”right\",\”degree\”:\”90\"}"' Once the process begins, you will initially receive the 'status_url'. By invoking the 'status_url', you will be able to monitor the status of the scheduled job.
Download Variant Sample Response
Copied{
"status_check_url": "https://pdf.zoho.com/pdfeditor/api/v1/pdf/pages/rotate/job/f931a01183b33",
"status": "inprogress"
}Download Variant Success Response
Copied{
"download_url": "https://pdf.zoho.com/pdfeditor/api/v1/pdf/pages/rotate/download/f931a01183b33",
"status": "success"
}Store Variant Sample Response
Copied{
"download_url": "https://pdf.zoho.com/pdfeditor/api/v1/pdf/pages/rotate/download/f931a01183b33",
"status": "success"
}Store Variant Success Response
Copied{
"status_check_url" : "https://pdf.zoho.com/pdfeditor/api/v1/pdf/pages/rotate/job/f931a01183b33",
"document_url" : "https://workdrive.zoho.com/file/ponazfea04477109f4681a831e7177d96bc40",
"document_id" : "ponazfea04477109f4681a831e7177d96bc40",
"status" : "inprogress"
}