连博10335043 Sincere apologies for the delayed response.
You can set the speech recognition result to detailed and it will give all formats as mentioned here.
Also, check Transcriptions - Submit - REST API (Azure Azure AI Services) | Microsoft Learn
In submit transcriptions api, the body contains TranscriptionProperties where punctuationMode can be set to None.
See a sample request and response here.
{
"parameters": {
"Endpoint": "https://westus.api.cognitive.microsoft.com/",
"Ocp-Apim-Subscription-Key": "{API Key}",
"transcription": {
"contentUrls": [
"https://contoso.com/mystoragelocation",
"https://contoso.com/myotherstoragelocation"
],
"properties": {
"diarizationEnabled": false,
"wordLevelTimestampsEnabled": false,
"displayFormWordLevelTimestampsEnabled": false,
"punctuationMode": "None",
"profanityFilterMode": "Masked"
},
"locale": "en-US",
"displayName": "Transcription using default model for en-US"
},
"Content-Type": "application/json"
},
Do let me know if that helps or have any further queries.