Home
Version 3
Apps (Experimental) API

Apps (Experimental) API

Create an App

POST /v3/apps

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.

Request

Route

POST /v3/apps

Body

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-605"}},"relationships":{"space":{"guid":"79f47dbb-632e-41f3-9379-bae08e0abd70"}}}

Headers

Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTIwMyIsImVtYWlsIjoiZW1haWwtMTM5QHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5yZWFkIiwiY2xvdWRfY29udHJvbGxlci53cml0ZSJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0NTMzMTA5ODB9.suuUHy68BqNxrskkJXVdZKkjnd1JjYBac1iVfGIVpy8
Content-Type: application/json
Host: example.org
Cookie: 

cURL

curl "https://api.[your-domain.com]/v3/apps" -d '{"name":"my_app","environment_variables":{"open":"source"},"lifecycle":{"type":"buildpack","data":{"stack":null,"buildpack":"name-605"}},"relationships":{"space":{"guid":"79f47dbb-632e-41f3-9379-bae08e0abd70"}}}' -X POST \
	-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTIwMyIsImVtYWlsIjoiZW1haWwtMTM5QHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5yZWFkIiwiY2xvdWRfY29udHJvbGxlci53cml0ZSJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0NTMzMTA5ODB9.suuUHy68BqNxrskkJXVdZKkjnd1JjYBac1iVfGIVpy8" \
	-H "Content-Type: application/json" \
	-H "Host: example.org" \
	-H "Cookie: "

Response

Status

201 Created

Body

{
  "guid": "6cfc05b3-5a13-4ff9-b3c7-eddc6609b902",
  "name": "my_app",
  "desired_state": "STOPPED",
  "total_desired_instances": 0,
  "created_at": "2016-01-13T17:29:40Z",
  "updated_at": null,
  "lifecycle": {
    "type": "buildpack",
    "data": {
      "buildpack": "name-605",
      "stack": "default-stack-name"
    }
  },
  "environment_variables": {
    "open": "source"
  },
  "links": {
    "self": {
      "href": "/v3/apps/6cfc05b3-5a13-4ff9-b3c7-eddc6609b902"
    },
    "space": {
      "href": "/v2/spaces/79f47dbb-632e-41f3-9379-bae08e0abd70"
    },
    "processes": {
      "href": "/v3/apps/6cfc05b3-5a13-4ff9-b3c7-eddc6609b902/processes"
    },
    "routes": {
      "href": "/v3/apps/6cfc05b3-5a13-4ff9-b3c7-eddc6609b902/routes"
    },
    "packages": {
      "href": "/v3/apps/6cfc05b3-5a13-4ff9-b3c7-eddc6609b902/packages"
    },
    "droplets": {
      "href": "/v3/apps/6cfc05b3-5a13-4ff9-b3c7-eddc6609b902/droplets"
    },
    "start": {
      "href": "/v3/apps/6cfc05b3-5a13-4ff9-b3c7-eddc6609b902/start",
      "method": "PUT"
    },
    "stop": {
      "href": "/v3/apps/6cfc05b3-5a13-4ff9-b3c7-eddc6609b902/stop",
      "method": "PUT"
    },
    "assign_current_droplet": {
      "href": "/v3/apps/6cfc05b3-5a13-4ff9-b3c7-eddc6609b902/current_droplet",
      "method": "PUT"
    }
  }
}

Headers

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.030726
Content-Length: 1317