David COURTEL
David COURTEL
Did you check if the certificate used to sign the packages is trusted by the replica server?
I use Version 3.12.99 (Feb 23 2022). In the firewall I can see outgoing trafic to apps.identrust.com and download.sqlitebrowser.org, both are allowed. Even if I disable the firewall I get...
Hi, I realize that I didn’t update the description after updating the code example. The error is thrown at the third line of code when adding the category to the...
Thanks Michael, I had to change the new StringContent line to this: ```C# hrm.Content = new StringContent($"{{\"@odata.id\": \"https://graph.microsoft.com/v1.0/deviceAppManagement/mobileAppCategories/{allCategories[2].Id}\"}}", Encoding.Unicode, "application/json"); ``` To have it works. I hope to see the...
Thanks for your feedback. It works as long as I don’t try to PATCH navigation properties (like Categories). If I try, I get this error message: > Cannot apply PATCH...
Thanks for your feedback. Unfortunately, the link you provide describes how to work with Categories. What I want is to add a Category to a MobileApp. So, PATCH the Categories...
To my knowledge, there is no documentation about that. Besides, I see there are PostAsync() and DeleteAsync() for Assignments: - _graphClient.DeviceAppManagement.MobileApps[appId].Assignments.PostAsync(assignment); - _graphClient.DeviceAppManagement.MobileApps[appId].Assignments[assignmentId].DeleteAsync(); Can we get the same for Categories?
@andrueastman, 3. The HTTP verb would be DELETE not POST.
Can we have an update on this request? @irvinesunday, to my knowledge, there is no documentation for these paths. We should be able to send POST (replace current categories with...
> Or you combine those 10 requests into a single batch request.... Batches are just a bunch of requests sent in one shot, which means you are very likely to...