post
5 TopicsIssue Creating InTune Compliance Notification
Hi, complete Graph newbie here trying to learn the ropes. Currently using the Graph explorer to get comfortable. We're an MSP, so we set up a lot of InTune tenants for customers and currently do it manually, I'd like to automate a lot of it which I've done with regular old PowerShell, but some of it seems to be restricted to the (better) Graph. Currently, I'm using https://learn.microsoft.com/en-us/graph/api/intune-notification-notificationmessagetemplate-create?view=graph-rest-1.0&tabs=http and https://learn.microsoft.com/en-us/graph/api/intune-notification-localizednotificationmessage-create?view=graph-rest-1.0&tabs=http To try and create a POST request to: https://graph.microsoft.com/v1.0/deviceManagement/notificationMessageTemplates This is what I have: { "@odata.type": "#microsoft.graph.notificationMessageTemplate", "displayName": "Your Template Name", "defaultLocale": "en-us", "brandingOptions": "includeCompanyLogo", "localizedNotificationMessages": [ { "@odata.type": "#microsoft.graph.localizedNotificationMessage", "locale": "en-us", "subject": "Your Notification Subject", "messageTemplate": "Your Notification Message", "isDefault": true } ] } In the request body using Graph explorer. A lot of values are place holders but they should still create just to test. Initially I was getting errors with the payload but have fixed those. Now, no matter how much modifying I do, I always get this as 400 bad request error: { "error": { "code": "BadRequest", "message": "{ \"_version\": 3, \"Message\": \"An error has occurred - Operation ID (for customer support): 00000000-0000-0000-0000-000000000000 - Activity ID: 2e3410e5-8f41-8b2f-755c-f42d2944e26d - Url: https://fef.msub07.manage.microsoft.com/StatelessNotificationFEService/deviceManagement/notificationMessageTemplates?api-version=5018-07-01\", \"CustomApiErrorPhrase\": \"\", \"RetryAfter\": null, \"ErrorSourceService\": \"\", \"HttpHeaders\": \"{}\"}", "innerError": { "date": "2023-11-10T14:24:35", "request-id": "efbf0aae-23bf-445f-83e8-141c3d0e7255", "client-request-id": "2e3410e5-8f41-8b2f-755c-f42d2944e26d" } } } Could anyone help me identify what's wrong, or point me where I can learn more? Thank you so much.484Views0likes0CommentsWhat happened to my post in Microsoft UserVoice portal?
Hi, not long ago I created a post on UserVoice, requesting some features for ACS. This is the link: https://feedback.azure.com/forums/934536-azure-communication-services/suggestions/43829745-acs-chat-sdk-chatclient-listchatthreads-should-be When clicking on it you find out, that it does not exist anymore with the hint, that one should use one of the other portals. I guess this (techcommunity.microsoft.com) is the new one for such topics? Is my post still somewhere (migrated?), or has it simply been rejected / deleted? Should I recreate it here? Sorry in advance, if this is the wrong portal, for asking this question, but it's getting a little confusing. Thanks! PatrickSolved1.5KViews1like4CommentsCannot save edited post
We found that sometimes we cannot edit and save a conversation in channel. We can click the edit button and we can modify it but after we save it, it is not updated when viewing on other clients. We have confirmed the behavior is the same even when we are using teams on website to edit the post. It will happen when the post contain some pasted images. Does anyone has similar behavior observed?Solved2KViews1like4CommentsTeams Assignment Not Showing in Posts
I'm having an issue with one specific user that I'm hoping someone can point me in the right direction on. When one specific owner of a team adds an assignment to a specific team they are able to do so and the assignment is added, but it doesn't appear in the posts section of the team. This user is an owner of the team. When other team owners add assignments to the same specific team they do appear in the posts section. When this same user adds an assignment to a different team, it does appear in the posts section. I have removed the user from the team, left it 24 hours, added her back, left it another 24 hours and still the same issue occurs. Is there something I am missing? Thanks13KViews0likes4CommentsSPFX React JS POST REST Call not working - Cannot read property 'post' of undefined
I am trying to authenticate username and password only to a public Authorization. It is always throwing error - "Cannot read property 'post' of undefined". I have used this.context.httpClient.POST( postURL, HttpClient.configurations.v1, httpClientOptions) Below is the request body and headers const body: string = JSON.stringify({ 'username': value1, 'password': value2, 'options': value3, }); const requestHeaders: Headers = new Headers(); requestHeaders.append('Content-type', 'application/json'); requestHeaders.append('Accept', 'application/json'); requestHeaders.append('Cache-Control', 'no-cache'); requestHeaders.append('User-Agent', 'PostmanRuntime/7.20.1'); requestHeaders.append('Postman-Token', 'xxxxxxxxxxxxxxxxxxxxxxxxxx'); requestHeaders.append('Host', 'xxxxxx.oktapreview.com'); requestHeaders.append('Accept-Encoding', 'gzip, deflate'); requestHeaders.append('Content-Length', '161'); requestHeaders.append('Cookie', 'xxxxxx=xxxxxxxxxxxxxxxxxxxxx'); requestHeaders.append('Connection', 'keep-alive');3.2KViews0likes0Comments