Delete extra certificate

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

Delete an extra certificate.

Path parameters

  • cert_id string Required

    The extra certificate Id. For example, star_my_domain_com.

Responses

  • Extra certificate under the given id is deleted if exists

    Additional properties are allowed.

  • The extra certificate cannot be found. (code: cert.not_found)

    Hide headers attribute Show headers attribute
    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

DELETE /platform/configuration/security/extra_certs/{cert_id}
curl \
 -X DELETE https://{{hostname}}/api/v1/platform/configuration/security/extra_certs/{cert_id}
Response examples (200)
{}
Response examples (404)
# Headers
x-cloud-error-codes: cert.not_found

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