GET api/VendorManagement

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

VendorManagementModel
NameDescriptionTypeAdditional information
Rows

Collection of VendorManagementRow

None.

Response Formats

application/json, text/json

Sample:
{
  "Rows": [
    {
      "DocumentID": 1,
      "ReportID": 1,
      "VendorCode": "sample string 1",
      "ServiceCode": "sample string 2",
      "FunctionalArea": "sample string 3",
      "Owner": "sample string 4",
      "EffectiveDate": "sample string 5",
      "PaymentTiming": "sample string 6",
      "PaymentDue": "sample string 7",
      "FeeCommencementDate": "sample string 8",
      "GoverningLaw": "sample string 9"
    },
    {
      "DocumentID": 1,
      "ReportID": 1,
      "VendorCode": "sample string 1",
      "ServiceCode": "sample string 2",
      "FunctionalArea": "sample string 3",
      "Owner": "sample string 4",
      "EffectiveDate": "sample string 5",
      "PaymentTiming": "sample string 6",
      "PaymentDue": "sample string 7",
      "FeeCommencementDate": "sample string 8",
      "GoverningLaw": "sample string 9"
    }
  ]
}

application/xml, text/xml

Sample:
<VendorManagementModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/QdsAPI.Models">
  <Rows>
    <VendorManagementRow>
      <DocumentID>1</DocumentID>
      <EffectiveDate>sample string 5</EffectiveDate>
      <FeeCommencementDate>sample string 8</FeeCommencementDate>
      <FunctionalArea>sample string 3</FunctionalArea>
      <GoverningLaw>sample string 9</GoverningLaw>
      <Owner>sample string 4</Owner>
      <PaymentDue>sample string 7</PaymentDue>
      <PaymentTiming>sample string 6</PaymentTiming>
      <ReportID>1</ReportID>
      <ServiceCode>sample string 2</ServiceCode>
      <VendorCode>sample string 1</VendorCode>
    </VendorManagementRow>
    <VendorManagementRow>
      <DocumentID>1</DocumentID>
      <EffectiveDate>sample string 5</EffectiveDate>
      <FeeCommencementDate>sample string 8</FeeCommencementDate>
      <FunctionalArea>sample string 3</FunctionalArea>
      <GoverningLaw>sample string 9</GoverningLaw>
      <Owner>sample string 4</Owner>
      <PaymentDue>sample string 7</PaymentDue>
      <PaymentTiming>sample string 6</PaymentTiming>
      <ReportID>1</ReportID>
      <ServiceCode>sample string 2</ServiceCode>
      <VendorCode>sample string 1</VendorCode>
    </VendorManagementRow>
  </Rows>
</VendorManagementModel>