POST api/ChannelPartner/Stage/Update
Request Information
URI Parameters
None.
Body Parameters
ChannelPartnerStageSaveVm| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| Name | string |
None. |
|
| StageOrder | integer |
None. |
|
| IsFirstStage | boolean |
None. |
|
| IsFinalStage | boolean |
None. |
|
| IsInactiveStage | boolean |
None. |
|
| Feedback | string |
None. |
|
| FollowUpStatusId | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": 1,
"Name": "sample string 2",
"StageOrder": 3,
"IsFirstStage": true,
"IsFinalStage": true,
"IsInactiveStage": true,
"Feedback": "sample string 7",
"FollowUpStatusId": 1
}
application/xml, text/xml
Sample:
<ChannelPartnerStageSaveVm xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BrokerServer.Models.ChannelPartnerModels"> <Feedback>sample string 7</Feedback> <FollowUpStatusId>1</FollowUpStatusId> <Id>1</Id> <IsFinalStage>true</IsFinalStage> <IsFirstStage>true</IsFirstStage> <IsInactiveStage>true</IsInactiveStage> <Name>sample string 2</Name> <StageOrder>3</StageOrder> </ChannelPartnerStageSaveVm>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.