crypto_certificatekeypairs_update
PUT/api/v3//crypto/certificatekeypairs/:kp_uuid/
CertificateKeyPair Viewset
Request
Path Parameters
A UUID string identifying this Certificate-Key Pair.
- application/json
Bodyrequired
Possible values: non-empty
PEM-encoded Certificate data
Possible values: non-empty
Optional Private Key. If this is set, you can use this keypair for encryption.
Responses
- 200
- 400
- 403
- application/json
- Schema
- Example (auto)
Schema
Get certificate Hash (SHA256)
Get certificate Hash (SHA1)
Get certificate expiry
Get certificate subject as full rfc4514
Show if this keypair has a private key configured or not
Get the private key's type, if set
Get URL to download certificate
Get URL to download private key
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-07-29T15:51:28.071Z",
"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 (auto)
Schema
Validation Error
{
"non_field_errors": [
"string"
],
"code": "string"
}
- application/json
- Schema
- Example (auto)
Schema
{
"detail": "string",
"code": "string"
}
Authorization: http
name: authentiktype: httpscheme: bearer
- csharp
- curl
- dart
- go
- http
- java
- javascript
- kotlin
- c
- nodejs
- objective-c
- ocaml
- php
- powershell
- python
- r
- ruby
- rust
- shell
- swift
- HTTPCLIENT
- RESTSHARP
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Put, "/api/v3/crypto/certificatekeypairs/:kp_uuid/");
request.Headers.Add("Accept", "application/json");
request.Headers.Add("Authorization", "Bearer <token>");
var content = new StringContent("{\n \"name\": \"string\",\n \"certificate_data\": \"string\",\n \"key_data\": \"string\"\n}", null, "application/json");
request.Content = content;
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());