Hi,
I am trying to delete users using python SDK but I am getting 400 Bad Request.
PureCloudPlatformApiSdk.configuration.host = 'https://api.mypurecloud.ie'
PureCloudPlatformApiSdk.configuration.access_token = '***'
api = PureCloudPlatformApiSdk.UsersApi()
api.delete_user_id('ba10be03-cba9-4da3-b8cf-6e626720195d')
Using the same configuration I can manage other API calls. And also I was able to delete the very same user using:
requests.delete('https://api.mypurecloud.ie/api/v2/users/ba10be03-cba9-4da3-b8cf-6e626720195d', headers=h)