Api Home > Config > GetAffectedItem

GET api/V3/Config/GetAffectedItem?configItemObjectId={configItemObjectId}&userId={userId}&isUserScoped={isUserScoped} Returns the Configuration Item using User Id

Request Information

URI Parameters

NameDescriptionTypeAdditional information
configItemObjectId

The Configuration Item Id

globally unique identifier

Required

userId

The User Id

globally unique identifier

Required

isUserScoped

Boolean whether the user has configuration item scoping

boolean

Required

Body Parameters

None.

Response Information

Resource Description

ConfigItemObject
NameDescriptionTypeAdditional information
Id

globally unique identifier

None.

ObjectClassId

globally unique identifier

None.

ObjectClassName

string

None.

DisplayName

string

None.

Path

string

None.

BaseType

string

None.

Hosted

integer

None.

LastModified

date

None.

AssetStatus

AssetStatus

None.

LastModifiedAsString

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Id": "678324bf-bf01-441a-89f7-582652025ae4",
  "ObjectClassId": "93fdea5a-40c1-416f-a498-5c697431c1fd",
  "ObjectClassName": "sample string 3",
  "DisplayName": "sample string 4",
  "Path": "sample string 5",
  "BaseType": "sample string 6",
  "Hosted": 7,
  "LastModified": "2024-04-18T10:54:17.523Z",
  "AssetStatus": {
    "Id": "ebec39dc-485e-43ea-b860-c4276807b510",
    "Name": "sample string 2"
  },
  "LastModifiedAsString": "2024-04-18T10:54:17.523Z"
}

application/xml, text/xml

Sample:
<ConfigItemObject xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Cireson.ServiceManager.Library">
  <AssetStatus>
    <Id>ebec39dc-485e-43ea-b860-c4276807b510</Id>
    <Name>sample string 2</Name>
  </AssetStatus>
  <BaseType>sample string 6</BaseType>
  <DisplayName>sample string 4</DisplayName>
  <Hosted>7</Hosted>
  <Id>678324bf-bf01-441a-89f7-582652025ae4</Id>
  <LastModified>2024-04-18T10:54:17.5233271+00:00</LastModified>
  <LastModifiedAsString>2024-04-18T10:54:17.523</LastModifiedAsString>
  <ObjectClassId>93fdea5a-40c1-416f-a498-5c697431c1fd</ObjectClassId>
  <ObjectClassName>sample string 3</ObjectClassName>
  <Path>sample string 5</Path>
</ConfigItemObject>