List All Domains

Topics:

Use the following REST call to return all domains defined in the project. This REST call is available as of Version 3.10.

GET: /api/v1/metadata/domains

Topics:

The list of domains is returned in JSON format.

Example:

GET https://localhost:9500/api/v1/metadata/domains

-- response --

{
  "status": "OK",
  "code": 0,
  "message": null,
  "developerMessage": null,
  "responseType": "java.util.Vector",
  "response": [
    "Customer",
    "Item",
    "SalesOrder",
    "SalesOrg"
  ],
  "exception": null
}