GET api/v1/ContactEvents?type={type}&subtype={subtype}&from={from}&to={to}&contactId={contactId}

Will get events by type.

Request Information

URI Parameters

NameDescriptionTypeAdditional 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 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-04-18T19:42:29.1324351+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-04-18T19:42:29.1324351+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": {}
  }
]