POST api/CallTracker/Project/SaveDetails
Request Information
URI Parameters
None.
Body Parameters
ProjectBE| Name | Description | Type | Additional information |
|---|---|---|---|
| projectid | integer |
None. |
|
| parentid | integer |
None. |
|
| projectname | string |
None. |
|
| projectactivestatus | integer |
None. |
|
| sortorder | integer |
None. |
|
| incentivepercent | decimal number |
None. |
|
| chainPath | string |
None. |
|
| AvailableRows | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"projectid": 1,
"parentid": 2,
"projectname": "sample string 3",
"projectactivestatus": 4,
"sortorder": 5,
"incentivepercent": 6.1,
"chainPath": "sample string 7",
"AvailableRows": 8
}
application/xml, text/xml
Sample:
<ProjectBE xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SkyERP.BusinessEntity.CallTracker"> <AvailableRows>8</AvailableRows> <chainPath>sample string 7</chainPath> <incentivepercent>6.1</incentivepercent> <parentid>2</parentid> <projectactivestatus>4</projectactivestatus> <projectid>1</projectid> <projectname>sample string 3</projectname> <sortorder>5</sortorder> </ProjectBE>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
BoolSaveResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| saveStatus | SaveStatus |
None. |
|
| SaveDone | boolean |
None. |
|
| iRecordId | integer |
None. |
|
| MyProperty | Object |
None. |
|
| StringValue | string |
None. |
|
| TaskPointDateTimeStr | Dictionary of string [key] and string [value] |
None. |
|
| status | integer |
None. |
|
| message | string |
None. |
|
| hasError | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"saveStatus": 1,
"SaveDone": true,
"iRecordId": 1,
"MyProperty": {},
"StringValue": "sample string 3",
"TaskPointDateTimeStr": {
"sample string 1": "sample string 2",
"sample string 3": "sample string 4"
},
"status": 4,
"message": "sample string 5",
"hasError": true
}
application/xml, text/xml
Sample:
<BoolSaveResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SkyERP.BusinessEntity">
<hasError>true</hasError>
<message>sample string 5</message>
<status>4</status>
<MyProperty />
<StringValue>sample string 3</StringValue>
<TaskPointDateTimeStr xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:KeyValueOfstringstring>
<d2p1:Key>sample string 1</d2p1:Key>
<d2p1:Value>sample string 2</d2p1:Value>
</d2p1:KeyValueOfstringstring>
<d2p1:KeyValueOfstringstring>
<d2p1:Key>sample string 3</d2p1:Key>
<d2p1:Value>sample string 4</d2p1:Value>
</d2p1:KeyValueOfstringstring>
</TaskPointDateTimeStr>
<iRecordId>1</iRecordId>
<saveStatus>AddNew</saveStatus>
</BoolSaveResponse>