GET /config/certificates/end_certificates/{id}/full_chain
Gets the full chain of the certificate. The chain hierarchy includes the content of the end certificate, and the content of the issuer chain certificates, up to and including the root certificate. This endpoint might not return the root certificate if it was uploaded in the last 24 hours.
Gets the full chain of the certificate.
You must have System Administrator, Security Administrator, Manage Log Sources, or WinCollect permissions to use this endpoint.
MIME Type |
---|
application/json |
Parameter | Type | Optionality | Data Type | MIME Type | Description |
---|---|---|---|---|---|
id |
path |
Required |
Number (Integer) |
text/plain |
Required. The ID of the certificate whose full chain is required. |
fields |
query |
Optional |
String |
text/plain |
Optional - Use this parameter to specify which fields you would like to get back in the response. Fields that are not named are excluded. Specify subfields in brackets and multiple fields in the same object are separated by commas. |
HTTP Response Code | Unique Code | Description |
---|---|---|
404 |
1002 |
No certificate exists with this ID. |
422 |
1103 |
null |
422 |
1104 |
null |
500 |
1020 |
null |
500 |
2035 |
null |
Response Description
- id - The root certificate's resource ID.
Response Sample
{
"end_certificate": "String",
"intermediate_chain": [
"String"
],
"root_certificate": "String"
}