List all orders.
Name | Data Type | Status | Description |
auth-id | Integer | Required | Authentication parameter |
auth-password | String | Required | Authentication parameter |
rows-per-page | Integer | Required | Results per page. Can be 10, 20, 30, 50 or 100 |
page | Integer | Required | The page number you want to check |
When the authentication of the API user is not correct, the API request will fail with the following status and statusDescription:
{"status":"Failed","statusDescription": "Invalid authentication, incorrect user ID or password."}
When an invalid value for "rows-per-page" is added or is missing, the following status will be returned:
{"status":"Failed","statusDescription": "Wrong or missing required parameter 'rows-per-page'."}
When an invalid value for "page" is added or is missing, the following status will be returned:
{"status":"Failed","statusDescription": "Missing or invalid required parameter 'page'."}
Note: These are example errors in JSON format.
Example
URL JSON: https://api.cloudns.net/orders/list.json
Domain POST/GET: auth-id=0&auth-password=password&rows-per-page=10&page=1URL XML: https://api.cloudns.net/orders/list.xml
Domain POST/GET: auth-id=0&auth-password=password&rows-per-page=10&page=1