curl --request GET \
--url https://us.infisical.com/api/v2/secret-rotations/azure-client-secret/{rotationId}/generated-credentials
{
"generatedCredentials": [
{
"clientId": "<string>",
"clientSecret": "<string>",
"keyId": "<string>"
}
],
"activeIndex": 123,
"rotationId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"type": "azure-client-secret"
}
Get the generated credentials for the specified Azure Client Secret Rotation.
curl --request GET \
--url https://us.infisical.com/api/v2/secret-rotations/azure-client-secret/{rotationId}/generated-credentials
{
"generatedCredentials": [
{
"clientId": "<string>",
"clientSecret": "<string>",
"keyId": "<string>"
}
],
"activeIndex": 123,
"rotationId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"type": "azure-client-secret"
}
The ID of the Azure Client Secret Rotation to retrieve the generated credentials for.
Default Response
The response is of type object
.
Was this page helpful?