We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
requestBody does not have well-defined semantics for GET, HEAD and DELETE operations
DELETE requests do not support a request body.
DELETE
For op DELETE {{URL}}/api/users/revoke to revoke a role from a user, is not ideal to have a request body.
DELETE {{URL}}/api/users/revoke
TODO
POST {{URL}}/api/users/{userId}/grant
PATCH {{URL}}/api/users/{userId}/revoke
PATCH {{URL}}/api/users/{userId}/update
The text was updated successfully, but these errors were encountered:
No branches or pull requests
DELETE
requests do not support a request body.For op
DELETE {{URL}}/api/users/revoke
to revoke a role from a user, is not ideal to have a request body.TODO
POST {{URL}}/api/users/{userId}/grant
with a Request body containing the role to grant, and entitiesPATCH {{URL}}/api/users/{userId}/revoke
with a Request body containing the role to revoke, and entitiesPATCH {{URL}}/api/users/{userId}/update
with a Request body containing the role to patch, and entitiesThe text was updated successfully, but these errors were encountered: