Urgent : UPLINK API Issue!

Hi Team,

I encountered a problem with the OLD API, so I switched to the uplink API https://api.upstox.com/v2. However, I am still experiencing issues when making API calls. I shared the error log details from yesterday’s incident, resulting in losses for me and my colleagues who were also using the same API at that time.
Error details:
2023-12-14 11:07:41,610 [DEBUG] https://api.upstox.com:443 “GET /v2/portfolio/short-term-positions HTTP/1.1” 429 None
2023-12-14 11:07:41,613 [ERROR] Unexpected exception in process_access_token: ‘Response’ object has no attribute ‘get’
position_data = response.get(‘data’, )
AttributeError: ‘Response’ object has no attribute ‘get’

@7BBVXT

The status code 429 you received indicates that your requests are being rate-limited according to the API’s usage policies. This typically happens when too many requests are sent in a short period. For more details on the rate-limiting rules, please refer to the Upstox API documentation on rate limiting available at Upstox API Rate Limiting Documentation. Understanding these rules will help you adjust your API usage to avoid such issues in the future.

Thanks!!