GET api/tblActvs

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of tblActv
NameDescriptionTypeAdditional information
id

integer

None.

SupId

integer

None.

aCode

string

None.

dFrom

date

None.

dTo

date

None.

aNote

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "id": 1,
    "SupId": 2,
    "aCode": "sample string 3",
    "dFrom": "2026-03-14T09:46:30.8858027-05:00",
    "dTo": "2026-03-14T09:46:30.8858027-05:00",
    "aNote": "sample string 6"
  },
  {
    "id": 1,
    "SupId": 2,
    "aCode": "sample string 3",
    "dFrom": "2026-03-14T09:46:30.8858027-05:00",
    "dTo": "2026-03-14T09:46:30.8858027-05:00",
    "aNote": "sample string 6"
  }
]

application/xml, text/xml

Sample:
<ArrayOftblActv xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Classes">
  <tblActv>
    <SupId>2</SupId>
    <aCode>sample string 3</aCode>
    <aNote>sample string 6</aNote>
    <dFrom>2026-03-14T09:46:30.8858027-05:00</dFrom>
    <dTo>2026-03-14T09:46:30.8858027-05:00</dTo>
    <id>1</id>
  </tblActv>
  <tblActv>
    <SupId>2</SupId>
    <aCode>sample string 3</aCode>
    <aNote>sample string 6</aNote>
    <dFrom>2026-03-14T09:46:30.8858027-05:00</dFrom>
    <dTo>2026-03-14T09:46:30.8858027-05:00</dTo>
    <id>1</id>
  </tblActv>
</ArrayOftblActv>