crypto_certificatekeypairs_retrieve
GET/crypto/certificatekeypairs/:kp_uuid/
CertificateKeyPair Viewset
Request
Path Parameters
kp_uuid uuidrequired
A UUID string identifying this Certificate-Key Pair.
Responses
- 200
- 400
- 403
- application/json
- Schema
- Example (from schema)
Schema
pk uuidrequired
name stringrequired
fingerprint_sha256 stringnullablerequired
Get certificate Hash (SHA256)
fingerprint_sha1 stringnullablerequired
Get certificate Hash (SHA1)
cert_expiry date-timenullablerequired
Get certificate expiry
cert_subject stringnullablerequired
Get certificate subject as full rfc4514
private_key_available booleanrequired
Show if this keypair has a private key configured or not
private_key_type stringnullablerequired
Get the private key's type, if set
certificate_download_url stringrequired
Get URL to download certificate
private_key_download_url stringrequired
Get URL to download private key
managed Managed by authentik (string)nullablerequired
Objects that are managed by authentik. These objects are created and updated automatically. This flag only indicates that an object can be overwritten by migrations. You can still modify the objects via the API, but expect changes to be overwritten in a later update.
{
"pk": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"name": "string",
"fingerprint_sha256": "string",
"fingerprint_sha1": "string",
"cert_expiry": "2024-09-27T14:26:18.134Z",
"cert_subject": "string",
"private_key_available": true,
"private_key_type": "string",
"certificate_download_url": "string",
"private_key_download_url": "string",
"managed": "string"
}
- application/json
- Schema
- Example (from schema)
Schema
non_field_errors string[]
code string
{
"non_field_errors": [
"string"
],
"code": "string"
}
- application/json
- Schema
- Example (from schema)
Schema
detail stringrequired
code string
{
"detail": "string",
"code": "string"
}
Loading...