GET api/Asset/sco?filter={filter}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
filter

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of SCOListItem
NameDescriptionTypeAdditional information
SCOPath

string

None.

Level

string

None.

ObjectID

integer

None.

ClassID

integer

None.

SystemID

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "SCOPath": "sample string 1",
    "Level": "sample string 2",
    "ObjectID": 3,
    "ClassID": 4,
    "SystemID": 5
  },
  {
    "SCOPath": "sample string 1",
    "Level": "sample string 2",
    "ObjectID": 3,
    "ClassID": 4,
    "SystemID": 5
  }
]

application/xml, text/xml

Sample:
<ArrayOfSCOListItem xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Aramark.ISIS.Domain.Models">
  <SCOListItem>
    <ClassID>4</ClassID>
    <Level>sample string 2</Level>
    <ObjectID>3</ObjectID>
    <SCOPath>sample string 1</SCOPath>
    <SystemID>5</SystemID>
  </SCOListItem>
  <SCOListItem>
    <ClassID>4</ClassID>
    <Level>sample string 2</Level>
    <ObjectID>3</ObjectID>
    <SCOPath>sample string 1</SCOPath>
    <SystemID>5</SystemID>
  </SCOListItem>
</ArrayOfSCOListItem>