Copy the app bits for an App
POST /v2/apps/:guid/copy_bits
This endpoint will copy the package bits in the blobstore from the source app to the destination app.
It will always return a job which you can query for success or failure.
This operation will require the app to restart in order for the changes to take effect.
Request
Route
POST /v2/apps/bfead144-2dd8-4c9b-93bb-4ba418ad9bde/copy_bits
Parameters
Name |
Description |
Valid Values |
Example Values |
guid
|
The guid of the App
|
|
|
Body
Name |
Description |
Default |
Valid Values |
Example Values |
source_app_guid
|
The guid for the source app
|
|
|
|
{"source_app_guid":"f685c2f3-07e2-4919-9426-462dba171879"}
Headers
cURL
curl "https://api.[your-domain.com]/v2/apps/bfead144-2dd8-4c9b-93bb-4ba418ad9bde/copy_bits" -d '{"source_app_guid":"f685c2f3-07e2-4919-9426-462dba171879"}' -X POST \
-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTkzIiwiZW1haWwiOiJlbWFpbC02NEBzb21lZG9tYWluLmNvbSIsInNjb3BlIjpbImNsb3VkX2NvbnRyb2xsZXIuYWRtaW4iXSwiYXVkIjpbImNsb3VkX2NvbnRyb2xsZXIiXSwiZXhwIjoxNDUzODM3MjU4fQ.T6biGWUxF2pa4lCDy1vF6lKgNrHJ4efP6Em3LKp8ilQ" \
-H "Host: example.org" \
-H "Content-Type: application/x-www-form-urlencoded" \
-H "Cookie: "
Response
Status
201 Created
Body
{
"metadata": {
"guid": "e23f9757-62c6-4da6-a2b1-75bc5ea82618",
"created_at": "2016-01-19T19:40:58Z",
"url": "/v2/jobs/e23f9757-62c6-4da6-a2b1-75bc5ea82618"
},
"entity": {
"guid": "e23f9757-62c6-4da6-a2b1-75bc5ea82618",
"status": "queued"
}
}
Headers