POST api/projects/create
Request Information
URI Parameters
None.
Body Parameters
NewProjectModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Name | string |
None. |
|
| ClientName | string |
None. |
|
| Location | string |
None. |
|
| Description | string |
None. |
|
| EmployeeId | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"Name": "sample string 1",
"ClientName": "sample string 2",
"Location": "sample string 3",
"Description": "sample string 4",
"EmployeeId": 5
}
application/xml, text/xml
Sample:
<NewProjectModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BizBook.Models.NewModel"> <ClientName>sample string 2</ClientName> <Description>sample string 4</Description> <EmployeeId>5</EmployeeId> <Location>sample string 3</Location> <Name>sample string 1</Name> </NewProjectModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
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. |