GET api/v1/ContactEvents?type={type}&subtype={subtype}&from={from}&to={to}&contactId={contactId}
Will get events by type.
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
type |
Type of the events |
string |
Required |
subtype |
SubType of the events |
string |
None. |
from |
Minimum created value |
date |
None. |
to |
Maximum created value |
date |
None. |
contactId |
ContactId filter for the events |
integer |
None. |
Body Parameters
None.
Response Information
Resource Description
Collection of ReadContactEventDtoName | 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": "2024-11-21T06:20:56.0185025+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-11-21T06:20:56.0185025+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": {} } ]