Skip to main content
GET
/
api
/
app
Get all apps
curl --request GET \
  --url https://api.example.com/api/app \
  --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.

Query Parameters

app_type
enum<string> | null
Available options:
hand_authored,
notebook_pipeline,
inference_service,
full_pipeline

Response

Apps retrieved successfully.

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.