POST
/
v1
/
projects
/
{project}
/
boxes
/
{name}
/
services
cURL
curl --request POST \
  --url https://api.example.com/v1/projects/{project}/boxes/{name}/services \
  --header 'Content-Type: application/json' \
  --data '
{
  "command": [
    "<string>"
  ],
  "name": "<string>",
  "port": 1,
  "publish": {
    "subdomain": "<string>",
    "domain": "<string>"
  },
  "tags": {}
}
'

Path Parameters

project
string
required
name
string
required

Body

application/json
command
string[]
required
name
string
required
port
integer<int32>
required
Required range: x >= 0
publish
object
tags
object

Response

Service started