Skip to main content
PATCH
/
applications
/
{app_id}
Update Application
curl --request PATCH \
  --url https://management-api.unomiq.com/applications/{app_id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "pricing_plan": "free_trial"
}
'
{
  "id": "<string>",
  "name": "<string>",
  "updated_at": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

app_id
string
required

Body

application/json
name
string | null

Application name

Required string length: 1 - 255
pricing_plan
enum<string> | null

Pricing plan (free_trial, basic, professional, enterprise)

Available options:
free_trial,
basic,
professional,
enterprise

Response

Successful Response

id
string
required
name
string
required
updated_at
string
required