POST api/v3/Campaign/Settings/Save
Request Information
URI Parameters
None.
Body Parameters
CampaignSettingsSaveRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| campaignId | string |
None. |
|
| isActive | boolean |
None. |
|
| isNewApplicantNotify | boolean |
None. |
|
| isShowApplyInstructions | boolean |
None. |
|
| fkApplyInstructionsMessageID | string |
None. |
|
| isShowApplyQuestionsInstructions | boolean |
None. |
|
| fkApplyQuestionsMessageID | string |
None. |
|
| isOnlineQuesResponseNotify | boolean |
None. |
|
| isPostApprovalRequired | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"campaignId": "sample string 1",
"isActive": true,
"isNewApplicantNotify": true,
"isShowApplyInstructions": true,
"fkApplyInstructionsMessageID": "sample string 2",
"isShowApplyQuestionsInstructions": true,
"fkApplyQuestionsMessageID": "sample string 3",
"isOnlineQuesResponseNotify": true,
"isPostApprovalRequired": true
}
text/html
Sample:
{"campaignId":"sample string 1","isActive":true,"isNewApplicantNotify":true,"isShowApplyInstructions":true,"fkApplyInstructionsMessageID":"sample string 2","isShowApplyQuestionsInstructions":true,"fkApplyQuestionsMessageID":"sample string 3","isOnlineQuesResponseNotify":true,"isPostApprovalRequired":true}
application/xml, text/xml
Sample:
<CampaignSettingsSaveRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IC_Web_API_V3.Models"> <campaignId>sample string 1</campaignId> <fkApplyInstructionsMessageID>sample string 2</fkApplyInstructionsMessageID> <fkApplyQuestionsMessageID>sample string 3</fkApplyQuestionsMessageID> <isActive>true</isActive> <isNewApplicantNotify>true</isNewApplicantNotify> <isOnlineQuesResponseNotify>true</isOnlineQuesResponseNotify> <isPostApprovalRequired>true</isPostApprovalRequired> <isShowApplyInstructions>true</isShowApplyInstructions> <isShowApplyQuestionsInstructions>true</isShowApplyQuestionsInstructions> </CampaignSettingsSaveRequest>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |