Hi All,
Good day!
I have got a small issue that I am struggling to get around.
I am trying to assign numbers to an IVR config using the the below, however, I am receiving a 429 rate limit response due to the amount of DNIS entries in the list. How do I go about doing this?
try:
ivr_id = '050c9525-1df5-4d77-9936-106c7c34962b' # str | Include IVR id body = api_instance.get_architect_ivr(ivr_id) body.dnis = ['+44xxxxxxxx','+44xxxxxxxx','+44xxxxxxxx','+44xxxxxxxx','+44xxxxxxxx','+44xxxxxxxx','+44xxxxxxxx'] **# example list, the real script has 3000 numbers** try: api_response = api_instance.put_architect_ivr(ivr_id, body) pprint(api_response) except ApiException as e: print("Exception when calling PutArchitectIvrRequest->put_architect_ivr: %s\n" % e)
except ApiException as e:
print("Exception when calling GetArchitectIvrRequest->get_architect_ivr: %s\n" % e)
Thank you.
Kind Regards,
Chris Carr