curl --location --request POST 'https://api.inboxkit.com/v1/api/dns/add' \
--header 'X-Workspace-Id;' \
--header 'Content-Type: application/json' \
--data-raw '{
"records": [
{
"host": "@",
"type": "A",
"value": "192.0.2.1",
"ttl": 3600,
"priority": 0,
"proxied": false
},
{
"host": "mail",
"type": "MX",
"value": "mail.example.com",
"ttl": 3600,
"priority": 10,
"proxied": false
}
],
"uid": "3340bae3-53c3-4ab8-9c61-1d8205b86c70"
}'
{
"error": false,
"message": "DNS records added successfully",
"added_records": 0,
"dns_records": {
"uid": "string"
},
"records": [
{
"host": "string",
"value": "string",
"ttl": "string",
"type": "string"
}
]
}