Delete password reset URL ticket of a user
The endpoint provides functionality for deleting a password reset URL ticket of an already existing user.
The required values are the userExtId
retrieved upon user creation and the instanceId
of the customer.
For authorization, a JWT is required.
HTTP request
DELETE https://${instanceId}.id.nevis.cloud/nevis/api/v1/users/${userExtId}/url-ticket
Parameters
Parameter | In | Description |
---|---|---|
instanceId UUID | path | Required The ID of the customer instance |
userExtId UUID | path | Required The ID of the given user |
HTTP response
On success
HTTP/1.1 204
is returned if the URL ticket is successfully deleted.
On missing URL ticket
HTTP/1.1 404
is returned if no password reset URL ticket is found with the given userExtId
.
On failure
HTTP/1.1 401
is returned if the authorization failed due to an invalid JWT.
HTTP/1.1 422
is returned if invalid request content was given.
HTTP/1.1 500
is returned if an unexpected error occurred.
Feedback
Was this page helpful?