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
| Name | Description | Type | Additional 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| Name | Description | Type | Additional 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": "2025-11-07T14:47:53.1724565+01: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": "2025-11-07T14:47:53.1724565+01:00",
"ContactId": 3,
"Type": "sample string 4",
"SubType": "sample string 5",
"ParentId": "sample string 6",
"ParentType": "sample string 7",
"UniqueExtId": "sample string 8",
"InfoJson": {}
}
]