POST api/events/raisecustomerfolderevent
Request Information
URI Parameters
None.
Body Parameters
RaiseCustomerFolderEventRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| CFId | integer |
None. |
|
| RecipientEmail | string |
None. |
|
| PlanDate | string |
None. |
|
| EventCode | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"CFId": 1,
"RecipientEmail": "sample string 2",
"PlanDate": "sample string 3",
"EventCode": "sample string 4"
}
application/xml, text/xml
Sample:
<RaiseCustomerFolderEventRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Atlantis.Web.Api.Controllers"> <CFId>1</CFId> <EventCode>sample string 4</EventCode> <PlanDate>sample string 3</PlanDate> <RecipientEmail>sample string 2</RecipientEmail> </RaiseCustomerFolderEventRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
RaiseEventResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| EventCode | string |
None. |
|
| EventInstanceId | integer |
None. |
|
| EventSourceTypeId | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"EventCode": "sample string 1",
"EventInstanceId": 2,
"EventSourceTypeId": 3
}
application/xml, text/xml
Sample:
<RaiseEventResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Atlantis.Web.Api.Controllers"> <EventCode>sample string 1</EventCode> <EventInstanceId>2</EventInstanceId> <EventSourceTypeId>3</EventSourceTypeId> </RaiseEventResponse>