POST api/EntityActivityLog/Add

Create activity

Request Information

URI Parameters

None.

Body Parameters

WorkPoint365.WebAPI.Model.AddEntityActivityLogModel
NameDescriptionTypeAdditional information
Title

Title of the Entity Activity Log list item.

string

Required

EventType

The type of event. Value must be a path to the EventType term in the termstore (e.g. Document;Created).

string

Required

EventTypeId

EventTypeId

string

Required

EventSourceType

Path to the EventSourceType term in the termstore (e.g. Document;Created).

string

Required

EventDate

Timestamp when the event occurred.

date

Required

EventUser

Login name of the user that initiated the event.

string

None.

EventSystem

System from which the event originated.

string

None.

BusinessModuleId

ID of the business module where the event occurred.

globally unique identifier

Required

Entity

ID of the business module entity where the event occurred.

integer

Required

List

string

None.

Item

Collection of Object

None.

ItemData

Additional field values when the event occurred. Entered as a list of fields that exist on the Item object like this: Title,Author.email,Author.title

string

None.

Details

string

None.

Request Formats

application/json, text/json

Sample:
{
  "Title": "sample string 1",
  "EventType": "sample string 2",
  "EventTypeId": "sample string 3",
  "EventSourceType": "sample string 4",
  "EventDate": "2026-06-13T14:00:07.0900794+00:00",
  "EventUser": "sample string 6",
  "EventSystem": "sample string 7",
  "BusinessModuleId": "03230bd3-76a7-42fe-a69f-12e3b1d02299",
  "Entity": 9,
  "List": "sample string 10",
  "Item": null,
  "ItemData": "sample string 11",
  "Details": "sample string 12"
}

application/xml, text/xml

Sample:
<AddEntityActivityLogModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WorkPoint365.WebAPI.Model">
  <BusinessModuleId>03230bd3-76a7-42fe-a69f-12e3b1d02299</BusinessModuleId>
  <Details>sample string 12</Details>
  <Entity>9</Entity>
  <EventDate>2026-06-13T14:00:07.0900794+00:00</EventDate>
  <EventSourceType>sample string 4</EventSourceType>
  <EventSystem>sample string 7</EventSystem>
  <EventType>sample string 2</EventType>
  <EventTypeId>sample string 3</EventTypeId>
  <EventUser>sample string 6</EventUser>
  <Item xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays" i:nil="true" />
  <ItemData>sample string 11</ItemData>
  <List>sample string 10</List>
  <Title>sample string 1</Title>
</AddEntityActivityLogModel>

Response Information

Resource Description

System.Web.Http.IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.