Skip to main content
POST
/
apps
/
create-app
Create a new app
curl --request POST \
  --url https://apps-studio.thena.ai/apps/create-app \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '{}'
{
  "uid": "VGQJEZEJ10W**********R7YPFVEG",
  "name": "Thena Hub",
  "slug": "thena-hub",
  "description": "Boost your ticketing workflows with Thena Hub! Seamlessly manage customer interactions, automate ticket updates, and collaborate with your teamโ€”all without leaving Slack",
  "visibility": "public",
  "manifest": {},
  "createdAt": "2024-12-13T10:00:00.000Z",
  "updatedAt": "2024-12-13T10:00:00.000Z"
}

Authorizations

x-api-key
string
header
required

Body

application/json ยท object

Response

App created successfully

uid
string
required

Unique identifier of the app

Example:

"VGQJEZEJ10W**********R7YPFVEG"

name
string
required

Name of the app

Example:

"Thena Hub"

slug
string
required

Slug of the app

Example:

"thena-hub"

description
string
required

Description of the app

Example:

"Boost your ticketing workflows with Thena Hub! Seamlessly manage customer interactions, automate ticket updates, and collaborate with your teamโ€”all without leaving Slack"

visibility
enum<string>
required

Visibility status of the app

Available options:
public,
private,
unlisted
Example:

"public"

manifest
object
required

Complete app manifest containing all configurations

createdAt
string<date-time>
required

Date and time when the app was created

Example:

"2024-12-13T10:00:00.000Z"

updatedAt
string<date-time>
required

Date and time of last update

Example:

"2024-12-13T10:00:00.000Z"

โŒ˜I