copyApp

POST /copyApp

Copies an App from a user’s Space to another.

Example Request

POST /copyApp HTTP/1.1
Content-Type: application/json
Accept: application/json

{
  "apikey": "E14D8D73-0C78-4583-897A-EE9C1B10E10A",
  "sessionid": "48F2E9A0-ABD6-4C80-B8DA-61D0DDE4A43B",
  "appuid": "10521229-B45F-47C5-AB11-CFF4D0E52329",
  "spaceuid": "711362CC-B853-40B2-8F23-2A415B0E7669"
}

Example Response

HTTP/1.1 200 OK
Content-Type: application/json

{
  "data": null,
  "message": "Successfully copied App to target Space.",
  "success": true
}
Request JSON Object:
 
  • apikey (string) – User API key
  • sessionid (string) – User session ID
  • appuid (string) – The UID of the App from the user’s Space
  • spaceuid (string) – The UID of the target Space
Response JSON Object:
 
  • data – Response data
  • message – Response message
  • success – Returns true if copy is successful, false otherwise