|
| 1 | +--- |
| 2 | +title: "List enabledApps" |
| 3 | +description: "Get a list of the enabled apps in the specified channel within a team." |
| 4 | +author: "devjha-ms" |
| 5 | +ms.date: 03/16/2026 |
| 6 | +ms.localizationpriority: medium |
| 7 | +ms.subservice: "teams" |
| 8 | +doc_type: apiPageType |
| 9 | +--- |
| 10 | + |
| 11 | +# List enabledApps |
| 12 | + |
| 13 | +Namespace: microsoft.graph |
| 14 | + |
| 15 | +Get a list of the [enabled apps](../resources/teamsapp.md) in the specified [channel](../resources/channel.md) within a [team](../resources/team.md). |
| 16 | + |
| 17 | +[!INCLUDE [national-cloud-support](../../includes/all-clouds.md)] |
| 18 | + |
| 19 | +## Permissions |
| 20 | + |
| 21 | +Choose the permission or permissions marked as least privileged for this API. Use a higher privileged permission or permissions [only if your app requires it](/graph/permissions-overview#best-practices-for-using-microsoft-graph-permissions). For details about delegated and application permissions, see [Permission types](/graph/permissions-overview#permission-types). To learn more about these permissions, see the [permissions reference](/graph/permissions-reference). |
| 22 | + |
| 23 | +<!-- { "blockType": "permissions", "name": "channel_list_enabledapps" } --> |
| 24 | +[!INCLUDE [permissions-table](../includes/permissions/channel-list-enabledapps-permissions.md)] |
| 25 | + |
| 26 | +## HTTP request |
| 27 | + |
| 28 | +<!-- { |
| 29 | + "blockType": "ignored" |
| 30 | +} |
| 31 | +--> |
| 32 | + |
| 33 | +``` http |
| 34 | +GET /teams/{team-id}/channels/{channel-id}/enabledApps |
| 35 | +``` |
| 36 | + |
| 37 | +## Optional query parameters |
| 38 | + |
| 39 | +This method supports the `$filter` and `$select` [OData query parameters](/graph/query-parameters) to help customize the response. |
| 40 | + |
| 41 | +## Request headers |
| 42 | + |
| 43 | +|Name|Description| |
| 44 | +|:---|:---| |
| 45 | +|Authorization|Bearer {token}. Required. Learn more about [authentication and authorization](/graph/auth/auth-concepts).| |
| 46 | + |
| 47 | +## Request body |
| 48 | + |
| 49 | +Don't supply a request body for this method. |
| 50 | + |
| 51 | +## Response |
| 52 | + |
| 53 | +If successful, this method returns a `200 OK` response code and a collection of [teamsApp](../resources/teamsapp.md) objects in the response body. The response also includes the **@odata.id** property which can be used to access the **teamsApp** and run other operations on the [teamsApp](../resources/teamsapp.md) object. |
| 54 | + |
| 55 | +## Examples |
| 56 | + |
| 57 | +### Request |
| 58 | + |
| 59 | +The following example shows a request. |
| 60 | + |
| 61 | +<!-- { |
| 62 | + "blockType": "request", |
| 63 | + "name": "list_channel_enabledapps", |
| 64 | + "sampleKeys": ["893075dd-2487-4122-925f-022c42e20265", "19:561fbdbbfca848a3a8df3ffe558b1c1@thread.tacv2"] |
| 65 | +} |
| 66 | +--> |
| 67 | + |
| 68 | +``` http |
| 69 | +GET https://graph.microsoft.com/v1.0/teams/893075dd-2487-4122-925f-022c42e20265/channels/19:561fbdbbfca848a3a8df3ffe558b1c1@thread.tacv2/enabledApps |
| 70 | +``` |
| 71 | + |
| 72 | +### Response |
| 73 | + |
| 74 | +The following example shows the response. |
| 75 | + |
| 76 | +>**Note:** The response object shown here might be shortened for readability. |
| 77 | +
|
| 78 | +<!-- { |
| 79 | + "blockType": "response", |
| 80 | + "truncated": true, |
| 81 | + "@odata.type": "Collection(microsoft.graph.teamsApp)" |
| 82 | +} |
| 83 | +--> |
| 84 | + |
| 85 | +``` http |
| 86 | +HTTP/1.1 200 OK |
| 87 | +Content-Type: application/json |
| 88 | +
|
| 89 | +{ |
| 90 | + "value": [ |
| 91 | + { |
| 92 | + "@odata.type": "#microsoft.graph.teamsApp", |
| 93 | + "@odata.id": "https://graph.microsoft.com/v1.0/appCatalogs/teamsApps/b1c5353a-7aca-41b3-830f-27d5218fe0e5", |
| 94 | + "id": "b1c5353a-7aca-41b3-830f-27d5218fe0e5", |
| 95 | + "externalId": "f31b1263-ba99-435a-a679-911d24850d7c", |
| 96 | + "displayName": "Sample App 1", |
| 97 | + "distributionMethod": "organization" |
| 98 | + }, |
| 99 | + { |
| 100 | + "@odata.type": "#microsoft.graph.teamsApp", |
| 101 | + "@odata.id": "https://graph.microsoft.com/v1.0/appCatalogs/teamsApps/c21ba739-90e0-462b-bc10-5c235ae55e99", |
| 102 | + "id": "c21ba739-90e0-462b-bc10-5c235ae55e99", |
| 103 | + "externalId": "c21ba739-90e0-462b-bc10-5c235ae55e88", |
| 104 | + "displayName": "Sample App 2", |
| 105 | + "distributionMethod": "organization" |
| 106 | + } |
| 107 | + ] |
| 108 | +} |
| 109 | +``` |
0 commit comments