Cloud APIs
/- Foundation Services
- SLB Authenticator
SLB Authenticator
- Rotate secret for a client
Generate Client secret.
Get Client secrets.
Revoke Client secret.
Rotate secret for a clien...
Create a new secret and revoke the given secret of an SLB Authenticator Client.
Security
appkey and bearer
- UShttps://api.delfi.slb.com/auth/client/v1/clients/{clientID}/secrets
- EUhttps://eu-api.delfi.slb.com/auth/client/v1/clients/{clientID}/secrets
- Mock serverhttps://developer.slb.com/_mock/solutions/sauth/apis/sauth-client-secret-management-service/v1/clients/{clientID}/secrets
curl -i -X PUT \
'https://api.delfi.slb.com/auth/client/v1/clients/{clientID}/secrets' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-H 'appkey: YOUR_API_KEY_HERE' \
-d '{
"secretName": "string",
"existingSecretId": "string"
}'Response
{ "secretName": "string", "secretId": "string", "secretValue": "string", "revokedSecretId": "string", "revokedSecretName": "string" }