Hello, I’m attempting to use the ``` /api/v1/auth...
# gooddata-cloud
n
Hello, I’m attempting to use the
Copy code
/api/v1/auth/users/{userEmail}
endpoint to delete a user, but am getting this result:
Copy code
"detail": "No API path found that matches request '/api/v1/layout/users/*****@*****.com'.",
    "status": 404,
    "title": "Not Found",
    "traceId": "acb765134f06d171"
despite this user appearing in our list that is found at /api/v1/layout/users
m
Hi Nicholas, the API endpoint for user management in GoodData Cloud is
/api/v1/entities/users/{id}
. The API call to delete users is documented here.
n
Got it, what is this section of the documentation for?
(Found just below the section you linked)
p
Hi Nicholas,
/api/v1/auth/*
API endpoints are used for creating users within the internal OpenID Connect provider in the on-premise (GoodData.CN) product. Because the GoodData Cloud does not use this internal provider, these endpoints are not available there. I think this is a bug in our newly structured API documentation. I will report it to the documentation team to fix it. Sorry for the confusion.
n
Thanks @Peter Plochan!