Skip to main content
PATCH
/
api
/
v1
/
apps
/
{id}
cURL
curl --request PATCH \
  --url https://api.example.com/api/v1/apps/{id} \
  --header 'Content-Type: application/json' \
  --data '
{
  "default_policy": {},
  "is_active": true,
  "name": "<string>"
}
'
{
  "data": "<unknown>",
  "message": "<string>",
  "status": 1
}

Documentation Index

Fetch the complete documentation index at: https://docs.draskencloud.com/llms.txt

Use this file to discover all available pages before exploring further.

Path Parameters

id
string<uuid>
required

App ID

Body

application/json
default_policy
object
is_active
boolean | null
name
string | null

Response

App updated

data
any
required

Response payload; null on delete or error

message
string
required
status
integer<int32>
required

HTTP status code mirrored in the body

Required range: x >= 0