dns-records.read_write
- DNS Records Read & WriteAuthorization: Bearer ********************
type = MX
{
"type": "MX",
"name": "blog",
"value": "blog.yourwebsite.com",
"priority": 0
}
curl --location --request POST 'https://api.salla.dev/admin/v2/dns-records' \
--header 'Content-Type: application/json' \
--data-raw '{
"type": "MX",
"name": "blog",
"value": "blog.yourwebsite.com",
"priority": 0
}'
type = MX
.{
"status": 200,
"success": true,
"data": {
"id": 358857001,
"type": "MX",
"name": "blog",
"content": "blog.yourwebsite.com",
"priority": 0
}
}