Skip to content

Commit 6ccdb8c

Browse files
authored
Merge pull request #24908 from microsoftgraph/sthapliyal/addClientAppIdToAppDef
Adding client app id property to teamsAppAuthorization
2 parents ddef90e + 912c045 commit 6ccdb8c

File tree

4 files changed

+27
-1
lines changed

4 files changed

+27
-1
lines changed

api-reference/beta/api/appcatalogs-list-teamsapps.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -707,6 +707,7 @@ Content-Type: application/json
707707
{
708708
"id": "YTUyMjhjMjYtYTlhZS00NzAyLTkwZTAtNzlhNTI0NmQyZjdkIyMxLjAuMCMjUHVibGlzaGVk",
709709
"authorization": {
710+
"clientAppId": "6ed63604-0ba7-4a28-bb3a-dda03ea18d54",
710711
"requiredPermissionSet": {
711712
"resourceSpecificPermissions": [
712713
{
@@ -822,6 +823,7 @@ Content-Type: application/json
822823
"serializedInternalDefinition": null,
823824
"createdBy": null,
824825
"authorization": {
826+
"clientAppId": null,
825827
"requiredPermissionSet": {
826828
"resourceSpecificPermissions": []
827829
}
@@ -888,6 +890,7 @@ Content-Type: application/json
888890
"serializedInternalDefinition": null,
889891
"createdBy": null,
890892
"authorization": {
893+
"clientAppId": null,
891894
"requiredPermissionSet": {
892895
"resourceSpecificPermissions": []
893896
}

api-reference/beta/resources/teamsappauthorization.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ The authorization details of a [teamsApp](teamsapp.md).
1818
## Properties
1919
|Property|Type|Description|
2020
|:---|:---|:---|
21+
|clientAppId|String|The registration ID of the Microsoft Entra app ID associated with the [teamsApp](teamsapp.md). |
2122
|requiredPermissionSet|[teamsAppPermissionSet](../resources/teamsapppermissionset.md)|Set of permissions required by the [teamsApp](teamsapp.md).|
2223

2324
## Relationships
@@ -33,9 +34,9 @@ The following JSON representation shows the resource type.
3334
``` json
3435
{
3536
"@odata.type": "#microsoft.graph.teamsAppAuthorization",
37+
"clientAppId": "String",
3638
"requiredPermissionSet": {
3739
"@odata.type": "microsoft.graph.teamsAppPermissionSet"
3840
}
3941
}
4042
```
41-

changelog/Microsoft.Teams.GraphSvc.json

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,23 @@
11
{
22
"changelog": [
3+
{
4+
"ChangeList": [
5+
{
6+
"Id": "3c1cbe3b-c55a-4ab6-a055-53af1db155b0",
7+
"ApiChange": "Property",
8+
"ChangedApiName": "clientAppId",
9+
"ChangeType": "Addition",
10+
"Description": "Added the **clientAppId** property to the [teamsAppAuthorization](https://learn.microsoft.com/en-us/graph/api/resources/teamsAppAuthorization?view=graph-rest-beta) resource.",
11+
"Target": "teamsAppAuthorization"
12+
}
13+
],
14+
"Id": "3c1cbe3b-c55a-4ab6-a055-53af1db155b0",
15+
"Cloud": "Prod",
16+
"Version": "beta",
17+
"CreatedDateTime": "2024-08-30T19:05:03.3806123Z",
18+
"WorkloadArea": "Teamwork and communications",
19+
"SubArea": "Apps"
20+
},
321
{
422
"ChangeList": [
523
{

concepts/whats-new-overview.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,10 @@ Enabled the `Spain` and `Mexico` values as supported regions for the **region**
7373
- [Get educationSubmission](/graph/api/educationsubmission-get?view=graph-rest-beta&preserve-view=true)
7474
- Reduced support for the `$orderby` query parameter in the [List assignments of a user](/graph/api/educationuser-list-assignments?view=graph-rest-beta&preserve-view=true) method to a subset of the properties in the [educationAssignment](/graph/api/resources/educationassignment?view=graph-rest-beta&preserve-view=true) resource.
7575

76+
### Teamwork and communications | Apps
77+
78+
Use the **clientAppId** property on [teamsAppAuthorization](/graph/api/resources/teamsappauthorization?view=graph-rest-beta&preserve-view=true) to get the registration ID of the Microsoft Entra app ID associated with an [app](/graph/api/resources/teamsapp?view=graph-rest-beta&preserve-view=true) in the Microsoft Teams app catalog.
79+
7680
### Teamwork and communications | Calls and online meetings
7781

7882
- Use the **settings** property on [virtualEventTownhall](/graph/api/resources/virtualeventtownhall?view=graph-rest-beta&preserve-view=true) and [virtualEventWebinar](/graph/api/resources/virtualeventwebinar?view=graph-rest-beta&preserve-view=true) to get or set whether attendees receive email notifications for a town hall or webinar.

0 commit comments

Comments
 (0)