- Clone all 5 Zonemaster component repos (LDNS, Engine, CLI, Backend, GUI) - Dockerfile.backend: 8-stage multi-stage build LDNS→Engine→CLI→Backend - Dockerfile.gui: Astro static build served via nginx - docker-compose.yml: backend (internal) + frontend (port 5353) - nginx.conf: root redirects to /es/, /api/ proxied to backend - zonemaster-gui/config.ts: defaultLanguage set to 'es' (Spanish) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1582 lines
42 KiB
Markdown
1582 lines
42 KiB
Markdown
# API
|
|
|
|
## Table of contents
|
|
|
|
* [Purpose](#purpose)
|
|
* [Protocol](#protocol)
|
|
* [Deviations from JSON-RPC 2.0](#deviations-from-json-rpc-20)
|
|
* [Notes on the JSON-RPC 2.0 implementation](#notes-on-the-json-rpc-20-implementation)
|
|
* [Request handling](#request-handling)
|
|
* [Error reporting](#error-reporting)
|
|
* [Privilege levels](#privilege-levels)
|
|
* [Data types](#data-types)
|
|
* [API key](#api-key)
|
|
* [Batch id](#batch-id)
|
|
* [Client id](#client-id)
|
|
* [Client version](#client-version)
|
|
* [Domain name](#domain-name)
|
|
* [DS info](#ds-info)
|
|
* [IP address](#ip-address)
|
|
* [Language tag](#language-tag)
|
|
* [Name server](#name-server)
|
|
* [Non-negative integer](#non-negative-integer)
|
|
* [Priority](#priority)
|
|
* [Profile name](#profile-name)
|
|
* [Progress percentage](#progress-percentage)
|
|
* [Queue](#queue)
|
|
* [Severity level](#severity-level)
|
|
* [Test id](#test-id)
|
|
* [Test result](#test-result)
|
|
* [Timestamp](#timestamp)
|
|
* [Username](#username)
|
|
* [API methods](#api-methods)
|
|
* [API method: version_info](#api-method-version_info)
|
|
* [API method: profile_names](#api-method-profile_names)
|
|
* [API method: get_language_tags](#api-method-get_language_tags)
|
|
* [API method: get_host_by_name](#api-method-get_host_by_name)
|
|
* [API method: get_data_from_parent_zone](#api-method-get_data_from_parent_zone)
|
|
* [API method: start_domain_test](#api-method-start_domain_test)
|
|
* [API method: test_progress](#api-method-test_progress)
|
|
* [API method: get_test_results](#api-method-get_test_results)
|
|
* [API method: get_test_params](#api-method-get_test_params)
|
|
* [API method: get_test_history](#api-method-get_test_history)
|
|
* [Undelegated and delegated](#undelegated-and-delegated)
|
|
* [API method: add_api_user](#api-method-add_api_user)
|
|
* [API method: add_batch_job](#api-method-add_batch_job)
|
|
* [API method: batch_status](#api-method-batch_status)
|
|
* [Experimental API methods](#experimental-api-methods)
|
|
|
|
## Purpose
|
|
|
|
This document describes the JSON-RPC API provided by the Zonemaster *RPC API daemon*.
|
|
This API provides means to check the health of domains and to fetch domain health reports.
|
|
Health checks are called *tests* in Zonemaster lingo.
|
|
|
|
|
|
## Protocol
|
|
|
|
This API is implemented using [JSON-RPC 2.0].
|
|
|
|
JSON-RPC request objects are accepted in the body of HTTP POST requests to any path.
|
|
The HTTP request must contain the header `Content-Type: application/json`.
|
|
|
|
All JSON-RPC request and response objects have the keys `"jsonrpc"`, `"id"` and `"method"`.
|
|
For details on these, refer to the [JSON-RPC 2.0] specification.
|
|
|
|
|
|
### Deviations from JSON-RPC 2.0
|
|
|
|
* The `"jsonrpc"` property is not checked.
|
|
* The error code -32603 is used for invalid arguments, as opposed to the dedicated error code -32602.
|
|
* When standard error codes are used, the accompanying messages are not the standard ones.
|
|
|
|
|
|
### Notes on the JSON-RPC 2.0 implementation
|
|
|
|
* Extra top-level properties in request objects are allowed but ignored.
|
|
* No extra properties are allowed in the `"params"` object.
|
|
* Error messages from the API should be considered sensitive as they sometimes leak details about the internals of the application and the system.
|
|
* The error code -32601 is used when the `"method"` property is missing, rather than the perhaps expected error code -32600.
|
|
|
|
|
|
## Request handling
|
|
|
|
When a method expects a string argument but receives an array or an object,
|
|
the value may be interpreted as something like `"ARRAY(0x1a2d1d0)"` or `"HASH(0x1a2d2c8)"`.
|
|
|
|
When a method expects a boolean argument, any kind of value is accepted.
|
|
A number of values are interpreted as false: `false`, `null`, `""`, `"0"` and any number equal to zero.
|
|
Everything else is interpreted as true.
|
|
|
|
When a method expects an integer arguments, numbers encoded in strings are also accepted and used transparently,
|
|
and numbers with fractions are rounded to the nearest integer.
|
|
|
|
For details on when a *test* are performed after it's been requested,
|
|
see the [architecture documentation].
|
|
|
|
|
|
## Error reporting
|
|
|
|
If the request object is invalid JSON, an error with code `-32700` is reported.
|
|
|
|
If no method is specified or an invalid method is specified, an error with code `-32601` is reported.
|
|
|
|
If no `params` object is specified when it is required, or the `params` object
|
|
for the specified method is invalid, an error with code `-32602` is reported.
|
|
For more information on the validation error data format see
|
|
[Validation error data].
|
|
|
|
All error states that occur after the RPC method has been identified are reported as internal errors with code `-32603`.
|
|
|
|
|
|
## Privilege levels
|
|
|
|
This API provides three classes of methods:
|
|
|
|
* *Unrestricted* methods are available to anyone with access to the API.
|
|
* *Authenticated* methods have parameters for [*username*][Username] and [*api key*][API key]
|
|
credentials.
|
|
* *Administrative* methods require that the connection to the API is opened from
|
|
localhost (`127.0.0.1` or `::1`).
|
|
|
|
|
|
## Data types
|
|
|
|
This sections describes a number of data types used in this API. Each data type
|
|
is based on a JSON data type, but additionally imposes its own restrictions.
|
|
|
|
|
|
### API key
|
|
|
|
Basic data type: string
|
|
|
|
A string of alphanumerics, hyphens (`-`) and underscores (`_`), of at least 1
|
|
and at most 512 characters.
|
|
I.e. a string matching `/^[a-zA-Z0-9-_]{1,512}$/`.
|
|
|
|
Represents the password of an authenticated account (see *[Privilege levels]*)
|
|
|
|
|
|
### Batch id
|
|
|
|
Basic data type: number
|
|
|
|
A strictly positive integer.
|
|
|
|
The unique id of a *batch*.
|
|
|
|
|
|
### Client id
|
|
|
|
Basic data type: string
|
|
|
|
A string of alphanumerics, hyphens, underscores, pluses (`+`), tildes (`~`),
|
|
full stops (`.`), colons (`:`) and spaces (` `), of at least 1 and at most 50
|
|
characters.
|
|
I.e. a string matching `/^[a-zA-Z0-9-+~_.: ]{1,50}$/`.
|
|
|
|
Represents the name of the client.
|
|
Used for monitoring which client (GUI) uses the API.
|
|
|
|
|
|
### Client version
|
|
|
|
Basic data type: string
|
|
|
|
A string of alphanumerics, hyphens, pluses, tildes, underscores, full stops,
|
|
colons and spaces, of at least 1 and at most 50 characters.
|
|
I.e. a string matching `/^[a-zA-Z0-9-+~_.: ]{1,50}$/`.
|
|
|
|
Represents the version of the client.
|
|
Used for monitoring which client (GUI) uses the API.
|
|
|
|
|
|
### Domain name
|
|
|
|
Basic data type: string
|
|
|
|
1. If the string is a single character, that character must be `.`.
|
|
|
|
2. The length of the string must not be greater than 254 characters.
|
|
|
|
3. When the string is split at `.` characters (after IDNA conversion,
|
|
if needed), each component part must be at most 63 characters long.
|
|
|
|
> Note: Currently there are no restrictions on what characters that are allowed.
|
|
|
|
|
|
### DS info
|
|
|
|
Basic data type: object
|
|
|
|
DS for [Delegation Signer] references a DNSKEY record in the delegated zone.
|
|
|
|
Properties:
|
|
* `"digest"`: A string, required. Either 40, 64 or 96 hexadecimal characters (case-insensitive).
|
|
* `"algorithm"`: An non negative integer, required.
|
|
* `"digtype"`: An non negative integer, required.
|
|
* `"keytag"`: An non negative integer, required.
|
|
|
|
|
|
### IP address
|
|
|
|
Basic data type: string
|
|
|
|
This parameter is a string that is either
|
|
- a valid IPv4 address in [dot-decimal notation] ;
|
|
- a valid IPv6 address in [recommended text format][RFC 5952] for IPv6 addresses.
|
|
|
|
### Language tag
|
|
|
|
Basic data type: string
|
|
|
|
A string matching `/^[a-z]{2}$/`.
|
|
|
|
The set of valid *language tags* is further constrained by the
|
|
[`LANGUAGE.locale`][LANGUAGE.locale] property.
|
|
A *language tag* needs to match the language code of a *locale tag* in
|
|
[`LANGUAGE.locale`][LANGUAGE.locale].
|
|
|
|
#### Design
|
|
|
|
The *language tag* values are intended to be [ISO 639-1] two-character language
|
|
codes.
|
|
|
|
#### Out-of-the box support
|
|
|
|
A default installation will accept the following *language tags*:
|
|
|
|
Language | Language tag
|
|
---------|-------------
|
|
Danish | da
|
|
English | en
|
|
Spanish | es
|
|
Finnish | fi
|
|
French | fr
|
|
Norwegian| nb
|
|
Slovenian| sl
|
|
Swedish | sv
|
|
|
|
|
|
### Name server
|
|
|
|
Basic data type: object
|
|
|
|
Properties:
|
|
|
|
* `"ns"`: A [*domain name*][Domain name], required.
|
|
* `"ip"`: An [*IP address*][IP address] (IPv4 or IPv6), optional. (default: unset)
|
|
|
|
|
|
### Non-negative integer
|
|
|
|
Basic data type: number (integer)
|
|
|
|
A non-negative integer is either zero or strictly positive.
|
|
|
|
|
|
### Priority
|
|
|
|
Basic data type: number (integer)
|
|
|
|
This parameter is any integer that will be used by The Zonemaster Test Agents to sort the test requests from highest to lowest priority.
|
|
This parameter will typically be used in a setup where a GUI will send requests to the RPC API and would like to get response as soon as possible while at the same time using the idle time for background batch testing.
|
|
The drawback of this setup will be that the GUI will have to wait for at least one background processing slot to become free (would be a few seconds in a typical installation with up to 30 parallel zonemaster processes allowed)
|
|
|
|
### Profile name
|
|
|
|
Basic data type: string
|
|
|
|
This parameter is a case-insensitive string validated with the case-insensitive
|
|
regex `/^[a-z0-9]$|^[a-z0-9][a-z0-9_-]{0,30}[a-z0-9]$/i` which must be predefined
|
|
in the configuration file as specified in the Configuration document
|
|
[profile sections].
|
|
|
|
The name of a *[profile]*.
|
|
|
|
### Progress percentage
|
|
|
|
Basic data type: number (integer)
|
|
|
|
An integer ranging from 0 (not started) to 100 (finished).
|
|
|
|
|
|
### Queue
|
|
|
|
Basic data type: number (integer)
|
|
|
|
This parameter allows an optional separation of testing in the same database. The default value for the queue is 0. It is closely related to the [`ZONEMASTER.lock_on_queue`][ZONEMASTER.lock_on_queue] parameter of the backend_config.ini file.
|
|
The typical use case for this parameter would be a setup with several separate Test Agents running on separate physical or virtual machines each one dedicated to a specific task, for example queue 0 for frontend tests and queue 1 dedicated to batch testing.
|
|
|
|
|
|
### Severity level
|
|
|
|
Basic data type: string
|
|
|
|
One of the strings (in order from least to most severe):
|
|
|
|
* `"INFO"`
|
|
* `"NOTICE"`
|
|
* `"WARNING"`
|
|
* `"ERROR"`
|
|
* `"CRITICAL"`
|
|
|
|
Severity levels in Zonemaster are defined in the [Severity Level Definitions]
|
|
document. The following severity levels are not available through the RPCAPI
|
|
(in order from least to most severe):
|
|
|
|
* DEBUG3
|
|
* DEBUG2
|
|
* DEBUG
|
|
|
|
|
|
### Test id
|
|
|
|
Basic data type: string
|
|
|
|
A string of exactly 16 lower-case hex-digits matching `/^[0-9a-f]{16}$/`.
|
|
|
|
Each *test* has a unique *test id*.
|
|
|
|
|
|
### Test result
|
|
|
|
Basic data type: object
|
|
|
|
The object has four keys, `"module"`, `"message"`, `"level"` and `"testcase"`.
|
|
|
|
* `"module"`: a string. The *test module* that produced the result.
|
|
* `"message"`: a string. A human-readable *message* describing that particular result.
|
|
* `"level"`: a [*severity level*][Severity level]. The severity of the message.
|
|
* `"testcase"`: a string. The *[Test Case Identifier][Test Case Identifiers]* of the *[Test Case][Test Cases]* that produced the result.
|
|
|
|
Sometimes additional keys are present.
|
|
|
|
* `"ns"`: a [*domain name*][Domain name]. The name server used by the *test module*.
|
|
This key is added when the module name is `"NAMESERVER"`.
|
|
|
|
|
|
### Timestamp
|
|
|
|
Basic data type: string
|
|
|
|
A string representing a date and time using the following ISO 8601 format:
|
|
"YYYY-MM-DDThh:mm:ssZ".
|
|
Example: "2017-12-18T07:56:17Z"
|
|
|
|
### Username
|
|
|
|
Basic data type: string
|
|
|
|
A string of alphanumerics, dashes, full stops and at-signs, of at least 1 and at
|
|
most 50 characters.
|
|
I.e. a string matching `/^[a-zA-Z0-9-.@]{1,50}$/`.
|
|
|
|
Represents the name of an authenticated account (see *[Privilege levels]*)
|
|
|
|
### Validation error data
|
|
|
|
Basic data type: array
|
|
|
|
The items of the array are objects with two keys, `"path"` and `"message"`:
|
|
* `"path"`: a string. A [JSON Pointer] to an element in the request's param
|
|
object. E.g.: `"/nameservers/0/ip"`.
|
|
* `"message"`: a string. The error message associated with the element
|
|
referenced by `"path"`.
|
|
|
|
|
|
## API methods
|
|
|
|
### API method: `version_info`
|
|
|
|
Returns the version of the Zonemaster-LDNS, Zonemaster-Engine and Zonemaster-Backend software combination.
|
|
|
|
Example request:
|
|
```json
|
|
{
|
|
"jsonrpc": "2.0",
|
|
"id": 1,
|
|
"method": "version_info"
|
|
}
|
|
```
|
|
|
|
Example response:
|
|
```json
|
|
{
|
|
"jsonrpc": "2.0",
|
|
"id": 1,
|
|
"result": {
|
|
"zonemaster_ldns": "1.0.1",
|
|
"zonemaster_backend": "1.0.7",
|
|
"zonemaster_engine": "v1.0.14"
|
|
}
|
|
}
|
|
```
|
|
|
|
|
|
#### `"result"`
|
|
|
|
An object with the following properties:
|
|
|
|
* `"zonemaster_ldns"`: A string. The version number of the running *Zonemaster LDNS*.
|
|
* `"zonemaster_backend"`: A string. The version number of the running *Zonemaster Backend*.
|
|
* `"zonemaster_engine"`: A string. The version number of the *Zonemaster Engine* used by the *RPC API daemon*.
|
|
|
|
|
|
#### `"error"`
|
|
|
|
>
|
|
> TODO: List all possible error codes and describe what they mean enough for clients to know how react to them.
|
|
>
|
|
|
|
|
|
### API method: `profile_names`
|
|
|
|
Returns the names of the public subset of the
|
|
[available profiles][Profile sections].
|
|
|
|
Example request:
|
|
```json
|
|
{
|
|
"jsonrpc": "2.0",
|
|
"id": 1,
|
|
"method": "profile_names"
|
|
}
|
|
```
|
|
|
|
Example response:
|
|
```json
|
|
{
|
|
"jsonrpc": "2.0",
|
|
"id": 1,
|
|
"result": [
|
|
"default",
|
|
"another-profile"
|
|
]
|
|
}
|
|
```
|
|
|
|
|
|
#### `"result"`
|
|
|
|
An array of [*Profile names*][Profile name] in lower case. `"default"` is always included.
|
|
|
|
|
|
### API method: `get_language_tags`
|
|
|
|
Returns the set of valid [*language tags*][Language tag].
|
|
|
|
Example request:
|
|
```json
|
|
{
|
|
"jsonrpc": "2.0",
|
|
"id": 1,
|
|
"method": "get_language_tags"
|
|
}
|
|
```
|
|
|
|
Example response:
|
|
```json
|
|
{
|
|
"jsonrpc": "2.0",
|
|
"id": 1,
|
|
"result": [
|
|
"da",
|
|
"en",
|
|
"es",
|
|
"fi",
|
|
"fr",
|
|
"nb",
|
|
"sl",
|
|
"sv"
|
|
]
|
|
}
|
|
```
|
|
|
|
|
|
#### `"result"`
|
|
|
|
An array of [*language tags*][Language tag]. It is never empty.
|
|
|
|
|
|
#### `"error"`
|
|
|
|
>
|
|
> TODO: List all possible error codes and describe what they mean enough for
|
|
> clients to know how react to them. Or prevent RPCAPI from starting with
|
|
> errors in the configuration file and make it not to reread the configuration
|
|
> file while running.
|
|
>
|
|
|
|
|
|
### API method: `get_host_by_name`
|
|
|
|
Looks up the A and AAAA records for a hostname ([*domain name*][Domain name]) on the public Internet.
|
|
|
|
Example request:
|
|
|
|
*Valid syntax:*
|
|
```json
|
|
{
|
|
"jsonrpc": "2.0",
|
|
"id": 2,
|
|
"method": "get_host_by_name",
|
|
"params": {"hostname": "zonemaster.net"}
|
|
}
|
|
```
|
|
|
|
Example response:
|
|
```json
|
|
{
|
|
"jsonrpc": "2.0",
|
|
"id": 2,
|
|
"result": [
|
|
{
|
|
"zonemaster.net": "192.134.4.83"
|
|
},
|
|
{
|
|
"zonemaster.net": "2001:67c:2218:3::1:83"
|
|
}
|
|
]
|
|
}
|
|
```
|
|
|
|
|
|
#### `"params"`
|
|
|
|
An object with the property:
|
|
|
|
* `"hostname"`: A [*domain name*][Domain name], required. The hostname whose IP addresses are to be resolved.
|
|
|
|
|
|
#### `"result"`
|
|
|
|
A list of one or two objects representing IP addresses (if 2 one is for IPv4 the
|
|
other for IPv6). The objects each have a single key and value. The key is the
|
|
[*domain name*][Domain name] given as input. The value is an IP address for the name, or the
|
|
value `0.0.0.0` if the lookup returned no A or AAAA records.
|
|
|
|
>
|
|
> TODO: If the name resolves to two or more IPv4 address, how is that represented?
|
|
>
|
|
|
|
|
|
#### `"error"`
|
|
|
|
* If any parameter is invalid an error code of -32602 is returned. The `data` property contains an array of all errors, see [Validation error data].
|
|
|
|
Example of error response:
|
|
|
|
```json
|
|
{
|
|
"jsonrpc": "2.0",
|
|
"id": 1624630143271,
|
|
"error": {
|
|
"message": "Invalid method parameter(s).",
|
|
"code": "-32602",
|
|
"data": [
|
|
{
|
|
"path": "/hostname",
|
|
"message": "Missing property"
|
|
}
|
|
]
|
|
}
|
|
}
|
|
```
|
|
|
|
### API method: `get_data_from_parent_zone`
|
|
|
|
Returns all the NS/IP and DS/DNSKEY/ALGORITHM pairs of the domain from the
|
|
parent zone.
|
|
|
|
Example request:
|
|
*Valid syntax:*
|
|
```json
|
|
{
|
|
"jsonrpc": "2.0",
|
|
"id": 3,
|
|
"method": "get_data_from_parent_zone",
|
|
"params": {"domain": "zonemaster.net"}
|
|
}
|
|
```
|
|
|
|
Example response:
|
|
```json
|
|
{
|
|
"jsonrpc": "2.0",
|
|
"id": 3,
|
|
"result": {
|
|
"ns_list": [
|
|
{
|
|
"ns": "ns.nic.se",
|
|
"ip": "2001:67c:124c:100a::45"
|
|
},
|
|
{
|
|
"ns": "ns.nic.se",
|
|
"ip": "91.226.36.45"
|
|
},
|
|
...
|
|
],
|
|
"ds_list": [
|
|
{
|
|
"algorithm": 5,
|
|
"digtype": 2,
|
|
"keytag": 54636,
|
|
"digest": "cb496a0dcc2dff88c6445b9aafae2c6b46037d6d144e43def9e68ab429c01ac6"
|
|
},
|
|
{
|
|
"keytag": 54636,
|
|
"digest": "fd15b55e0d8ee2b5a8d510ab2b0a95e68a78bd4a",
|
|
"algorithm": 5,
|
|
"digtype": 1
|
|
}
|
|
]
|
|
}
|
|
}
|
|
```
|
|
|
|
>
|
|
> Note: The above example response was abbreviated for brevity to only include
|
|
> the first two elements in each list. Omitted elements are denoted by a `...`
|
|
> symbol.
|
|
>
|
|
|
|
|
|
#### `"params"`
|
|
|
|
An object with the properties:
|
|
|
|
* `"domain"`: A [*domain name*][Domain name], required. The domain whose DNS records are requested.
|
|
* `"language"`: A [*language tag*][Language tag], optional, used for validation error messages
|
|
translation, if not provided messages will be untranslated (in English).
|
|
|
|
#### `"result"`
|
|
|
|
An object with the following properties:
|
|
|
|
* `"ns_list"`: A list of [*name server*][Name server] objects representing the nameservers of the given [*domain name*][Domain name].
|
|
* `"ds_list"`: A list of [*DS info*][DS info] objects representing delegation signer (DS record data) of the given [*domain name*][Domain name].
|
|
|
|
|
|
#### `"error"`
|
|
|
|
* If any parameter is invalid an error code of -32602 is returned. The `data` property contains an array of all errors, see [Validation error data].
|
|
|
|
Example of error response:
|
|
|
|
```json
|
|
{
|
|
"jsonrpc": "2.0",
|
|
"id": 1624630143271,
|
|
"error": {
|
|
"data": [
|
|
{
|
|
"message": "The domain name character(s) are not supported",
|
|
"path": "/domain"
|
|
}
|
|
],
|
|
"code": "-32602",
|
|
"message": "Invalid method parameter(s)."
|
|
}
|
|
}
|
|
```
|
|
|
|
|
|
### API method: `start_domain_test`
|
|
|
|
Enqueues a new *test* and returns the [*test id*][Test id] of the *test*.
|
|
|
|
Example request:
|
|
```json
|
|
{
|
|
"jsonrpc": "2.0",
|
|
"id": 4,
|
|
"method": "start_domain_test",
|
|
"params": {
|
|
"client_id": "Zonemaster Dancer Frontend",
|
|
"domain": "zonemaster.net",
|
|
"profile": "default",
|
|
"client_version": "1.0.1",
|
|
"nameservers": [
|
|
{
|
|
"ip": "2001:67c:124c:2007::45",
|
|
"ns": "ns3.nic.se"
|
|
},
|
|
{
|
|
"ip": "192.93.0.4",
|
|
"ns": "ns2.nic.fr"
|
|
}
|
|
],
|
|
"ds_info": [],
|
|
"ipv6": true,
|
|
"ipv4": true
|
|
}
|
|
}
|
|
```
|
|
|
|
Example response:
|
|
```json
|
|
{
|
|
"jsonrpc": "2.0",
|
|
"id": 4,
|
|
"result": "c45a3f8256c4a155"
|
|
}
|
|
```
|
|
|
|
|
|
#### `"params"`
|
|
|
|
An object with the following properties:
|
|
|
|
* `"domain"`: A [*domain name*][Domain name], required. The zone to test.
|
|
* `"ipv6"`: A boolean, optional. (default: [`net.ipv4`][net.ipv4] profile value). Used to enable or disable testing over IPv4 transport protocol.
|
|
* `"ipv4"`: A boolean, optional. (default: [`net.ipv6`][net.ipv6] profile value). Used to enable or disable testing over IPv6 transport protocol.
|
|
* `"nameservers"`: A list of [*name server*][Name server] objects, optional. (default: `[]`). Used to perform un-delegated test.
|
|
* `"ds_info"`: A list of [*DS info*][DS info] objects, optional. (default: `[]`). Used to perform un-delegated test.
|
|
* `"profile"`: A [*profile name*][profile name], optional. (default:
|
|
`"default"`). Run the tests using the given profile.
|
|
* `"client_id"`: A [*client id*][Client id], optional. (default: unset). Used to monitor which client uses the API.
|
|
* `"client_version"`: A [*client version*][Client version], optional. (default: unset). Used to monitor which client use the API
|
|
* `"priority"`: A [*priority*][Priority], optional. (default: `10`)
|
|
* `"queue"`: A [*queue*][Queue], optional. (default: `0`)
|
|
* `"language"`: A [*language tag*][Language tag], optional, used for validation error messages
|
|
translation, if not provided messages will be untranslated.
|
|
|
|
|
|
#### `"result"`
|
|
|
|
A [*test id*][Test id].
|
|
|
|
If a test has been requested with the same parameters (as listed below) not more
|
|
than "reuse time" ago, then a new request will not trigger a new test. Instead
|
|
the `test id` of the previous test will be returned. The default value of
|
|
"reuse time" is 600 seconds, and can be set by the
|
|
[`ZONEMASTER.age_reuse_previous_test`][ZONEMASTER.age_reuse_previous_test] key
|
|
in the configuration file.
|
|
|
|
The parameters that are compared when to determine if two requests are to be
|
|
considered to be the same are `domain`, `ipv6`, `ipv4`, `nameservers`, `ds_info`
|
|
and `profile`.
|
|
|
|
#### `"error"`
|
|
|
|
* If any parameter is invalid an error code of -32602 is returned.
|
|
The `data` property contains an array of all errors, see [Validation error data].
|
|
|
|
* If the given `profile` is not among the [available profiles][Profile sections],
|
|
a user error is returned, see [profile name section][profile name].
|
|
|
|
Example of error response:
|
|
|
|
```json
|
|
{
|
|
"jsonrpc": "2.0",
|
|
"id": 1,
|
|
"error": {
|
|
"code": "-32602",
|
|
"data": [
|
|
{
|
|
"message": "Expected integer - got string.",
|
|
"path": "/ds_info/0/algorithm"
|
|
},
|
|
{
|
|
"message": "Missing property.",
|
|
"path": "/ds_info/0/digest"
|
|
},
|
|
{
|
|
"path": "/profile",
|
|
"message": "Unknown profile"
|
|
},
|
|
{
|
|
"path": "/domain",
|
|
"message": "The domain name character(s) are not supported"
|
|
},
|
|
{
|
|
"path": "/nameservers/0/ip",
|
|
"message": "Invalid IP address"
|
|
}
|
|
],
|
|
"message": "Invalid method parameter(s)."
|
|
}
|
|
}
|
|
```
|
|
|
|
|
|
|
|
### API method: `test_progress`
|
|
|
|
Reports on the progress of a *test*.
|
|
|
|
Example request:
|
|
|
|
*Valid syntax:*
|
|
```json
|
|
{
|
|
"jsonrpc": "2.0",
|
|
"id": 5,
|
|
"method": "test_progress",
|
|
"params": {"test_id": "c45a3f8256c4a155"}
|
|
}
|
|
```
|
|
|
|
Example response:
|
|
```json
|
|
{
|
|
"jsonrpc": "2.0",
|
|
"id": 5,
|
|
"result": 100
|
|
}
|
|
```
|
|
|
|
|
|
#### `"params"`
|
|
|
|
An object with the property:
|
|
|
|
`"test_id"`: A [*test id*][Test id], required. The *test* to report on.
|
|
|
|
|
|
#### `"result"`
|
|
|
|
A [*progress percentage*][Progress percentage].
|
|
|
|
|
|
#### `"error"`
|
|
|
|
>
|
|
> TODO: List all possible error codes and describe what they mean enough for clients to know how react to them.
|
|
>
|
|
|
|
|
|
### API method: `get_test_results`
|
|
|
|
Return all [*test result*][Test result] objects of a *test*, with *messages* in the requested language as selected by the
|
|
[*language tag*][Language tag].
|
|
|
|
Example request:
|
|
```json
|
|
{
|
|
"jsonrpc": "2.0",
|
|
"id": 6,
|
|
"method": "get_test_results",
|
|
"params": {
|
|
"id": "c45a3f8256c4a155",
|
|
"language": "en"
|
|
}
|
|
}
|
|
```
|
|
|
|
The `id` parameter must match the `result` in the response to a [`start_domain_test`][API start_domain_test]
|
|
call, and that test must have been completed.
|
|
|
|
Example response:
|
|
```json
|
|
{
|
|
"jsonrpc": "2.0",
|
|
"id": 6,
|
|
"result": {
|
|
"created_at": "2016-11-15T11:53:13Z",
|
|
"hash_id": "c45a3f8256c4a155",
|
|
"params": {
|
|
"ds_info": [],
|
|
"client_version": "1.0.1",
|
|
"domain": "zonemaster.net",
|
|
"profile": "default",
|
|
"ipv6": true,
|
|
"nameservers": [
|
|
{
|
|
"ns": "ns3.nic.se",
|
|
"ip": "2001:67c:124c:2007::45"
|
|
},
|
|
{
|
|
"ip": "192.93.0.4",
|
|
"ns": "ns2.nic.fr"
|
|
}
|
|
],
|
|
"ipv4": true,
|
|
"client_id": "Zonemaster Dancer Frontend"
|
|
},
|
|
"testcase_descriptions": {
|
|
"ZONE08": "MX is not an alias",
|
|
"SYNTAX05": "Misuse of '@' character in the SOA RNAME field",
|
|
...
|
|
},
|
|
"results": [
|
|
{
|
|
"module": "SYSTEM",
|
|
"message": "Using version v1.0.14 of the Zonemaster engine.\n",
|
|
"level": "INFO"
|
|
},
|
|
{
|
|
"message": "Configuration was read from DEFAULT CONFIGURATION\n",
|
|
"level": "INFO",
|
|
"module": "SYSTEM"
|
|
},
|
|
...
|
|
]
|
|
}
|
|
}
|
|
```
|
|
|
|
>
|
|
> Note: The above example response was abbreviated for brevity to only include
|
|
> the first two elements in each list. Omitted elements are denoted by a `...`
|
|
> symbol.
|
|
>
|
|
|
|
|
|
#### `"params"`
|
|
|
|
An object with the following properties:
|
|
|
|
* `"id"`: A [*test id*][Test id], required.
|
|
* `"language"`: A [*language tag*][Language tag], required.
|
|
|
|
|
|
#### `"result"`
|
|
|
|
An object with the following properties:
|
|
|
|
* `"created_at"`: A [*timestamp*][Timestamp]. The time in UTC at which the *test*
|
|
was created.
|
|
* `"hash_id"`: A [*test id*][Test id]. The *test* in question.
|
|
* `"params"`: See below.
|
|
* `"results"`: A list of [*test result*][Test result] objects.
|
|
* `"testcase_descriptions"`: A map with the *[Test Case Identifiers]* as keys and the
|
|
translated *Test Case Description* of the corresponding *[Test Cases]* as values.
|
|
|
|
If the test was created by [`start_domain_test`][API start_domain_test] then `"params"`
|
|
is a normalized version `"params"` object sent to [`start_domain_test`][API start_domain_test]
|
|
when the *test* was created.
|
|
|
|
If the test was created with [`add_batch_job`][API add_batch_job] then `"params"`
|
|
is a normalized version of an object created from the following parts:
|
|
* The keys from the`"test_params"` object sent to [`add_batch_job`][API add_batch_job]
|
|
when the *test* was created as part of a batch.
|
|
* The `"domain"` key holding the specific [*domain name*][Domain name] for this
|
|
test result from the `"domains"` object included in the call to
|
|
[`add_batch_job`][API add_batch_job].
|
|
|
|
>
|
|
> TODO: Change name in the API of `"hash_id"` to `"test_id"`
|
|
>
|
|
|
|
|
|
#### `"error"`
|
|
|
|
>
|
|
> TODO: List all possible error codes and describe what they mean enough for clients to know how react to them.
|
|
>
|
|
|
|
|
|
### API method: `get_test_params`
|
|
|
|
Return a normalized *params* objects of a *test*.
|
|
|
|
Example request:
|
|
|
|
*Valid syntax:*
|
|
```json
|
|
{
|
|
"jsonrpc": "2.0",
|
|
"id": 143014426992009,
|
|
"method": "get_test_params",
|
|
"params": {"test_id": "6814584dc820354a"}
|
|
}
|
|
```
|
|
|
|
Example response:
|
|
```json
|
|
{
|
|
"jsonrpc": "2.0",
|
|
"id": 143014426992009,
|
|
"result": {
|
|
"domain": "zonemaster.net",
|
|
"profile": "default",
|
|
"client_id": "Zonemaster Dancer Frontend",
|
|
"nameservers": [
|
|
{
|
|
"ns": "ns3.nic.se",
|
|
"ip": "2001:67c:124c:2007::45"
|
|
},
|
|
{
|
|
"ip": "192.93.0.4",
|
|
"ns": "ns2.nic.fr"
|
|
}
|
|
],
|
|
"ipv4": true,
|
|
"ipv6": true,
|
|
"client_version": "1.0.1",
|
|
"ds_info": []
|
|
}
|
|
}
|
|
```
|
|
|
|
|
|
#### `"params"`
|
|
|
|
An object with the property:
|
|
|
|
* `"test_id"`: A [*test id*][Test id], required.
|
|
|
|
|
|
#### `"result"`
|
|
|
|
The `"params"` object sent to [`start_domain_test`][API start_domain_test] or
|
|
[`add_batch_job`][API add_batch_job] when the *test* was started.
|
|
|
|
|
|
#### `"error"`
|
|
|
|
>
|
|
> TODO: List all possible error codes and describe what they mean enough for clients to know how react to them.
|
|
>
|
|
|
|
|
|
### API method: `get_test_history`
|
|
|
|
Returns a list of completed *tests* for a domain.
|
|
|
|
Example request:
|
|
```json
|
|
{
|
|
"jsonrpc": "2.0",
|
|
"id": 7,
|
|
"method": "get_test_history",
|
|
"params": {
|
|
"offset": 0,
|
|
"limit": 200,
|
|
"filter": "all",
|
|
"frontend_params": {
|
|
"domain": "zonemaster.net"
|
|
}
|
|
}
|
|
}
|
|
```
|
|
|
|
Example response:
|
|
```json
|
|
{
|
|
"jsonrpc": "2.0",
|
|
"id": 7,
|
|
"result": [
|
|
{
|
|
"id": "c45a3f8256c4a155",
|
|
"creation_time": "2016-11-15 11:53:13.965982",
|
|
"created_at": "2016-11-15T11:53:13Z",
|
|
"undelegated": true,
|
|
"overall_result": "error"
|
|
},
|
|
{
|
|
"id": "32dd4bc0582b6bf9",
|
|
"undelegated": false,
|
|
"creation_time": "2016-11-14 08:46:41.532047",
|
|
"created_at": "2016-11-14T08:46:41Z",
|
|
"overall_result": "error"
|
|
},
|
|
...
|
|
]
|
|
}
|
|
```
|
|
|
|
>
|
|
> Note: The above example response was abbreviated for brevity to only include
|
|
> the first two elements in each list. Omitted elements are denoted by a `...`
|
|
> symbol.
|
|
>
|
|
|
|
### Undelegated and delegated
|
|
|
|
A test is considered to be `"delegated"` below if the test was started, by
|
|
[`start_domain_test`][API start_domain_test] or [`add_batch_job`][API add_batch_job]
|
|
without specifying neither `"nameserver"` nor `"ds_info"`. Else it is considered to
|
|
be `"undelegated"`.
|
|
|
|
#### `"params"`
|
|
|
|
An object with the following properties:
|
|
|
|
* `"offset"`: A [*non-negative integer*][Non-negative integer], optional. (default: 0). Position of the first returned element from the database returned list.
|
|
* `"limit"`: A [*non-negative integer*][Non-negative integer], optional. (default: 200). Number of element returned from the *offset* element.
|
|
* `"filter"`: A string, one of `"all"`, `"delegated"` and `"undelegated"`, optional. (default: `"all"`)
|
|
* `"frontend_params"`: An object, required.
|
|
|
|
The value of "frontend_params" is an object with the following properties:
|
|
|
|
* `"domain"`: A [*domain name*][Domain name], required.
|
|
|
|
|
|
#### `"result"`
|
|
|
|
An object with the following properties:
|
|
|
|
* `"id"` A *test id*.
|
|
* `"created_at"`: A [*timestamp*][Timestamp]. The time in UTC at which the *test*
|
|
was created.
|
|
* `"overall_result"`: A string. It reflects the most severe problem level among
|
|
the test results for the test. It has one of the following values:
|
|
* `"ok"`, if there are only messages with [*severity level*][Severity level] `"INFO"` or
|
|
`"NOTICE"`.
|
|
* `"warning"`, if there is at least one message with [*severity level*][Severity level]
|
|
`"WARNING"`, but none with `"ERROR"` or `"CRITICAL"`.
|
|
* `"error"`, if there is at least one message with [*severity level*][Severity level]
|
|
`"ERROR"`, but none with `"CRITICAL"`.
|
|
* `"critical"`, if there is at least one message with [*severity level*][Severity level]
|
|
`"CRITICAL"`.
|
|
* `"undelegated"`: `true` if the test is undelegated, `false` otherwise.
|
|
|
|
#### `"error"`
|
|
|
|
>
|
|
> TODO: List all possible error codes and describe what they mean enough for clients to know how react to them.
|
|
>
|
|
|
|
|
|
### API method: `add_api_user`
|
|
|
|
In order to use the [`add_batch_job`][API add_batch_job] method a
|
|
[*username*][Username] and its [*api key*][Api key] must be added by this method.
|
|
|
|
This method is not available if [`RPCAPI.enable_add_api_user`][RPCAPI.enable_add_api_user]
|
|
is disabled (disabled by default). This method is not available unless the connection to
|
|
RPCAPI is over localhost (*administrative* method).
|
|
|
|
|
|
Example request:
|
|
```json
|
|
{
|
|
"jsonrpc": "2.0",
|
|
"id": 4711,
|
|
"method": "add_api_user",
|
|
"params": {
|
|
"username": "citron",
|
|
"api_key": "fromage"
|
|
}
|
|
}
|
|
```
|
|
|
|
Example response:
|
|
```json
|
|
{
|
|
"jsonrpc": "2.0",
|
|
"id": 4711,
|
|
"result": 1
|
|
}
|
|
```
|
|
|
|
|
|
#### `"params"`
|
|
|
|
An object with the following properties:
|
|
|
|
* `"username"`: A [*username*][Username], required. The [*username*][Username] to be added.
|
|
* `"api_key"`: An [*api key*][Api key], required. The [*api key*][Api key] for the [*username*][Username] to be
|
|
added.
|
|
|
|
|
|
#### `"result"`
|
|
|
|
An integer. The value is equal to 1 if the registration is a success, or 0 if it failed.
|
|
|
|
|
|
#### `"error"`
|
|
|
|
>
|
|
> TODO: List all possible error codes and describe what they mean enough for clients to know how react to them.
|
|
>
|
|
|
|
Trying to add a already existing user:
|
|
```json
|
|
{
|
|
"jsonrpc": "2.0",
|
|
"id": 1,
|
|
"error": {
|
|
"data": {
|
|
"username": "citron"
|
|
},
|
|
"message": "User already exists",
|
|
"code": -32603
|
|
}
|
|
}
|
|
```
|
|
|
|
Omitting params:
|
|
```json
|
|
{
|
|
"jsonrpc": "2.0",
|
|
"id": 1,
|
|
"error": {
|
|
"code": "-32602",
|
|
"message": "Invalid method parameter(s).",
|
|
"data": [
|
|
{
|
|
"message": "Expected string - got null.",
|
|
"path": "/api_key"
|
|
}
|
|
]
|
|
}
|
|
}
|
|
```
|
|
|
|
```json
|
|
{
|
|
"jsonrpc": "2.0",
|
|
"id": 1,
|
|
"error": {
|
|
"data": [
|
|
{
|
|
"path": "/username",
|
|
"message": "Expected string - got null."
|
|
}
|
|
],
|
|
"message": "Invalid method parameter(s).",
|
|
"code": "-32602"
|
|
}
|
|
}
|
|
```
|
|
|
|
Trying to add a user over non-localhost:
|
|
```json
|
|
{
|
|
"jsonrpc": "2.0",
|
|
"id": 1,
|
|
"error": {
|
|
"code": -32603,
|
|
"data": {
|
|
"remote_ip": "10.0.0.1"
|
|
},
|
|
"message": "Call to \"add_api_user\" method not permitted from a remote IP"
|
|
}
|
|
}
|
|
```
|
|
|
|
Trying to add a user when the method is disabled:
|
|
```json
|
|
{
|
|
"error": {
|
|
"code": -32601,
|
|
"message": "Procedure 'add_api_user' not found"
|
|
}
|
|
}
|
|
```
|
|
|
|
### API method: `add_batch_job`
|
|
|
|
Add a new *batch test* composed by a set of [*domain name*][Domain name] and a *params* object.
|
|
All the domains will be tested using identical parameters.
|
|
|
|
This method is not available if [`RPCAPI.enable_add_batch_job`][RPCAPI.enable_add_batch_job]
|
|
is disabled (enabled by default).
|
|
|
|
A [*username*][Username] and its [*api key*][Api key] can be added with the
|
|
[`add_api_user`][API add_api_user] method.
|
|
|
|
*Tests* enqueued using this method are assigned a [*priority*][Priority] of 5.
|
|
|
|
> In previous versions of Zonemaster-Backend a new batch could not be created by
|
|
> the same [*username*][Username] if that *username* had created a batch that was
|
|
> not yet finished. That restriction has been removed in version 2023.2.
|
|
|
|
|
|
Example request:
|
|
```json
|
|
{
|
|
"jsonrpc": "2.0",
|
|
"id": 147559211348450,
|
|
"method": "add_batch_job",
|
|
"params" : {
|
|
"api_key": "fromage",
|
|
"username": "citron",
|
|
"test_params": {},
|
|
"domains": [
|
|
"zonemaster.net",
|
|
"domain1.se",
|
|
"domain2.fr"
|
|
]
|
|
}
|
|
}
|
|
```
|
|
|
|
Example response:
|
|
```json
|
|
{
|
|
"jsonrpc": "2.0",
|
|
"id": 147559211348450,
|
|
"result": 8
|
|
}
|
|
```
|
|
|
|
|
|
#### `"params"`
|
|
|
|
An object with the following properties:
|
|
|
|
* `"username"`: A [*username*][Username], required. The name of the account of an authorized user.
|
|
* `"api_key"`: An [*api key*][Api key], required. The api_key associated with the username.
|
|
* `"domains"`: A list of [*domain names*][Domain name], required. The domains to be tested.
|
|
* `"test_params"`: As described below, optional. (default: `{}`)
|
|
|
|
The value of `"test_params"` is an object with the following properties:
|
|
|
|
* `"client_id"`: A [*client id*][Client id], optional. (default: unset)
|
|
* `"profile"`: A [*profile name*][profile name], optional (default:
|
|
`"default"`). Run the tests using the given profile.
|
|
* `"client_version"`: A [*client version*][Client version], optional. (default: unset)
|
|
* `"nameservers"`: A list of [*name server*][Name server] objects, optional. (default: `[]`)
|
|
* `"ds_info"`: A list of [*DS info*][DS info] objects, optional. (default: `[]`)
|
|
* `"ipv4"`: A boolean, optional. (default: [`net.ipv4`][net.ipv4] profile value).
|
|
* `"ipv6"`: A boolean, optional. (default: [`net.ipv6`][net.ipv6] profile value).
|
|
* `"priority"`: A [*priority*][Priority], optional. (default: `5`)
|
|
* `"queue"`: A [*queue*][Queue], optional. (default: `0`)
|
|
|
|
|
|
#### `"result"`
|
|
|
|
A [*batch id*][Batch id].
|
|
|
|
|
|
#### `"error"`
|
|
|
|
If the given `profile` is not among the [available profiles][Profile sections], a
|
|
user error is returned, see the [profile name section][profile name].
|
|
|
|
Trying to add a batch when wrong [*username*][Username] or [*api key*][Api key] is used:
|
|
```json
|
|
{
|
|
"jsonrpc": "2.0",
|
|
"id": 1,
|
|
"error": {
|
|
"message": "User not authorized to use batch mode",
|
|
"code": -32603,
|
|
"data": {
|
|
"username": "citron"
|
|
}
|
|
}
|
|
}
|
|
```
|
|
|
|
Trying to add a batch with an empty list of domains:
|
|
|
|
```json
|
|
{
|
|
"jsonrpc": "2.0",
|
|
"id": 1,
|
|
"error": {
|
|
"data": [
|
|
{
|
|
"message": "Not enough items: 0/1.",
|
|
"path": "/domains"
|
|
}
|
|
],
|
|
"message": "Invalid method parameter(s).",
|
|
"code": "-32602"
|
|
}
|
|
}
|
|
```
|
|
|
|
Trying to add a batch when the method has been disabled.
|
|
```
|
|
{
|
|
"error": {
|
|
"message": "Procedure 'add_batch_job' not found",
|
|
"code": -32601
|
|
}
|
|
}
|
|
```
|
|
|
|
### API method: `batch_status`
|
|
|
|
Returns the number of waiting, running and finished *tests*. Optionally it also
|
|
returns the [*test ids*][Test id] of the *batch test*, in three different lists
|
|
(waiting, running, finished). Only non-empty lists are included.
|
|
|
|
Example valid request and response, respectively, where no [*test ids*][Test id]
|
|
were requested:
|
|
|
|
```json
|
|
{
|
|
"jsonrpc": "2.0",
|
|
"id": 147559211994909,
|
|
"method": "batch_status",
|
|
"params": {
|
|
"batch_id": "8"
|
|
}
|
|
}
|
|
```
|
|
|
|
```json
|
|
{
|
|
"jsonrpc": "2.0",
|
|
"id": 147559211994909,
|
|
"result": {
|
|
"finished_count": 5,
|
|
"running_count": 5,
|
|
"waiting_count": 195
|
|
}
|
|
}
|
|
```
|
|
|
|
Example valid request where [*test ids*][Test id] were requested for
|
|
all three status values:
|
|
|
|
```json
|
|
{
|
|
"jsonrpc": "2.0",
|
|
"id": 147559211994909,
|
|
"method": "batch_status",
|
|
"params": {
|
|
"batch_id": "8",
|
|
"list_running_tests": true,
|
|
"list_finished_tests": true,
|
|
"list_waiting_tests": true
|
|
}
|
|
}
|
|
```
|
|
|
|
Example valid response where finished [*test id*][Test id] objects were
|
|
requested but none existed:
|
|
|
|
```json
|
|
{
|
|
"jsonrpc": "2.0",
|
|
"id": 147559211994909,
|
|
"result": {
|
|
"finished_count": 0,
|
|
"running_count": 5,
|
|
"waiting_count": 195
|
|
}
|
|
}
|
|
```
|
|
|
|
Example valid response were [*test id*][Test id] objects were requested
|
|
for all three status values and none was nil:
|
|
|
|
```json
|
|
{
|
|
"jsonrpc": "2.0",
|
|
"id": 147559211994909,
|
|
"result": {
|
|
"finished_count": 1,
|
|
"finished_tests": [
|
|
"43b408794155324b",
|
|
],
|
|
"waiting_tests": [
|
|
"be9cbb44fff0b2a8",
|
|
"62f487731116fd87",
|
|
],
|
|
"running_tests": [
|
|
"692f8ffc32d647ca",
|
|
"6441a83fcee8d28d"
|
|
],
|
|
"waiting_count": 2,
|
|
"running_count": 2
|
|
}
|
|
}
|
|
```
|
|
|
|
#### `"params"`
|
|
|
|
An object with the property:
|
|
|
|
* `"batch_id"`: A [*batch id*][Batch id], required.
|
|
* `"list_waiting_tests"`: a boolean, optional (default false). If true include
|
|
the `"waiting_tests"` property in the result object.
|
|
* `"list_running_tests"`: a boolean, optional (default false). If true include
|
|
the `"running_tests"` property in the result object.
|
|
* `"list_finished_tests"`: a boolean, optional (default false). If true include
|
|
the `"finished_tests"` property in the result object.
|
|
|
|
#### `"result"`
|
|
|
|
An object with the following properties:
|
|
|
|
* `"waiting_count"`: a [*non-negative integer*][Non-negative integer]. The number
|
|
of *waiting* tests ([*progress*][Progress percentage] is equal to 0).
|
|
* `"running_count"`: a [*non-negative integer*][Non-negative integer]. The number
|
|
of *running* tests ([*progress*][Progress percentage] is in the interval 1 to
|
|
99, inclusive).
|
|
* `"finished_count"`: a [*non-negative integer*][Non-negative integer]. The
|
|
number of *finished* tests ([*progress*][Progress percentage] is equal to 100).
|
|
* `"waiting_tests"`: a list of [*test ids*][Test id] (only if requested and only
|
|
if non-empty). The set of *waiting* tests in this *batch*.
|
|
* `"running_tests"`: a list of [*test ids*][Test id] (only if requested and only
|
|
if non-empty). The set of *running* tests in this *batch*.
|
|
* `"finished_tests"`: a list of [*test ids*][Test id] (only if requested and only
|
|
if none-empty). The set of *finished* tests in this *batch*.
|
|
|
|
#### `"error"`
|
|
|
|
If the `batch_id` is unrecognized the following error is returned:
|
|
|
|
```json
|
|
{
|
|
"jsonrpc": "2.0",
|
|
"id": 1,
|
|
"error": {
|
|
"data": {
|
|
"batch_id": "10"
|
|
},
|
|
"message": "Unknown batch",
|
|
"code": -32603
|
|
}
|
|
}
|
|
```
|
|
|
|
|
|
## Experimental API methods
|
|
|
|
There are also some experimental API methods documented only by name:
|
|
|
|
* system_versions
|
|
* conf_profiles
|
|
* conf_languages
|
|
* lookup_address_records
|
|
* lookup_delegation_data
|
|
* job_create
|
|
* job_status
|
|
* job_results
|
|
* job_params
|
|
* domain_history
|
|
* user_create
|
|
* batch_create
|
|
|
|
|
|
[API add_api_user]: #api-method-add_api_user
|
|
[API add_batch_job]: #api-method-add_batch_job
|
|
[API batch_create]: #api-method-batch_create
|
|
[API batch_status]: #api-method-batch_status
|
|
[API conf_languages]: #api-method-conf_languages
|
|
[API conf_profiles]: #api-method-conf_profiles
|
|
[API domain_history]: #api-method-domain_history
|
|
[API job_create]: #api-method-job_create
|
|
[API job_params]: #api-method-job_params
|
|
[API job_results]: #api-method-job_results
|
|
[API job_status]: #api-method-job_status
|
|
[API key]: #api-key
|
|
[API lookup_address_records]: #api-method-lookup_address_records
|
|
[API lookup_delegation_data]: #api-method-lookup_delegation_data
|
|
[API start_domain_test]: #api-method-start_domain_test
|
|
[API system_versions]: #api-method-system_versions
|
|
[API user_create]: #api-method-user_create
|
|
[API v10.0.0]: https://github.com/zonemaster/zonemaster-backend/blob/v10.0.0/docs/API.md
|
|
[Architecture documentation]: https://github.com/zonemaster/zonemaster-backend/blob/master/docs/Architecture.md
|
|
[Batch id]: #batch-id
|
|
[Client id]: #client-id
|
|
[Client version]: #client-version
|
|
[Delegation Signer]: https://datatracker.ietf.org/doc/html/rfc4034#section-5
|
|
[Domain name]: #domain-name
|
|
[Dot-decimal notation]: https://en.wikipedia.org/wiki/Dot-decimal_notation
|
|
[DS info]: #ds-info
|
|
[IP address]: #ip-address
|
|
[ISO 3166-1 alpha-2]: https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2
|
|
[ISO 639-1]: https://en.wikipedia.org/wiki/ISO_639-1
|
|
[JSON Pointer]: https://datatracker.ietf.org/doc/html/rfc6901
|
|
[JSON-RPC 2.0]: https://www.jsonrpc.org/specification
|
|
[Language tag]: #language-tag
|
|
[LANGUAGE.locale]: ../../configuration/backend.md#locale
|
|
[Name server]: #name-server
|
|
[net.ipv4]: https://metacpan.org/pod/Zonemaster::Engine::Profile#net.ipv4
|
|
[net.ipv6]: https://metacpan.org/pod/Zonemaster::Engine::Profile#net.ipv6
|
|
[Non-negative integer]: #non-negative-integer
|
|
[Priority]: #priority
|
|
[Privilege levels]: #privilege-levels
|
|
[Profile]: https://github.com/zonemaster/zonemaster-backend/blob/master/docs/Architecture.md#profile
|
|
[Profile name]: #profile-name
|
|
[Profile sections]: ../../configuration/backend.md#public-profiles-and-private-profiles-sections
|
|
[Progress percentage]: #progress-percentage
|
|
[Queue]: #queue
|
|
[RFC 5952]: https://datatracker.ietf.org/doc/html/rfc5952
|
|
[RPCAPI.enable_add_api_user]: ../../configuration/backend.md#enable_add_api_user
|
|
[RPCAPI.enable_add_batch_job]: ../../configuration/backend.md#enable_add_batch_job
|
|
[Severity Level Definitions]: ../../specifications/tests/SeverityLevelDefinitions.md
|
|
[Severity level]: #severity-level
|
|
[Test Cases]: ../../specifications/tests#list-of-defined-test-cases
|
|
[Test Case Identifiers]: https://github.com/zonemaster/zonemaster/blob/master/docs/internal/templates/specifications/tests/TestCaseIdentifierSpecification.md
|
|
[Test id]: #test-id
|
|
[Test result]: #test-result
|
|
[Timestamp]: #timestamp
|
|
[Username]: #username
|
|
[Validation error data]: #validation-error-data
|
|
[ZONEMASTER.age_reuse_previous_test]: ../../configuration/backend.md#age_reuse_previous_test
|
|
[ZONEMASTER.lock_on_queue]: ../../configuration/backend.md#lock_on_queue
|