Creates an app in v3 of the Cloud Controller API. Apps must have a valid space guid for creation, which is namespaced under {"relationships": {"space": "your-space-guid"} }. See the example below for more information.
POST /v3/apps
Name | Description | Default | Valid Values | Example Values |
---|---|---|---|---|
name | Name of the App |
|
|
|
relationships[space][guid] | Guid for a particular space |
|
|
|
environment_variables | Environment variables to be used for the App when running |
|
|
|
lifecycle | Lifecycle to be used when creating the app. Note: If no lifecycle is provided, lifecycle type defaults to buildpack. Data is a required field in lifecycle |
|
|
{"name":"my_app","environment_variables":{"open":"source"},"lifecycle":{"type":"buildpack","data":{"stack":null,"buildpack":"name-560"}},"relationships":{"space":{"guid":"d4746433-f88d-45dc-84c6-943f8c4a000e"}}}
Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTE3MiIsImVtYWlsIjoiZW1haWwtMTEwQHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5yZWFkIiwiY2xvdWRfY29udHJvbGxlci53cml0ZSJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0NTE0MTM2ODR9.90genjrYmAVbdKNy6YhN0BzJfnBGYUWxG7Q7tTuUJrE Content-Type: application/json Host: example.org Cookie:
curl "https://api.[your-domain.com]/v3/apps" -d '{"name":"my_app","environment_variables":{"open":"source"},"lifecycle":{"type":"buildpack","data":{"stack":null,"buildpack":"name-560"}},"relationships":{"space":{"guid":"d4746433-f88d-45dc-84c6-943f8c4a000e"}}}' -X POST \ -H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTE3MiIsImVtYWlsIjoiZW1haWwtMTEwQHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5yZWFkIiwiY2xvdWRfY29udHJvbGxlci53cml0ZSJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0NTE0MTM2ODR9.90genjrYmAVbdKNy6YhN0BzJfnBGYUWxG7Q7tTuUJrE" \ -H "Content-Type: application/json" \ -H "Host: example.org" \ -H "Cookie: "
201 Created
{ "guid": "6c0dfed3-9ea0-4565-8341-ba5dcec6c34b", "name": "my_app", "desired_state": "STOPPED", "total_desired_instances": 0, "created_at": "2015-12-22T18:28:04Z", "updated_at": null, "lifecycle": { "type": "buildpack", "data": { "buildpack": "name-560", "stack": "default-stack-name" } }, "environment_variables": { "open": "source" }, "links": { "self": { "href": "/v3/apps/6c0dfed3-9ea0-4565-8341-ba5dcec6c34b" }, "space": { "href": "/v2/spaces/d4746433-f88d-45dc-84c6-943f8c4a000e" }, "processes": { "href": "/v3/apps/6c0dfed3-9ea0-4565-8341-ba5dcec6c34b/processes" }, "routes": { "href": "/v3/apps/6c0dfed3-9ea0-4565-8341-ba5dcec6c34b/routes" }, "packages": { "href": "/v3/apps/6c0dfed3-9ea0-4565-8341-ba5dcec6c34b/packages" }, "droplets": { "href": "/v3/apps/6c0dfed3-9ea0-4565-8341-ba5dcec6c34b/droplets" }, "start": { "href": "/v3/apps/6c0dfed3-9ea0-4565-8341-ba5dcec6c34b/start", "method": "PUT" }, "stop": { "href": "/v3/apps/6c0dfed3-9ea0-4565-8341-ba5dcec6c34b/stop", "method": "PUT" }, "assign_current_droplet": { "href": "/v3/apps/6c0dfed3-9ea0-4565-8341-ba5dcec6c34b/current_droplet", "method": "PUT" } } }
X-Frame-Options: SAMEORIGIN X-XSS-Protection: 1; mode=block X-Content-Type-Options: nosniff Content-Type: application/json; charset=utf-8 X-Runtime: 0.024774 Content-Length: 1317