POST api/v2/SiteProgress/SaveProgress
Request Information
URI Parameters
None.
Body Parameters
Progress| Name | Description | Type | Additional information |
|---|---|---|---|
| pabama_ids | Collection of integer |
None. |
|
| activity_type_id | integer |
None. |
|
| progress_value | decimal number |
None. |
|
| created_by | integer |
None. |
|
| pabama | string |
None. |
|
| commission | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"pabama_ids": [
1,
2
],
"activity_type_id": 1,
"progress_value": 2.0,
"created_by": 3,
"pabama": "sample string 4",
"commission": "sample string 5"
}
application/xml, text/xml
Sample:
<IEO_PABAMA.Progress xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SiteProgressAPI.Interfaces">
<activity_type_id>1</activity_type_id>
<commission>sample string 5</commission>
<created_by>3</created_by>
<pabama>sample string 4</pabama>
<pabama_ids xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:int>1</d2p1:int>
<d2p1:int>2</d2p1:int>
</pabama_ids>
<progress_value>2</progress_value>
</IEO_PABAMA.Progress>
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. |