POST api/create/project
Request Information
URI Parameters
None.
Body Parameters
CreateProject| Name | Description | Type | Additional information |
|---|---|---|---|
| ProjectName | string |
None. |
|
| ProjectArea | string |
None. |
|
| CustomerId | integer |
None. |
|
| ProjStartDate | date |
None. |
|
| ProjEndDate | date |
None. |
|
| CreatedBy | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"ProjectName": "sample string 1",
"ProjectArea": "sample string 2",
"CustomerId": 3,
"ProjStartDate": "2025-12-05T21:04:58.1789968-08:00",
"ProjEndDate": "2025-12-05T21:04:58.1789968-08:00",
"CreatedBy": 6
}
application/xml, text/xml
Sample:
<CreateProject xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/working_sample_mvc_api.Models"> <CreatedBy>6</CreatedBy> <CustomerId>3</CustomerId> <ProjEndDate>2025-12-05T21:04:58.1789968-08:00</ProjEndDate> <ProjStartDate>2025-12-05T21:04:58.1789968-08:00</ProjStartDate> <ProjectArea>sample string 2</ProjectArea> <ProjectName>sample string 1</ProjectName> </CreateProject>
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.