Delete a Certificate

delete

/ic/api/integration/v1/certificates/{id}

Deletes the certificate with the specified ID.

Request

Path Parameters
  • Certificate composite identifier. The ID consists of the installedType, type, category and the name separated by the | (vertical line) character. Format: installedType%7Ctype%7Ccategory%7Cname. Example: USER%7CPGP%7CPUBLIC%7CTESTPGPPUBLICCERT. When using cURL, substitute the %7C code for the vertical line.
Query Parameters

There's no request body for this operation.

Back to Top

Response

200 Response

Successful operation

404 Response

Certificate not found

500 Response

Server error
Back to Top

Examples

The following example shows how to delete a certificate by submitting a DELETE request on the REST resource using cURL. For more information about cURL, see Use cURL. For more information about endpoint URL structure, see Send Requests.

Example: Delete PGP Public certificate TESTPGPPUBLICCERT

The id is in the form: installedType%7Ctype%7Ccategory%7Cname. The %7C is the encoded | (vertical line).

curl -X DELETE -H 'Authorization: Bearer access_token' -H "Accept:application/json" https://design.integration.region.ocp.oraclecloud.com/ic/api/integration/v1/certificates/USER%7CPGP%7CPUBLIC%7CTESTPGPPUBLICCERT?integrationInstance=service-instance
Back to Top