Trying to programmatically start and stop recordings for specific calls. I’m hitting POST /api/v2/recordings/conversations/{id}/start but getting a 403. My OAuth token has recording:write scope. Is there a specific permission on the user profile I’m missing? The call is active and I can see it in the UI. Here’s the curl command:
curl -X POST https://api.mypurecloud.com/api/v2/recordings/conversations/c8a1b2c3-.../start \
-H 'Authorization: Bearer eyJ0e...' \
-H 'Content-Type: application/json'
Any ideas?