| |||||
API Home >> Creator API >> REST API >> REST API Methods >> Copy Application - POST Method
Copy Application - REST API - POST Method
Request Parameters
The request parameters comprises of application name to be copied, the new name of the application (optional) and the zc_ownername (to copy a public application).
| Field | Description |
| applinkname | [string] - The name of the application as specified in deluge script. Refer http://creator.zoho.com/api/reference to view the list of applications created and its deluge name. |
| newappname | [string] - This field is optional. If the new name is not specified or if the new name already exists, the application will be copied as "Copy-of-<applinkname>". |
| zc_ownername | To copy a public application, the zc_ownername must be specified. |
<form method=" POST " action="http://creator.zoho.com/api/xml/copyapp/apikey= [APIKEY] &ticket= [Ticket] ">
<input type="text" name=" applinkname " value=" Name of the application to be copied ">
<input type="text" name=" newappname " value="Name to the new application ">
<input type="submit" value="Copy Application">
</form>
Note:
<input type="text" name="zc_ownername" value="Application Owner Name">
<input type="text" name=" applinkname " value=" issue-manager ">
<response>
<copy-application>
<application-name>Copy of Issue Manager</application-name>
<link-name>copy-of-issue-manager</link-name>
</copy-application>
</response>
{
"copy-application":
[
{
"link-name":"copy-of-issue-manager",
"application-name":"Copy of Issue Manager"
}
]
}