GET odata/VendorVTypes

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of VendorVType
NameDescriptionTypeAdditional information
RecordId

integer

None.

VID

integer

None.

VendorType

string

Required

String length: inclusive between 0 and 50

ID

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "RecordId": 1,
    "VID": 2,
    "VendorType": "sample string 3",
    "ID": 4
  },
  {
    "RecordId": 1,
    "VID": 2,
    "VendorType": "sample string 3",
    "ID": 4
  }
]

application/xml, text/xml

Sample:
<ArrayOfVendorVType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Fabric">
  <VendorVType>
    <ID>4</ID>
    <RecordId>1</RecordId>
    <VID>2</VID>
    <VendorType>sample string 3</VendorType>
  </VendorVType>
  <VendorVType>
    <ID>4</ID>
    <RecordId>1</RecordId>
    <VID>2</VID>
    <VendorType>sample string 3</VendorType>
  </VendorVType>
</ArrayOfVendorVType>