Data - Retrieve Object Details

Retrieves Objects data for the specified object ID.

POST http://<Servername>/OperationsManager/data/scomObjectsDetails

Request Body

Media Types: "application/json", "text/json", "application/xml", "text/xml", "application/x-www-form-urlencoded"

Name Type Description
id

string[]

Specify the Object ID.

Responses

Name Type Description
200 OK

TableDataResponse

OK.Successfully retrieved the object details for the object ID.

Media Types: "application/json", "text/json", "application/xml", "text/xml"

Examples

RetrieveObjectData

Sample Request

POST http://<Servername>/OperationsManager/data/scomObjectsDetails

[
  "3c8ac4f3-475e-44dd-4163-8a97af363705"
]

Sample Response

{
  "tableColumns": [
    {
      "field": "displayname",
      "header": "Display name",
      "type": null,
      "hidden": false
    },
    {
      "field": "path",
      "header": "Path",
      "type": null,
      "hidden": false
    },
    {
      "field": "id",
      "header": "ID",
      "type": null,
      "hidden": true
    },
    {
      "field": "fullname",
      "header": "Full name",
      "type": null,
      "hidden": false
    }
  ],
  "rows": [
    {
      "id": "3c8ac4f3-475e-44dd-4163-8a97af363705",
      "displayname": "All Windows Computers",
      "path": null,
      "fullname": "Microsoft.SystemCenter.AllComputersGroup"
    }
  ]
}

Definitions

Name Description
TableColumn
TableDataResponse

TableColumn

Name Type Description
field

string

Name of the Column

header

string

Header of the column

hidden

boolean

Is column hidden

type

string

Type of the Column

TableDataResponse

Name Type Description
rows

object[]

Table Rows of data

tableColumns

TableColumn[]

Table columns of data