List Subjects in a Domain

Topics:

Use the following REST call to list all the subjects defined in a specific domain. This REST call is available as of Version 3.10.

GET: /api/v1/metadata/domains/{domain}

Topics:

The list of subjects is returned in JSON format. {domain} is one of the domains in the list returned by the method above.

Example:

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

-- response --

{
  "status": "OK",
  "code": 0,
  "message": null,
  "developerMessage": null,
  "responseType": "com.ibi.omni.controller.services.metadata.DomainDto",
  "response": {
    "domainName": "SalesOrg",
    "subjects": [
      "SalesOrg"
    ]
},
  "exception": null
}