POST Thirdparty/SaveConsentFormsConfiguration
Request Information
URI Parameters
None.
Body Parameters
MYCII_EWS.BusinessObjects.ConsentSaveRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | string |
None. |
|
| Callfor | string |
None. |
|
| ConsentData | Collection of MYCII_EWS.BusinessObjects.ConsentItem |
None. |
Request Formats
application/json, text/json
Sample:
{
"ID": "sample string 1",
"Callfor": "sample string 2",
"ConsentData": [
{
"ConsentId": 1,
"Module": "sample string 2",
"IsShow": true,
"IsMandatory": true
},
{
"ConsentId": 1,
"Module": "sample string 2",
"IsShow": true,
"IsMandatory": true
}
]
}
application/xml, text/xml
Sample:
<ConsentSaveRequest xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<ID>sample string 1</ID>
<Callfor>sample string 2</Callfor>
<ConsentData>
<ConsentItem>
<ConsentId>1</ConsentId>
<Module>sample string 2</Module>
<IsShow>true</IsShow>
<IsMandatory>true</IsMandatory>
</ConsentItem>
<ConsentItem>
<ConsentId>1</ConsentId>
<Module>sample string 2</Module>
<IsShow>true</IsShow>
<IsMandatory>true</IsMandatory>
</ConsentItem>
</ConsentData>
</ConsentSaveRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
System.Web.Http.IHttpActionResultNone.
Response Formats
application/json, text/json
Sample:
Sample not available.