GET api/orgActivity/{id}

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

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

The Activity Primary Key.

integer

Required

Body Parameters

None.

Response Information

Resource Description

orgActivityDb
NameDescriptionTypeAdditional information
ActivityID

integer

None.

ActivityTypeID

integer

Required

EntityID

integer

Required

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,
  "EntityID": 3,
  "ActivityDescription": "sample string 4",
  "CreatedBy": 5,
  "CreatedDate": "2025-12-06T23:39:31.2712255+00:00",
  "OldValue": "sample string 7",
  "NewValue": "sample string 8"
}

application/xml, text/xml

Sample:
<orgActivityDb 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:31.2712255Z</d2p1:DateTime>
    <d2p1:OffsetMinutes>0</d2p1:OffsetMinutes>
  </CreatedDate>
  <EntityID>3</EntityID>
  <NewValue>sample string 8</NewValue>
  <OldValue>sample string 7</OldValue>
</orgActivityDb>