GET api/ordActivity

Get all values from the Activity table

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

ordActivityDb
NameDescriptionTypeAdditional information
ActivityID

integer

None.

ActivityTypeID

integer

Required

OrderID

integer

Required

FreightLegID

integer

None.

FreightPayableID

integer

None.

FreightFeeID

integer

None.

FreightHandlingID

integer

None.

TaskID

integer

None.

InvoiceID

integer

None.

TrackingID

integer

None.

WarehouseAlertID

integer

None.

ActivityDescription

string

Max length: 120

CreatedBy

integer

None.

CreatedDate

date

None.

OldValue

string

Max length: 255

NewValue

string

Max length: 255

results

Collection of ValidationResult

None.

Response Formats

application/json, text/json

Sample:
{
  "results": null,
  "ActivityID": 1,
  "ActivityTypeID": 2,
  "OrderID": 3,
  "FreightLegID": 1,
  "FreightPayableID": 1,
  "FreightFeeID": 1,
  "FreightHandlingID": 1,
  "TaskID": 1,
  "InvoiceID": 1,
  "TrackingID": 1,
  "WarehouseAlertID": 1,
  "ActivityDescription": "sample string 4",
  "CreatedBy": 5,
  "CreatedDate": "2025-12-06T23:39:36.5408079+00:00",
  "OldValue": "sample string 7",
  "NewValue": "sample string 8"
}

application/xml, text/xml

Sample:
<ordActivityDb 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" />
  <ActivityDescription>sample string 4</ActivityDescription>
  <ActivityID>1</ActivityID>
  <ActivityTypeID>2</ActivityTypeID>
  <CreatedBy>5</CreatedBy>
  <CreatedDate xmlns:d2p1="http://schemas.datacontract.org/2004/07/System">
    <d2p1:DateTime>2025-12-06T23:39:36.5408079Z</d2p1:DateTime>
    <d2p1:OffsetMinutes>0</d2p1:OffsetMinutes>
  </CreatedDate>
  <FreightFeeID>1</FreightFeeID>
  <FreightHandlingID>1</FreightHandlingID>
  <FreightLegID>1</FreightLegID>
  <FreightPayableID>1</FreightPayableID>
  <InvoiceID>1</InvoiceID>
  <NewValue>sample string 8</NewValue>
  <OldValue>sample string 7</OldValue>
  <OrderID>3</OrderID>
  <TaskID>1</TaskID>
  <TrackingID>1</TrackingID>
  <WarehouseAlertID>1</WarehouseAlertID>
</ordActivityDb>