GET api/orgVendor/{id}

Return a single value from the Vendors table using the primary key as ID.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

The Vendors Primary Key.

integer

Required

Body Parameters

None.

Response Information

Resource Description

orgVendorDb
NameDescriptionTypeAdditional information
EntityID

integer

Required

IsActive

boolean

None.

IsCarrier

boolean

None.

IsBroker

boolean

None.

IsInsurance

boolean

None.

IsSalesRep

boolean

None.

IsOther

boolean

None.

IsCrossDock

boolean

None.

IsApproved

boolean

None.

DefaultSalesCommission

decimal number

None.

CashOnly

boolean

None.

AutoBilling

boolean

None.

PreferredCurrencyCode

string

None.

CreatedBy

integer

None.

CreatedDate

date

None.

UpdatedBy

integer

None.

UpdatedDate

date

None.

results

Collection of ValidationResult

None.

Response Formats

application/json, text/json

Sample:
{
  "results": null,
  "EntityID": 1,
  "IsActive": true,
  "IsCarrier": true,
  "IsBroker": true,
  "IsInsurance": true,
  "IsSalesRep": true,
  "IsOther": true,
  "IsCrossDock": true,
  "IsApproved": true,
  "DefaultSalesCommission": 1.0,
  "CashOnly": true,
  "AutoBilling": true,
  "PreferredCurrencyCode": "sample string 12",
  "CreatedBy": 13,
  "CreatedDate": "2025-12-06T23:43:07.0401152+00:00",
  "UpdatedBy": 15,
  "UpdatedDate": "2025-12-06T23:43:07.0401152+00:00"
}

application/xml, text/xml

Sample:
<orgVendorDb xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.Data.Tables">
  <results xmlns:d2p1="http://schemas.datacontract.org/2004/07/System.ComponentModel.DataAnnotations" i:nil="true" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.Data.Utility" />
  <AutoBilling>true</AutoBilling>
  <CashOnly>true</CashOnly>
  <CreatedBy>13</CreatedBy>
  <CreatedDate xmlns:d2p1="http://schemas.datacontract.org/2004/07/System">
    <d2p1:DateTime>2025-12-06T23:43:07.0401152Z</d2p1:DateTime>
    <d2p1:OffsetMinutes>0</d2p1:OffsetMinutes>
  </CreatedDate>
  <DefaultSalesCommission>1</DefaultSalesCommission>
  <EntityID>1</EntityID>
  <IsActive>true</IsActive>
  <IsApproved>true</IsApproved>
  <IsBroker>true</IsBroker>
  <IsCarrier>true</IsCarrier>
  <IsCrossDock>true</IsCrossDock>
  <IsInsurance>true</IsInsurance>
  <IsOther>true</IsOther>
  <IsSalesRep>true</IsSalesRep>
  <PreferredCurrencyCode>sample string 12</PreferredCurrencyCode>
  <UpdatedBy>15</UpdatedBy>
  <UpdatedDate xmlns:d2p1="http://schemas.datacontract.org/2004/07/System">
    <d2p1:DateTime>2025-12-06T23:43:07.0401152Z</d2p1:DateTime>
    <d2p1:OffsetMinutes>0</d2p1:OffsetMinutes>
  </UpdatedDate>
</orgVendorDb>