Get All Metadata for a Subject

Topics:

Use the following REST call to return both instance and master metadata for the specified subject.

GET: /api/v1/metadata/{subject}

Topics:

Returns detailed metadata for both the subject instance and master. {subject} is the name of a subject defined in the project.

Example:

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

-- response --

{
  "status": "OK",
  "code": 0,
  "message": null,
  "developerMessage": null,
  "responseType": "com.ibi.omni.controller.services.metadata.SubjectDto",
  "response": {
    "name": "SalesOrg",
    "projectName": "CustomerAutoiwqaomnia",
    "bundleVersion": "CustomerAutoiwqaomnia_3_5_0_Alpha_10_190506131145",
    "bundleRelease": "3.5.0.Alpha.10",
    "instanceTable": "og_sales_org",
    "masterTable": "og_sales_org_m",
    "sourceTable": "og_sales_org_s",
    "rampTable": "og_sales_org_r",
    "instanceModel": {
...
    },
    "masterModel": {
...
  },
  "exception": null
}