<div dir="ltr">Dear All.<br><br>I'm trying to playing with PDNS API.<br><br>I try to create new zone.<br><br>The json payload is :<br>```<br>{<br>    "name": "domain07.bino.",<br>    "kind": "Native",<br>    "records": [<br>        {<br>            "content": "ns1.cpaneldev.bino. emailserver.bino. 2024040101 3600 1800 1209600 86400",<br>            "ttl": 86400,<br>            "name": "domain07.bino",<br>            "type": "SOA"<br>        }<br>    ],<br>}<br>```<br><br>I post it to '<a href="http://127.0.0.1:9530/api/v1/servers/localhost/zones">http://127.0.0.1:9530/api/v1/servers/localhost/zones</a>'<br>Got http status of 201.<br><br>But when I check directly to mysql backend, I got :<br>```<br>mysql> select * from records where domain_id = 41244;<br>+---------+-----------+---------------+------+-----------------------------------------------------------------------------------------------+------+------+----------+-----------+------+<br>| id      | domain_id | name          | type | content                                                                                       | ttl  | prio | disabled | ordername | auth |<br>+---------+-----------+---------------+------+-----------------------------------------------------------------------------------------------+------+------+----------+-----------+------+<br>| 1065344 |     41244 | domain07.bino | SOA  | a.misconfigured.dns.server.invalid hostmaster.domain07.bino 2024040101 10800 3600 604800 3600 | 3600 |    0 |        0 | NULL      |    1 |<br>+---------+-----------+---------------+------+-----------------------------------------------------------------------------------------------+------+------+----------+-----------+------+<br>1 row in set (0,00 sec)<br><br>```<br><br>Kindly please tell me how to prepare proper json payload to create zone via pdns API<br><br>regards   <br>-bino-<br><br><br><br><br></div>