Light Mode
Create DNS Record
POST
/dns-recordsLast modified:Â 16 days ago
This endpoint allows you to create DNS records such as A, CNAME, MX, and TXT records.
:::info[Information]
You can manage DNS records for a Salla store via the API using this endpoint.
:::dns-records.read_write
- DNS Records Read & Write
Request
Body Params application/json
No schema defined
Example
{
"type": "MX",
"name": "blog",
"value": "blog.yourwebsite.com",
"priority": 0
}
Request samples
Responses
Success(200)
HTTP Code:Â 200
Content Type :Â JSONapplication/json
Data Schema
No schema defined
Example
{
"status": 200,
"success": true,
"data": {
"id": 358857001,
"type": "MX",
"name": "blog",
"content": "blog.yourwebsite.com",
"priority": 0
}
}
Last modified: 16 days ago