Update extra certificate

PUT /platform/configuration/security/extra_certs/{cert_id}

Add or update an extra certificate.

Path parameters

  • cert_id string Required

    The extra certificate Id. For example, star_my_domain_com.

Body Required

Extra certificate bundle

string string

Responses

  • Updates extra certificate under given id

    Additional properties are allowed.

  • Certificate uses unknown cryptographic algorithm. (code: cert.unknown_cert_algorithm)

    Hide headers attribute Show headers attribute
    • The error codes associated with the response

      Value is cert.unknown_cert_algorithm.

    Hide response attribute Show response attribute object
    • errors array[object] Required

      A list of errors that occurred in the failing request

      Hide errors attributes Show errors attributes object
      • code string Required

        A structured code representing the error type that occurred

      • message string Required

        A human readable message describing the error that occurred

      • fields array[string]

        If the error can be tied to a specific field or fields in the user request, this lists those fields

PUT /platform/configuration/security/extra_certs/{cert_id}
curl \
 -X PUT https://{{hostname}}/api/v1/platform/configuration/security/extra_certs/{cert_id} \
 -d '"string"'
Request examples
string
Response examples (200)
{}
Response examples (400)
# Headers
x-cloud-error-codes: cert.unknown_cert_algorithm

# Payload
{
  "errors": [
    {
      "code": "string",
      "message": "string",
      "fields": [
        "string"
      ]
    }
  ]
}