Skip to content

Stop App

POST
/api/apps/stop
curl --request POST \
--url https://example.com/api/apps/stop \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{ "application_name": "example" }'

Stop an app. Does NOT stop the agent endpoint.

Media typeapplication/json
AppStopRequest
object
application_name
required
Application Name
string
Examplegenerated
{
"application_name": "example"
}

Successful Response

Media typeapplication/json
Examplegenerated
example

Validation Error

Media typeapplication/json
HTTPValidationError
object
detail
Detail
Array<object>
ValidationError
object
loc
required
Location
Array
msg
required
Message
string
type
required
Error Type
string
input
Input
ctx
Context
object
Examplegenerated
{
"detail": [
{
"loc": [
"example"
],
"msg": "example",
"type": "example",
"input": "example",
"ctx": {}
}
]
}