- Introduction
- Getting Started
- Permissions
- Core Resources
- Channels
- Messages
- Teams
- Roles
- Users
- Todos
- Direct Messages
- Applications
- Reactions
- Attachments
- Voice
- Webhooks
- Blog
- Category
- Schemas
- Websockets
- Example Bot
- WebSocket event envelope
- Websocket events
- CHANNEL_CREATED
- CHANNEL_DELETED
- CHANNEL_UPDATED
- MESSAGE_SEND
- MESSAGE_UPDATED
- MESSAGE_DELETED
- MESSAGE_REACTION_ADDED
- MESSAGE_REACTION_REMOVED
- PRESENCE_UPDATE
- TEAM_ROLE_CREATED
- TEAM_ROLE_DELETED
- TEAM_ROLES_UPDATED
- TEAM_UPDATED
- TODO_ITEM_CREATED
- TODO_ITEM_DELETED
- TODO_ITEM_UPDATED
- USER_JOINED_TEAM
- USER_LEFT_TEAM
- USER_JOINED_VOICE_CHANNEL
- USER_LEFT_VOICE_CHANNEL
- USER_PROFILE_UPDATED
- USER_ROLE_ADDED
- USER_ROLE_REMOVED
- USER_UPDATED_VOICE_METADATA
- BLOG_CREATED
- BLOG_DELETED
- CATEGORIES_PRIORITY_UPDATED
- CATEGORY_UPDATED
- CATEGORY_DELETED
- CATEGORY_CREATED
- CHANNELS_PRIORITY_UPDATED
- Connecting via WebSocket
Update Team's Application Questions
PATCH
https://api.teamly.one/api/v1/teams/{teamId}/applications
Request
Path Params
teamId
string
required
Header Params
Authorization
string
required
Default:
Bot {token}
Content-Type
string
required
Default:
application/json
Body Params application/json
description
string
required
questions
array [object {2}]
required
question
string
required
type
string
required
Example
{
"description": "string",
"questions": [
{
"question": "string",
"type": "string"
}
]
}
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request PATCH 'https://api.teamly.one/api/v1/teams//applications' \
--header 'Authorization;' \
--header 'Content-Type: application/json' \
--data-raw ''
Responses
🟢200Success
application/json
Body
success
boolean
required
application
object
required
teamId
string
required
type
string
required
enabled
boolean
required
lastEdited
string
required
lastEditedBy
string
required
questions
array [object {3}]
required
Example
{
"success": true,
"application": {
"teamId": "a087a8349838b157",
"type": "team",
"enabled": false,
"lastEdited": "2024-12-29T08:36:57.739Z",
"lastEditedBy": "2d5c6531b2ac0fbc",
"questions": [
{
"question": "Whats your name.",
"type": "text",
"id": "10c8e7895083aa23"
},
{
"question": "Why are you interested in with our server.",
"type": "textarea",
"id": "bbd91114a6947204"
}
]
}
}
Modified at 2024-12-29 08:37:25