Hello,
I have integrated auth0 in my rails application. Signup & Signin working fine with auth0. But I cannot delete user from auth0 by user_id.
FYI: access_token, user_id all these details are correct.
Getting 400 Bad Request error when using below details in delete api
method: DELETE
userid: 7das1k5n54b56t6c126b9rh4
URL: https://my-xyz-domain.auth0.com/api/v2/users/userid
headers: Content-Type => application/json, Authorization => Bearer access_token
Getting bad URI error when using below details
method: DELETE
userid: auth0|7das1k5n54b56t6c126b9rh4
URL: https://my-xyz-domain.auth0.com/api/v2/users/userid
headers: Content-Type => application/json, Authorization => Bearer access_token