skip to Main Content

Azure Communication Services: Our services aren't available right now We're working to restore all services as soon as possible Please check back soon

I am trying to use Azure Communication Services to create a user identity and then fetch relay configuration for network traversal. Here is the code: const { CommunicationIdentityClient } = require("@azure/communication-identity"); const { CommunicationRelayClient } = require("@azure/communication-network-traversal");; const main =…

VIEW QUESTION

In Azure Communication Services I am receiving "request body validation error". See property 'x-ms-acsemail-geoforward-acsarmresourceid

Using .NET nuget package Azure.Communication.Email method EmailClient.Send, emails are being successfully delivered, but I get this error: Azure.RequestFailedException: 'Request body validation error. See property 'x-ms-acsemail-geoforward-acsarmresourceid' Status: 400 (Bad Request) ErrorCode: BadRequest Content: {"error":{"code":"BadRequest","message":"Request body validation error. See property 'x-ms-acsemail-geoforward-acsarmresourceid'","target":null,"details":null,"innererror":null}} Headers:…

VIEW QUESTION

Azure ACS: CreateCall works but CallMedia Play is unauthorized

I am following this tutorial https://learn.microsoft.com/en-us/azure/communication-services/tutorials/postman-tutorial Using this same code, I called https://learn.microsoft.com/en-us/rest/api/communication/callautomation/create-call/create-call?view=rest-communication-callautomation-2023-10-15&tabs=HTTP and it works perfectly. Next step, I called https://learn.microsoft.com/en-us/rest/api/communication/callautomation/call-media/play?view=rest-communication-callautomation-2023-10-15&tabs=HTTP with the callConnectionId I obtained from the previous API call.. and I keep getting { "error": { "code":…

VIEW QUESTION

How to get Email Message ID from Azure email service?

I'm trying to send email using azure email communication Python SDK poller = self.email_client.begin_send( message=payload, ) time_elapsed = 0 while not poller.done(): logger.info("Email send poller status: " + poller.status()) poller.wait(POLLER_WAIT_TIME) time_elapsed += POLLER_WAIT_TIME if time_elapsed > 18 * POLLER_WAIT_TIME: raise…

VIEW QUESTION
Back To Top
Search