light-mode-image
Learn
API ReferenceHolder root CA certificates

Update a holder root CA certificate

Roles

adminholder

Analytics Events

CREDENTIAL_HOLDER_CA_CERTIFICATE_UPDATE_STARTCREDENTIAL_HOLDER_CA_CERTIFICATE_UPDATE_SUCCESSCREDENTIAL_HOLDER_CA_CERTIFICATE_UPDATE_FAIL
PUT/v1/holder/certificates/ca/{certificateId}

Updates a holder root CA certificate. The only mutable field is active.

Setting active: true deactivates all other roots for the tenant (single-active constraint).

Analytic events

  • CREDENTIAL_HOLDER_CA_CERTIFICATE_UPDATE_START
  • CREDENTIAL_HOLDER_CA_CERTIFICATE_UPDATE_SUCCESS
  • CREDENTIAL_HOLDER_CA_CERTIFICATE_UPDATE_FAIL

Authorization

bearerAuth
AuthorizationBearer <token>

In: header

Path Parameters

certificateId*string

Unique identifier of the holder root CA certificate.

Formatuuid

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

application/json

curl -X PUT "https://example.com/v1/holder/certificates/ca/497f6eca-6276-4993-bfeb-53cbbbba6f08" \  -H "Content-Type: application/json" \  -d '{    "active": true  }'
{  "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",  "active": true,  "certificatePem": "string",  "certificateFingerprint": "string",  "certificateData": {    "commonName": "string",    "country": "string",    "notBefore": "2019-08-24T14:15:22Z",    "notAfter": "2019-08-24T14:15:22Z"  },  "isManaged": true}

How would you rate this page?