Skip to main content
PUT
/
api
/
app
/
{app_id}
Update an app
curl --request PUT \
  --url https://api.example.com/api/app/{app_id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "app_name": "<string>",
  "created_date": "<unknown>",
  "updated_date": "<unknown>",
  "app_type": "hand_authored",
  "created_by": "<string>",
  "updated_by": "<string>"
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Path Parameters

app_id
string<uuid>
required

Query Parameters

app_name
string
required

Response

App name updated successfully.

Response model for app details.

id
string<uuid>
required

Unique ID of the app.

app_name
string
required

Name of the app.

created_date
any
required

Timestamp when the app was created.

updated_date
any
required

Timestamp when the app was last updated.

app_type
enum<string>
default:hand_authored

Type of application.

Available options:
hand_authored,
notebook_pipeline,
inference_service,
full_pipeline
created_by
string | null

Username of the creator.

updated_by
string | null

Username of the last updater.