GET api/v1/ContactEvents?type={type}&lastId={lastId}

Retrieve array of events with id higher than provided lastId and specified type. A maximum of 1000 events are returned

Request Information

URI Parameters

NameDescriptionTypeAdditional information
type

Type of events to retrieve

string

Required

lastId

Get events with id higher than provided lastId

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of ReadContactEventDto
NameDescriptionTypeAdditional information
Id

integer

None.

Created

date

None.

ContactId

integer

None.

Type

string

Required

SubType

string

Required

ParentId

string

None.

ParentType

string

None.

UniqueExtId

A batch insert only occures on unique or null values - BE CAREFUL

string

None.

InfoJson

Object

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": 1,
    "Created": "2024-03-28T05:18:29.711501+00:00",
    "ContactId": 3,
    "Type": "sample string 4",
    "SubType": "sample string 5",
    "ParentId": "sample string 6",
    "ParentType": "sample string 7",
    "UniqueExtId": "sample string 8",
    "InfoJson": {}
  },
  {
    "Id": 1,
    "Created": "2024-03-28T05:18:29.711501+00:00",
    "ContactId": 3,
    "Type": "sample string 4",
    "SubType": "sample string 5",
    "ParentId": "sample string 6",
    "ParentType": "sample string 7",
    "UniqueExtId": "sample string 8",
    "InfoJson": {}
  }
]