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-62"}},"relationships":{"space":{"guid":"bf21673b-27fd-430d-bf36-12cec3099b14"}}}
Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTciLCJlbWFpbCI6ImVtYWlsLTZAc29tZWRvbWFpbi5jb20iLCJzY29wZSI6WyJjbG91ZF9jb250cm9sbGVyLnJlYWQiLCJjbG91ZF9jb250cm9sbGVyLndyaXRlIl0sImF1ZCI6WyJjbG91ZF9jb250cm9sbGVyIl0sImV4cCI6MTQ1NjQ1MjIyMH0.HP1B_t37zPS7tO0iWfD4xrJXguG-Ksyq4EWyqmBPKqw 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-62"}},"relationships":{"space":{"guid":"bf21673b-27fd-430d-bf36-12cec3099b14"}}}' -X POST \ -H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTciLCJlbWFpbCI6ImVtYWlsLTZAc29tZWRvbWFpbi5jb20iLCJzY29wZSI6WyJjbG91ZF9jb250cm9sbGVyLnJlYWQiLCJjbG91ZF9jb250cm9sbGVyLndyaXRlIl0sImF1ZCI6WyJjbG91ZF9jb250cm9sbGVyIl0sImV4cCI6MTQ1NjQ1MjIyMH0.HP1B_t37zPS7tO0iWfD4xrJXguG-Ksyq4EWyqmBPKqw" \ -H "Content-Type: application/json" \ -H "Host: example.org" \ -H "Cookie: "
201 Created
{ "guid": "407e8a00-4c43-4615-a172-11324d0638cd", "name": "my_app", "desired_state": "STOPPED", "total_desired_instances": 0, "created_at": "2016-02-19T02:03:40Z", "updated_at": null, "lifecycle": { "type": "buildpack", "data": { "buildpack": "name-62", "stack": "default-stack-name" } }, "environment_variables": { "open": "source" }, "links": { "self": { "href": "/v3/apps/407e8a00-4c43-4615-a172-11324d0638cd" }, "space": { "href": "/v2/spaces/bf21673b-27fd-430d-bf36-12cec3099b14" }, "processes": { "href": "/v3/apps/407e8a00-4c43-4615-a172-11324d0638cd/processes" }, "route_mappings": { "href": "/v3/apps/407e8a00-4c43-4615-a172-11324d0638cd/route_mappings" }, "packages": { "href": "/v3/apps/407e8a00-4c43-4615-a172-11324d0638cd/packages" }, "droplets": { "href": "/v3/apps/407e8a00-4c43-4615-a172-11324d0638cd/droplets" }, "tasks": { "href": "/v3/apps/407e8a00-4c43-4615-a172-11324d0638cd/tasks" }, "start": { "href": "/v3/apps/407e8a00-4c43-4615-a172-11324d0638cd/start", "method": "PUT" }, "stop": { "href": "/v3/apps/407e8a00-4c43-4615-a172-11324d0638cd/stop", "method": "PUT" }, "assign_current_droplet": { "href": "/v3/apps/407e8a00-4c43-4615-a172-11324d0638cd/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.029378 Content-Length: 1422