Skip to main content
Version: 1.0

Endpoint addresses for operations

This is the interface by which the client contacts ADM for operations. ADM provides a REST API for HTTPS or HTTP.

The following endpoints can be used:

OperationMethodURIDescription
Retrieve domain by idGET/api/domains/<domain_id>A method of retrieval primarily used for auditing.
Retrieve domain by nameGET/api/namespaces/<namespace>/names/<domain_name>/domainThis is the primary method of retrieval. It retrieves a specific domain within a namespace.
Retrieve domain namesGET/api/namespaces/<namespace>/namesThis operation returns a list of the domain names that belong to the same namespace.
Retrieve domain name historyGET/api/namespaces/<namespace>/names/<domain_name>/historyThis operation returns an array of the historical changes of this domain name in the form of pairs of dates and domain IDs sorted by time.
Roll back a domain name changePOST/api/namespaces/<namespace>/names/<domain_name>/rollback/<domain_id>This operation points the domain name to the domain ID in the argument, thereby restoring it to a previous state.
Store domainPOST/api/namespaces/<namespace>/names/<domain_name>Once stored the domain is always retrievable. Domains cannot be deleted. If the domain of a namespace is deleted or overwritten it is still retrievable by the domain identifier.
Delete nameDELETE/api/namespaces/<namespace>/names/<domain_name>This deletes only the mapping of the name from the namespace.
Delete namespaceDELETE/api/namespaces/<namespace>/This deletes a namespace along with its domain members and its history.
Copy namePUT/api/namespaces/<namespace>/names/<sourceName>/copy/<destinationName>Copy the contents of a domain to another domain in the same namespace.

Important: The length of a <namespace> is limited to 500 characters, as is the length of a <domain_name>.

Application endpoints

The application connectors endpoints are configured at the applicationConnectors property in the configuration YAML file (refer to docker/resources/deployment.yaml or the appendix Configuration sample files). The endpoints are as noted above.

Swagger UI

The ADM API is also documented using Swagger UI. More information for each operation is available via: https://<host:applicationConnectorsPort>/swagger-ui/

Administration endpoints

The administration endpoints are configured at the adminConnectors property in the configuration YAML file (cf. docker/resources/deployment.yaml or the appendix Configuration sample files).

GET /healthcheck (an endpoint to determine the state of the application)

For an example of the healthcheck in use, see Checking that ADM is running.

See Service connectors for configuration information.