Light Mode
List DNS Records
GET
/dns-recordsLast modified: 10 days ago
This 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
Responses
Success(200)
Unauthorized(401)
HTTP Code: 200
Content Type : JSONapplication/json
Data Schema
status
number
optional
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.
success
boolean
optional
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.
data
$ref(#/definitions/1307442)[]
optional
#/definitions/1307442
optional
Example
{
"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
}
]
}
Last modified: 10 days ago