Delete a client secret of auch client
DELETE/login/client/:id/clientSecret/:fingerprint
Deletes the client secret with the given fingerprint from the autch client with the given id
Request
Path Parameters
id uuidrequired
The uuid string of an existing auth client to delete a client secret from
fingerprint stringrequired
The fingerprint string of one of the existing client secrets of the client to delete
Responses
- 200
- 404
If deletion was successfull, the default response with operation "delete-clientSecret"
- application/json
- Schema
- Example (from schema)
Schema
operation stringrequired
A string representation of the operation performed
result stringrequired
Possible values: [success
, failed
]
Default value: success
The result of the operation. Defaults to "success"
time date-timerequired
Default value: 2024-07-03T21:50:49.978Z
The time the operation was performed. Defaults to the current date+time
{
"operation": "self-register",
"result": "success",
"time": "2024-07-03T21:52:34.379Z"
}
If no id or no fingerprint was given, no auth client with the given id was found or no secret with the given fingerprint was found
Loading...