Skip to main content
POST
/
apps
Create a new app
curl --request POST \
  --url http://localhost:8080/api/v1/apps \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "data": {
    "attributes": {
      "datasource_ids": [
        123
      ],
      "description": "<string>",
      "llm_ids": [
        123
      ],
      "name": "<string>",
      "user_id": 123
    },
    "type": "<string>"
  }
}
'
{
  "attributes": {
    "credential_id": 123,
    "datasource_ids": [
      123
    ],
    "description": "<string>",
    "llm_ids": [
      123
    ],
    "name": "<string>",
    "user_id": 123
  },
  "id": "<string>",
  "type": "<string>"
}

Authorizations

Authorization
string
header
required

Body

application/json

App information

App input model

data
object

Response

Created

App response model

attributes
object
id
string
type
string