API reference
Platform
- Search
- Users
- Teams
- Tickets
- Tags
- Ticket tags
- Accounts
- Forms
- Comments
- Emoji actions
- Custom fields
- Custom object fields
- Custom objects
- Object records
- Views
- Views types
- Draft tickets
- Storage
- Reactions
Workflows
- Workflows
Apps platform
- App creation
- App installation
- App uninstallation
- App reinstallation
- Incoming webhook
App creation
Create a new app
Creates a new app with the provided manifest and configurations
POST
/
apps
/
create-app
Copy
Ask AI
curl --request POST \
--url https://apps-studio.thena.ai/apps/create-app \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '{}'
Copy
Ask AI
{
"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
Body
application/json · object
Response
201
application/json
App created successfully
The response is of type object
.
Copy
Ask AI
curl --request POST \
--url https://apps-studio.thena.ai/apps/create-app \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '{}'
Copy
Ask AI
{
"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"
}
Assistant
Responses are generated using AI and may contain mistakes.