POST api/Campaigns/Process
Request Information
URI Parameters
None.
Body Parameters
CampaignProcessBindingModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| StatusId | globally unique identifier |
None. |
|
| Description | string |
None. |
|
| Percentage | byte |
None. |
|
| Finance | decimal number |
None. |
|
| IsLoanBank | boolean |
None. |
|
| ProjectId | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"id": "c9dbce14-f721-47c7-9a71-3d2959411fdd",
"statusId": "fb0560f1-a3a1-4806-a501-df658ddf5230",
"description": "sample string 3",
"percentage": 64,
"finance": 5.0,
"isLoanBank": true,
"projectId": 7
}
application/xml, text/xml
Sample:
<CampaignProcessBindingModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AgencyWebAPI.Models.Campaign"> <Description>sample string 3</Description> <Finance>5</Finance> <Id>c9dbce14-f721-47c7-9a71-3d2959411fdd</Id> <IsLoanBank>true</IsLoanBank> <Percentage>64</Percentage> <ProjectId>7</ProjectId> <StatusId>fb0560f1-a3a1-4806-a501-df658ddf5230</StatusId> </CampaignProcessBindingModel>
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.