deleteCertificate
Delete a certificate.
deleteCertificate(
input: DeleteCertificateInput
): DeleteCertificatePayload!
Example
- Query
- Variables
- Response
mutation ($input: DeleteCertificateInput) {
deleteCertificate(input: $input) {
deleted
}
}
{
"input": {
"certificateId": 42,
"domainName": "example.com"
}
}
{
"data": {
"deleteCertificate": {
"deleted": true
}
}
}
Arguments
deleteCertificate.input ● DeleteCertificateInput input common
The certificate to delete.
Type
DeleteCertificatePayload object common
The result of deleting a certificate.