Skip to main content
POST
/
api
/
app
Create a new app
curl --request POST \
  --url https://api.example.com/api/app \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "app_name": "<string>",
  "app_type": "hand_authored"
}
'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "app_name": "<string>",
  "created_date": "<unknown>",
  "app_type": "hand_authored",
  "created_by": "<string>"
}

Authorizations

Authorization
string
header
required

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

Body

application/json

Request model for creating a new App. App name must be filesystem + S3 safe.

app_name
string
required

Unique name of the app. It must contain only alphanumeric characters, -, or _, and no spaces.

app_type
enum<string>
default:hand_authored

Type of application.

Available options:
hand_authored,
notebook_pipeline,
inference_service,
full_pipeline

Response

App created successfully.

Response model for creating a new App.

id
string<uuid>
required

Unique ID of the created app.

app_name
string
required

Name of the created app.

created_date
any
required

Timestamp when the app was created.

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.