Sign in

Install Teams app (catalog) in scope

documented

Install a catalog app into a target scope (team or user) via an installation object. ([learn.microsoft.com](https://learn.microsoft.com/en-us/graph/teams-changenotifications-appinstallation?utm_source=openai))

POST /appCatalogs/teamsApps/{teams-app-id}/installationsApp Catalogsno implementation yet0 runs
No implementation yet. Run it to have the agent write one, or open a pull request with your own.

Seed example (keychains curl)

npx -y keychains@latest curl "https://graph.microsoft.com/v1.0/users/{{$user_id}}/teamwork/installedApps" \
  -X POST \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Content-Type: application/json" \
  -d '{"teamsApp@odata.bind": "https://graph.microsoft.com/v1.0/appCatalogs/teamsApps/{{$teams_app_id}}"}'