Hi there,
I’m trying to work with the RingCentral API for Call Control and have the following snippet of code:
answer_path = (f"/restapi/v1.0/account/~/telephony/sessions/{session_id}/parties/{party_id}/answer")
answer_body = {"deviceId": RC_DEVICE_ID}
ans_resp = platform_rc.post(answer_path, answer_body)
Unfortunately, I get an HTTP403 error with the message TAS-106 “Operation is not allowed”. I made sure that I have Call Control selected in my Application Scopes and that the JWT I created included that scope.
Does anyone have any thoughts on how I can get to the bottom of this issue? Are there other tests I can run or settings to check?
Thank you,
Jeremy.