Get certificate authority

Returns details for a given certificate authority based on its ID. .

GET
https://pki.infra.katapult.io/v1/authorities/{authority}

If successful, this endpoint will return a 200 OK status.

Arguments

The following arguments are supported for this endpoint.

Name Type Default Value

authority Required

AuthorityLookup None

Potential Errors

The following errors may occur during this request.

Details HTTP status

authority_not_found

404 Not Found

Returned Object

When the request is successful, you can expect an object matching the specification below to be returned.

{
    authority: Authority {
        id: String
        label: String?
        certificate: String
        next_serial: Integer
    }
}