Description
Attempting to create accounts for our users. When I attempt to create the account I get Email USER@DOMAIN has already been used.
However if I attempt to delete that account I get: {“code”:1001,“message”:“User does not exist: USER@DOMAIN.”}. I need to delete the account to be able to create the account with a password we control.
If I search our account for that user I do not see them listed.
If the user created their account against our domain would I expect to see it listed if they don’t consolidate it into our Associated Domains?
Which App Type (OAuth / Chatbot / JWT / Webhook)?
Account Level OAuth App
Which Endpoint/s?
DELETE /users/$email
POST /users
How To Reproduce (If applicable)
Steps to reproduce the behavior:
https://api.zoom.us/v2/users/USER@DOMAIN?transfer_recording=false&transfer_webinar=false&transfer_meeting=false&action=delete
POST https://api.zoom.us/v2/users
{
“action” : “autoCreate”,
“user_info” : {
“email” : “USER@DOMAIN”,
“password” : “ACCOUNT PASSWORD”,
“type” : 1,
“last_name” : “BLATHERS”,
“first_name” : “THEOWL”
}
Additional context
Trying to 100% control the creation of accounts in our configured Associated Domains.