GET api/RBPartIndex/GetRBPartIndex?t={t}

Return the list of available indices for RB PART.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
t

Authentication token.

string

Required

Body Parameters

None.

Response Information

Resource Description

List of indices

Collection of RBPartIndex
NameDescriptionTypeAdditional information
Id

integer

None.

Name

string

None.

Code

string

None.

Vendor

string

None.

VendorId

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": 1,
    "Name": "sample string 2",
    "Code": "sample string 3",
    "Vendor": "sample string 4",
    "VendorId": 5
  },
  {
    "Id": 1,
    "Name": "sample string 2",
    "Code": "sample string 3",
    "Vendor": "sample string 4",
    "VendorId": 5
  }
]

application/xml, text/xml

Sample:
<ArrayOfRBPartIndex xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/InteractiveDataFIA.BondEdge.PartCommon">
  <RBPartIndex>
    <Code>sample string 3</Code>
    <Id>1</Id>
    <Name>sample string 2</Name>
    <Vendor>sample string 4</Vendor>
    <VendorId>5</VendorId>
  </RBPartIndex>
  <RBPartIndex>
    <Code>sample string 3</Code>
    <Id>1</Id>
    <Name>sample string 2</Name>
    <Vendor>sample string 4</Vendor>
    <VendorId>5</VendorId>
  </RBPartIndex>
</ArrayOfRBPartIndex>