GET api/tblOrds

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of tblOrd
NameDescriptionTypeAdditional information
Id

integer

None.

oDate

date

None.

Num

integer

None.

CustId

integer

None.

EmpId

integer

None.

Tot

decimal number

None.

Fee

decimal number

None.

Src

string

None.

Sts

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": 1,
    "oDate": "2025-12-31T10:53:46.1183215-06:00",
    "Num": 3,
    "CustId": 4,
    "EmpId": 5,
    "Tot": 6.1,
    "Fee": 7.1,
    "Src": "sample string 8",
    "Sts": 9
  },
  {
    "Id": 1,
    "oDate": "2025-12-31T10:53:46.1183215-06:00",
    "Num": 3,
    "CustId": 4,
    "EmpId": 5,
    "Tot": 6.1,
    "Fee": 7.1,
    "Src": "sample string 8",
    "Sts": 9
  }
]

application/xml, text/xml

Sample:
<ArrayOftblOrd xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Classes">
  <tblOrd>
    <CustId>4</CustId>
    <EmpId>5</EmpId>
    <Fee>7.1</Fee>
    <Id>1</Id>
    <Num>3</Num>
    <Src>sample string 8</Src>
    <Sts>9</Sts>
    <Tot>6.1</Tot>
    <oDate>2025-12-31T10:53:46.1183215-06:00</oDate>
  </tblOrd>
  <tblOrd>
    <CustId>4</CustId>
    <EmpId>5</EmpId>
    <Fee>7.1</Fee>
    <Id>1</Id>
    <Num>3</Num>
    <Src>sample string 8</Src>
    <Sts>9</Sts>
    <Tot>6.1</Tot>
    <oDate>2025-12-31T10:53:46.1183215-06:00</oDate>
  </tblOrd>
</ArrayOftblOrd>