POST api/Project/SaveProject
Request Information
URI Parameters
None.
Body Parameters
ProjectDataObject| Name | Description | Type | Additional information |
|---|---|---|---|
| ProjectId | string |
None. |
|
| ProjectName | string |
None. |
|
| RequireTime | date |
None. |
|
| ProjectType | string |
None. |
|
| ProjectTypeString | string |
None. |
|
| ProjectAmount | decimal number |
None. |
|
| ShareAmount | decimal number |
None. |
|
| RequireTimeString | string |
None. |
|
| CreateTime | date |
None. |
|
| CreateTimeString | string |
None. |
|
| Process | decimal number |
None. |
|
| ProcessRate | string |
None. |
|
| DeleteFlag | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"projectId": "sample string 1",
"projectName": "sample string 2",
"requireTime": "2026-06-10T07:03:30.4322989+08:00",
"projectType": "sample string 4",
"projectTypeString": "",
"projectAmount": 5.0,
"shareAmount": 6.0,
"requireTimeString": "2026-06-10",
"createTime": "2026-06-10T07:03:30.4322989+08:00",
"createTimeString": "2026-06-10",
"process": 8.0,
"processRate": "800.00%",
"deleteFlag": true
}
application/xml, text/xml
Sample:
<ProjectDataObject xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <ProjectId>sample string 1</ProjectId> <ProjectName>sample string 2</ProjectName> <RequireTime>2026-06-10T07:03:30.4322989+08:00</RequireTime> <ProjectType>sample string 4</ProjectType> <ProjectAmount>5</ProjectAmount> <ShareAmount>6</ShareAmount> <CreateTime>2026-06-10T07:03:30.4322989+08:00</CreateTime> <Process>8</Process> <DeleteFlag>true</DeleteFlag> </ProjectDataObject>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
JsonResultObject| Name | Description | Type | Additional information |
|---|---|---|---|
| IsSucceed | boolean |
None. |
|
| Remark | string |
None. |
|
| OpTime | string |
None. |
|
| Result | Object |
None. |
Response Formats
application/json, text/json
Sample:
{
"isSucceed": true,
"remark": "sample string 2",
"opTime": "sample string 3",
"result": {}
}
application/xml, text/xml
Sample:
<JsonResultObject xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <IsSucceed>true</IsSucceed> <Remark>sample string 2</Remark> <OpTime>sample string 3</OpTime> <Result /> </JsonResultObject>