List DNS Records
GET
/dns-recordsThis endpoint allows you to retrieve all of the DNS records, such as A, CNAME, MX, and TXT records.
:::info
You can manage DNS records for a Salla store via the API using this endpoint.
:::
Request
Request samples
[api.label.responses]
Response status code, a numeric or alphanumeric identifier used to convey the outcome or status of a request, operation, or transaction in various systems and applications, typically indicating whether the action was successful, encountered an error, or resulted in a specific condition.
Response flag, boolean indicator used to signal a particular condition or state in the response of a system or application, often representing the presence or absence of certain conditions or outcomes.
A unique identifier for the DNS record within the DNS record.
Indicates the type of DNS record, such as A, CNAME, MX, or TXT.
Specifies the domain or subdomain to which the DNS record applies.
Contains the value associated with the DNS record. This could be an IP address for an A record, a domain name for a CNAME record, or other information depending on the record type.
This is typically used for MX records to specify the order in which mail servers should be tried. Available if type = MX
.
{
"status": 200,
"success": true,
"data": [
{
"id": 1773697839,
"type": "A",
"name": "Test 1",
"content": "192.1.1.1"
},
{
"id": 998677032,
"type": "CNAME",
"name": "Test Blog",
"content": "blog.yourwebsite.com"
},
{
"id": 358857001,
"type": "MX",
"name": "Test Security",
"content": "security.yourwebsite.com",
"priority": 1
}
]
}