# Uninstall
Uninstall SSL certificate of the application.
# HTTP Request:
DELETE https://api.serveravatar.com/organizations/{organization}/servers/{server}/applications/{application}/ssl
# Curl Request example:
curl --request DELETE \
--url "https://api.serveravatar.com/organizations/{organization}/servers/{server}/applications/{application}/ssl" \
--header 'content-type: application/json' \
--header 'Authorization: <YOUR API TOKEN>'
# Response:
# SSL Unistall
- 200 (Ok)
{
"message": "SSL Certificate has been successfully removed!"
}
# Organization Not Found
- 404 (Not Found)
{
"message": "Organization not found!"
}
# Application Not Found
- 404 (Not Found)
{
"message":"Application not found!"
}
# Server Not Found
- 404 (Not Found)
{
"message":"Server not found!"
}
# Server Error
- 500 (Internal Server Error)
{
"message": "Something went really wrong!"
}
← Stop Force Http List →