List all client secrets (censored) of auth client
GET/login/client/:id/clientSecret
Retrieves all existing client secrets of the specified auth client.
The returned secrets only contain the 5 letter prefix (censored client secret text) and the fingerprint for identification (for deleting secrets). The original secret text is NOT returned. It can only be retrieved once while creating the secret.
Request
Path Parameters
id uuidrequired
The uuid string of an existing auth client
Responses
- 200
- 404
All client secrets of the auth client (censored)
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
censored stringrequired
The 5 letter prefix of the original client secret text plus stars for identification of the secret by the user
fingerprint stringrequired
The fingerprint of the hash of the client secret. Used as identifier to delete the secret.
[
{
"censored": "1a2b3**********",
"fingerprint": "0123456789abcdef"
}
]
If no id was given or no auth client with the given id was found
Loading...