v1

latestOpenAPI 3.1.12026-07-17111158225.7 KB
domain dnssec

List delegation signer records

Lists the DS records for the domain.

get/{account}/domains/{domain}/ds_records

Path parameters

accountinteger required

The account id

domainstring required

The domain name or id

Query parameters

sort'id:asc' | 'id:desc' | 'created_at:asc' | 'created_at:desc'

Sort results. Default sorting is by id.

Response

Successfully retrieved delegation signer list

Example response

{
  "data": [
    {
      "id": 24,
      "domain_id": 1010,
      "algorithm": "8",
      "digest": "C1F6E04A5A61FBF65BF9DC8294C363CF11C89E802D926BDAB79C55D27BEFA94F",
      "digest_type": "2",
      "keytag": "44620",
      "public_key": null,
      "created_at": "2017-03-03T13:49:58.000Z",
      "updated_at": "2017-03-03T13:49:58.000Z"
    }
  ],
  "pagination": {
    "current_page": 1,
    "per_page": 30,
    "total_entries": 2,
    "total_pages": 1
  }
}