Home
Version 3
Apps API

Apps API

Creating an App

POST /v2/apps/

Request

Route

POST /v2/apps

Body

Name Description Default Valid Values Example Values
name The name of the app.
  • my_super_app
memory The amount of memory each instance should have. In megabytes.
  • 1024
  • 512
instances The number of instances of the app to run. To ensure optimal availability, ensure there are at least 2 instances.
  • 2
  • 6
  • 10
disk_quota The maximum amount of disk available to an instance of an app. In megabytes.
  • 1204
  • 2048
space_guid The guid of the associated space.
  • guid-d21809ea-23f7-45b0-b366-d058436de7a1
stack_guid The guid of the associated stack. Uses the default system stack.
state The current desired state of the app. One of STOPPED or STARTED. STOPPED
  • STOPPED
  • STARTED
detected_start_command The command detected by the buildpack during staging.
command The command to start an app after it is staged, maximum length: 4096 (e.g. 'rails s -p $PORT' or 'java com.org.Server $PORT').
buildpack Buildpack to build the app. 3 options: a) Blank means autodetection; b) A Git Url pointing to a buildpack; c) Name of an installed buildpack.
  • https://github.com/virtualstaticvoid/heroku-buildpack-r.git
  • an_example_installed_buildpack
health_check_type Type of health check to perform. port
  • port
  • none
health_check_timeout Timeout for health checking of an staged app when starting up
diego Use diego to stage and to run when available false
  • true
  • false
docker_image Name of the Docker image containing the app
  • cloudfoundry/helloworld
  • registry.example.com:5000/user/repository/tag
environment_json Key/value pairs of all the environment variables to run in your app. Does not include any system or service variables.
production Deprecated. true
  • true
  • false
console Open the console port for the app (at $CONSOLE_PORT). false
  • true
  • false
debug Open the debug port for the app (at $DEBUG_PORT). false
  • true
  • false
name The name of the app.
  • my_super_app
memory The amount of memory each instance should have. In megabytes.
  • 1024
  • 512
instances The number of instances of the app to run. To ensure optimal availability, ensure there are at least 2 instances.
  • 2
  • 6
  • 10
disk_quota The maximum amount of disk available to an instance of an app. In megabytes.
  • 1204
  • 2048
space_guid The guid of the associated space.
  • guid-cf5204b8-fad9-40e7-88e0-46e46f83ad5b
stack_guid The guid of the associated stack. Uses the default system stack.
state The current desired state of the app. One of STOPPED or STARTED. STOPPED
  • STOPPED
  • STARTED
detected_start_command The command detected by the buildpack during staging.
command The command to start an app after it is staged, maximum length: 4096 (e.g. 'rails s -p $PORT' or 'java com.org.Server $PORT').
buildpack Buildpack to build the app. 3 options: a) Blank means autodetection; b) A Git Url pointing to a buildpack; c) Name of an installed buildpack.
  • https://github.com/virtualstaticvoid/heroku-buildpack-r.git
  • an_example_installed_buildpack
health_check_type Type of health check to perform. port
  • port
  • none
health_check_timeout Timeout for health checking of an staged app when starting up
diego Use diego to stage and to run when available false
  • true
  • false
docker_image Name of the Docker image containing the app
  • cloudfoundry/helloworld
  • registry.example.com:5000/user/repository/tag
environment_json Key/value pairs of all the environment variables to run in your app. Does not include any system or service variables.
production Deprecated. true
  • true
  • false
console Open the console port for the app (at $CONSOLE_PORT). false
  • true
  • false
debug Open the debug port for the app (at $DEBUG_PORT). false
  • true
  • false
{
  "name": "my_super_app",
  "space_guid": "5ad8a5da-fd0e-4b7a-bda3-57435dbc085a"
}

Headers

Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTI0OCIsImVtYWlsIjoiZW1haWwtMTgwQHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0Mjc0ODA4NTh9.47BQ7q2rNO5RfuJwGG594EQcVVHHfTlKDedXlwBEOeI
Host: example.org
Content-Type: application/x-www-form-urlencoded
Cookie: 

cURL

curl "https://api.[your-domain.com]/v2/apps" -d '{
  "name": "my_super_app",
  "space_guid": "5ad8a5da-fd0e-4b7a-bda3-57435dbc085a"
}' -X POST \
	-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTI0OCIsImVtYWlsIjoiZW1haWwtMTgwQHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0Mjc0ODA4NTh9.47BQ7q2rNO5RfuJwGG594EQcVVHHfTlKDedXlwBEOeI" \
	-H "Host: example.org" \
	-H "Content-Type: application/x-www-form-urlencoded" \
	-H "Cookie: "

Response

Status

201 Created

Body

{
  "metadata": {
    "guid": "050e1c35-40fc-4c3e-8bef-740138790e40",
    "url": "/v2/apps/050e1c35-40fc-4c3e-8bef-740138790e40",
    "created_at": "2015-03-20T18:27:38Z",
    "updated_at": null
  },
  "entity": {
    "name": "my_super_app",
    "production": false,
    "space_guid": "5ad8a5da-fd0e-4b7a-bda3-57435dbc085a",
    "stack_guid": "7ccf9a8c-6202-45e5-bf7e-bd395693d40a",
    "buildpack": null,
    "detected_buildpack": null,
    "environment_json": {

    },
    "memory": 1024,
    "instances": 1,
    "disk_quota": 1024,
    "state": "STOPPED",
    "version": "a55260f2-cdab-40de-89ac-b52c3c3e8a83",
    "command": null,
    "console": false,
    "debug": null,
    "staging_task_id": null,
    "package_state": "PENDING",
    "health_check_type": "port",
    "health_check_timeout": null,
    "staging_failed_reason": null,
    "diego": false,
    "docker_image": null,
    "package_updated_at": null,
    "detected_start_command": "",
    "space_url": "/v2/spaces/5ad8a5da-fd0e-4b7a-bda3-57435dbc085a",
    "stack_url": "/v2/stacks/7ccf9a8c-6202-45e5-bf7e-bd395693d40a",
    "events_url": "/v2/apps/050e1c35-40fc-4c3e-8bef-740138790e40/events",
    "service_bindings_url": "/v2/apps/050e1c35-40fc-4c3e-8bef-740138790e40/service_bindings",
    "routes_url": "/v2/apps/050e1c35-40fc-4c3e-8bef-740138790e40/routes"
  }
}

Headers

Content-Type: application/json;charset=utf-8
Location: /v2/apps/050e1c35-40fc-4c3e-8bef-740138790e40
X-VCAP-Request-ID: f9487084-d6fb-4d1d-a31d-a2c3f4cc1303
Content-Length: 1334
X-Content-Type-Options: nosniff

Audit Records Created By The Request

Audit Record: audit.app.create

Attribute Name Value
id 161
guid 44982de3-a35b-425e-9079-342a5d15ddeb
created_at 2015-03-20 18:27:38 UTC
updated_at
timestamp 2015-03-20 18:27:38 UTC
type audit.app.create
actor uaa-id-248
actor_type user
actee 050e1c35-40fc-4c3e-8bef-740138790e40
actee_type app
metadata
{
  "request": {
    "name": "my_super_app",
    "space_guid": "5ad8a5da-fd0e-4b7a-bda3-57435dbc085a",
    "console": false,
    "environment_json": "PRIVATE DATA HIDDEN",
    "health_check_type": "port",
    "instances": 1,
    "production": false,
    "state": "STOPPED"
  }
}
space_id 206
organization_guid fc584909-60b5-4fce-befb-d34f57c09ce5
space_guid 5ad8a5da-fd0e-4b7a-bda3-57435dbc085a
actor_name email-180@somedomain.com
actee_name my_super_app