Building a script to bulk-create users from a CSV using the Genesys Cloud Python SDK. The create_user method works fine for single records, but looping through 500 rows causes the client to hang or timeout after ~200 iterations. No specific error thrown, just silence. Tried increasing the timeout to 60s. Here’s the loop logic:
for row in csv_reader:
user = PureCloudPlatformClientV2.User()
user.name = row['name']
api_instance.create_user(user)
Is there a rate limit on the SDK client itself or should I be batching these requests differently?