POST api/negotiator/intervaleventcounts

Return interval based event counts for negotiators.

Request Information

URI Parameters

None.

Body Parameters

NegotiatorEventCountDataContract
NameDescriptionTypeAdditional information
Interval

DateInterval

None.

NegotiatorIds

Collection of integer

None.

StartDate

date

None.

EndDate

date

None.

EventCategory

EnumDataContract

None.

EventType

EnumDataContract

None.

RoleType

EnumDataContract

None.

BranchId

integer

None.

IncludeDrafts

boolean

None.

Request Formats

application/x-www-form-urlencoded

Sample:

Sample not available.

application/json, text/json

Sample:
{
  "Interval": 0,
  "NegotiatorIds": [
    1,
    2
  ],
  "StartDate": "2025-06-14T20:40:32.5097377Z",
  "EndDate": "2025-06-14T20:40:32.5097377Z",
  "EventCategory": {
    "Id": 1,
    "Name": "sample string 2",
    "SystemName": "sample string 3"
  },
  "EventType": {
    "Id": 1,
    "Name": "sample string 2",
    "SystemName": "sample string 3"
  },
  "RoleType": {
    "Id": 1,
    "Name": "sample string 2",
    "SystemName": "sample string 3"
  },
  "BranchId": 1,
  "IncludeDrafts": true
}

Response Information

Resource Description

PagedCollectionDataContractOfNegotiatorEventCountResultDataContract
NameDescriptionTypeAdditional information
TotalCount

integer

None.

CurrentCount

integer

None.

PageSize

integer

None.

PageNumber

integer

None.

Collection

Collection of NegotiatorEventCountResultDataContract

None.

Response Formats

application/json, text/json

Sample:
{
  "TotalCount": 1,
  "CurrentCount": 2,
  "PageSize": 1,
  "PageNumber": 1,
  "Collection": [
    {
      "DateTime": "2025-06-14T20:40:32.5253631Z",
      "Count": 2
    },
    {
      "DateTime": "2025-06-14T20:40:32.5253631Z",
      "Count": 2
    }
  ]
}