List All Subjects

Topics:

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

GET: /api/v1/metadata/subjects

Topics:

The list of subjects is returned in JSON format.

Example:

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

-- response --

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