GET api/orgOrganizationsListVw/{id}
Return a single value from the OrganizationsListVw view using the primary key as ID.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
The OrganizationsListVw Primary Key. |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
orgOrganizationsListVwDb| Name | Description | Type | Additional information |
|---|---|---|---|
| EntityID | integer |
Required |
|
| EntityName | string |
Max length: 100 |
|
| IsBillTo | integer |
Required |
|
| IsCarrier | integer |
None. |
|
| IsBroker | integer |
None. |
|
| IsInsurance | integer |
None. |
|
| IsSalesRep | integer |
None. |
|
| IsCrossDock | integer |
None. |
|
| IsApproved | integer |
None. |
|
| IsShipCon | integer |
None. |
|
| IsOther | integer |
None. |
|
| results | Collection of ValidationResult |
None. |
Response Formats
application/json, text/json
Sample:
{
"results": null,
"EntityID": 1,
"EntityName": "sample string 2",
"IsBillTo": 3,
"IsCarrier": 1,
"IsBroker": 1,
"IsInsurance": 1,
"IsSalesRep": 1,
"IsCrossDock": 1,
"IsApproved": 1,
"IsShipCon": 1,
"IsOther": 1
}
application/xml, text/xml
Sample:
<orgOrganizationsListVwDb 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" /> <EntityID>1</EntityID> <EntityName>sample string 2</EntityName> <IsApproved>1</IsApproved> <IsBillTo>3</IsBillTo> <IsBroker>1</IsBroker> <IsCarrier>1</IsCarrier> <IsCrossDock>1</IsCrossDock> <IsInsurance>1</IsInsurance> <IsOther>1</IsOther> <IsSalesRep>1</IsSalesRep> <IsShipCon>1</IsShipCon> </orgOrganizationsListVwDb>