POST api/business/{applicationId}/userfollowup
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| applicationId | integer |
Required |
Body Parameters
UserFollowUpRequestModel| Name | Description | Type | Additional information |
|---|---|---|---|
| UserId | integer |
None. |
|
| FollowUpDate | string |
None. |
|
| EnableFollowUp | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"UserId": 1,
"FollowUpDate": "sample string 2",
"EnableFollowUp": true
}
application/xml, text/xml
Sample:
<UserFollowUpRequestModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GM.ApplicanProgramInterface.Models"> <EnableFollowUp>true</EnableFollowUp> <FollowUpDate>sample string 2</FollowUpDate> <UserId>1</UserId> </UserFollowUpRequestModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.