Skip to main content
POST
/
apps
/
add-app-to-teams
add app to teams
curl --request POST \
  --url https://apps-studio.thena.ai/apps/add-app-to-teams \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '{
  "installationId": "<string>",
  "teamIds": [
    "<string>"
  ]
}'
{
  "message": "<string>",
  "teamIdsAdded": [
    "<string>"
  ]
}

Authorizations

x-api-key
string
header
required

Body

application/json
installationId
string
required

The ID of the installation to update

teamIds
string[]
required

The IDs of the teams to add to the installation

Response

Operation successful

message
string
required

success message

teamIdsAdded
string[]
required

The IDs of the teams to add to the installation

I