Skip to main content
PATCH
/
applications
/
{applicationId}
Update an application
curl --request PATCH \
  --url https://app.trusys.ai/api/external/applications/{applicationId} \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "name": "Customer Support Bot v2",
  "description": "Updated description after product rename"
}
'
{
  "success": true,
  "data": {
    "id": "550e8400-e29b-41d4-a716-446655440000",
    "name": "Customer Support Bot v2",
    "description": "Updated description after product rename",
    "updatedAt": "2026-07-02T15:00:00.000Z"
  }
}

Authorizations

x-api-key
string
header
required

Your Trusys API key. Create and manage keys in the Trusys UI under Settings โ†’ API Keys.

Include the key on every request:

x-api-key: <your-api-key>

Path Parameters

applicationId
string<uuid>
required

Unique identifier (UUID) of the application. Returned by POST /applications.

Body

application/json

Fields to update. Omitted fields are left unchanged.

Fields to update on an existing application. At least one property is required.

name
string

New display name. Must remain unique.

Minimum string length: 1
description
string

New description text.

Response

Application updated successfully.

success
boolean
Example:

true

data
object