curl --location --request POST 'https://api.inboxkit.com/v1/api/dns/update' \
--header 'X-Workspace-Id;' \
--header 'Content-Type: application/json' \
--data-raw '{
"records": [
{
"record_id": "existing_record_objectid",
"host": "@",
"type": "A",
"value": "203.0.113.5",
"ttl": 3600,
"priority": 0,
"proxied": true
},
{
"record_id": "another_record_objectid",
"host": "mail",
"type": "MX",
"value": "mail.example.com",
"ttl": 3600,
"priority": 5,
"proxied": false
}
],
"uid": "3340bae3-53c3-4ab8-9c61-1d8205b86c70"
}'