POST api/Revolution/Notice/Dismiss?repDID={repDID}
Dismiss a Revolution Notice for the given representive.
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
repDID |
The representative number. |
string |
Required |
Body Parameters
The payload that contains the parameter required to identify the notice to be dismissed.
DismissNoticeViewModelName | Description | Type | Additional information |
---|---|---|---|
ARTypeID |
AutoResponder Type ID. Optional. When only this field is passed it will dismiss any revolution notice for the given autoresponder type. |
integer |
None. |
ARTemplateID |
AutoResponder Template ID. Optional. When only this field is passed it will dismiss any revolution notice for the given autoresponder template. |
integer |
None. |
DisplayType |
The display type. Optional. Options: 0 - Popup, 1 - Banner, 2 - Login Lock Screen. When only this field is passed it will dismiss any revolution notice for the given display type. |
integer |
None. |
Request Formats
application/xml, text/xml
<DismissNoticeViewModel> <ARTypeID>1</ARTypeID> <ARTemplateID>1</ARTemplateID> <DisplayType>1</DisplayType> </DismissNoticeViewModel>
application/json, text/json
{ "ARTypeID": 1, "ARTemplateID": 1, "DisplayType": 1 }
application/x-www-form-urlencoded
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/xml, text/xml, application/json, text/json
Sample not available.