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>"
}
'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "app_name": "<string>",
  "created_date": "<unknown>",
  "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 (alphanumeric, '-' and '_' only, no spaces).

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.

created_by
string | null

Username of the creator.