curl --request PATCH \
--url https://us.infisical.com/api/v1/ssh/ca/{sshCaId} \
--header 'Content-Type: application/json' \
--data '{
"friendlyName": "<string>",
"status": "active"
}'
{
"ca": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"projectId": "<string>",
"friendlyName": "<string>",
"status": "<string>",
"keyAlgorithm": "<string>",
"keySource": "<string>",
"publicKey": "<string>"
}
}
Update SSH CA
curl --request PATCH \
--url https://us.infisical.com/api/v1/ssh/ca/{sshCaId} \
--header 'Content-Type: application/json' \
--data '{
"friendlyName": "<string>",
"status": "active"
}'
{
"ca": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"projectId": "<string>",
"friendlyName": "<string>",
"status": "<string>",
"keyAlgorithm": "<string>",
"keySource": "<string>",
"publicKey": "<string>"
}
}
The ID of the SSH CA to update.
Default Response
The response is of type object
.
Was this page helpful?