REST API
Delete Domains
Add and verify domains using API in bulk
Endpoint
DELETE
https://shootmail.app/api/public/domain
Authorization
Send API key in the header, just the API key, nothing else. Here is how to generate API Key
header: {
'Authorization': 'shootmail-api-key',
'Content-Type': 'application/json'
}
Request
Request body should contain the following params
{
"domains": [
"transact.example.com"
]
}
Response
Response format will confirm to the structure given in response format section.
200 Response
[
{
"data": {
"domain": "transact.example.com",
"deleted": true
},
"error": null,
"status": 200
}
]