copyAppFrom

POST /copyAppFrom

Copies an app from another Space to the user’s Space.

Example Request

POST /copyAppFrom 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"
}

Example Response

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

{
  "data": null,
  "message": "Successfully copied App from 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 target 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