POST {version}/AddEvent
Add Event to Entities
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| version | string |
None. |
Body Parameters
FilterEvent| Name | Description | Type | Additional information |
|---|---|---|---|
| FilterId | globally unique identifier |
None. |
|
| EntityIds | string |
None. |
|
| EventId | globally unique identifier |
None. |
|
| EventStatusId | globally unique identifier |
None. |
Request Formats
application/json, text/json
Sample:
{
"FilterId": "8f2a5b01-f7d0-4a73-98a6-72ee36d273eb",
"EntityIds": "sample string 1",
"EventId": "5e6172c4-f637-47bf-b764-2659820dcd78",
"EventStatusId": "25130aeb-cfcc-44a8-97a4-738998c9f9b7"
}
application/xml, text/xml
Sample:
<FilterEvent xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Aristotle.CM.Model.Contact"> <EntityIds>sample string 1</EntityIds> <EventId>5e6172c4-f637-47bf-b764-2659820dcd78</EventId> <EventStatusId>25130aeb-cfcc-44a8-97a4-738998c9f9b7</EventStatusId> <FilterId>8f2a5b01-f7d0-4a73-98a6-72ee36d273eb</FilterId> </FilterEvent>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
count of entities impacted
Result| Name | Description | Type | Additional information |
|---|---|---|---|
| Count | integer |
None. |
|
| Success | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"Count": 1,
"Success": true
}
application/xml, text/xml
Sample:
<Result xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Aristotle.CM.Model"> <Count>1</Count> <Success>true</Success> </Result>