Create a Stack
POST /v2/stacks
Request
Route
POST /v2/stacks
Body
Name |
Description |
Default |
Valid Values |
Example Values |
name
|
The name for the stack.
|
|
|
|
description
|
The description for the stack
|
|
|
|
{"name":"example_stack","description":"Description for the example stack"}
Headers
cURL
curl "https://api.[your-domain.com]/v2/stacks" -d '{"name":"example_stack","description":"Description for the example stack"}' -X POST \
-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTciLCJlbWFpbCI6ImVtYWlsLTRAc29tZWRvbWFpbi5jb20iLCJzY29wZSI6WyJjbG91ZF9jb250cm9sbGVyLmFkbWluIl0sImF1ZCI6WyJjbG91ZF9jb250cm9sbGVyIl0sImV4cCI6MTQ2MTM3NDYyMn0.A3JVJEKJHzPT7SdZbwaTElqF6J3rx-oc-UIa1RVxpOs" \
-H "Host: example.org" \
-H "Content-Type: application/x-www-form-urlencoded" \
-H "Cookie: "
Response
Status
201 Created
Body
{
"metadata": {
"guid": "07fecd9a-ca37-4133-a9a6-f5aa54ae5cfc",
"url": "/v2/stacks/07fecd9a-ca37-4133-a9a6-f5aa54ae5cfc",
"created_at": "2016-04-16T01:23:42Z",
"updated_at": null
},
"entity": {
"name": "example_stack",
"description": "Description for the example stack"
}
}
Headers