GET api/Campaigns/Status/GetListForProcess?id={id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of CampaignStatusModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| Step | byte |
None. |
|
| Name | string |
None. |
|
| ColorCode | string |
None. |
|
| IsLock | boolean |
None. |
|
| Amount | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"id": "17e235d9-bc69-43c0-aff8-c25205983ab3",
"step": 64,
"name": "sample string 3",
"colorCode": "sample string 4",
"isLock": true,
"amount": 6
},
{
"id": "17e235d9-bc69-43c0-aff8-c25205983ab3",
"step": 64,
"name": "sample string 3",
"colorCode": "sample string 4",
"isLock": true,
"amount": 6
}
]
application/xml, text/xml
Sample:
<ArrayOfCampaignStatusModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AgencyWebAPI.Models.Campaign">
<CampaignStatusModel>
<Amount>6</Amount>
<ColorCode>sample string 4</ColorCode>
<Id>17e235d9-bc69-43c0-aff8-c25205983ab3</Id>
<IsLock>true</IsLock>
<Name>sample string 3</Name>
<Step>64</Step>
</CampaignStatusModel>
<CampaignStatusModel>
<Amount>6</Amount>
<ColorCode>sample string 4</ColorCode>
<Id>17e235d9-bc69-43c0-aff8-c25205983ab3</Id>
<IsLock>true</IsLock>
<Name>sample string 3</Name>
<Step>64</Step>
</CampaignStatusModel>
</ArrayOfCampaignStatusModel>