POST api/projectlocation/save

Request Information

URI Parameters

None.

Body Parameters

ProjectlocationModel
NameDescriptionTypeAdditional information
ProjectLocationID

integer

None.

ProjectID

integer

None.

ProjectName

string

None.

AddressOne

string

None.

AddressTwo

string

None.

IsActive

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "ProjectLocationID": 1,
  "ProjectID": 2,
  "ProjectName": "sample string 3",
  "AddressOne": "sample string 4",
  "AddressTwo": "sample string 5",
  "IsActive": true
}

application/xml, text/xml

Sample:
<ProjectlocationModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ApprovalManagementAPI.Models">
  <AddressOne>sample string 4</AddressOne>
  <AddressTwo>sample string 5</AddressTwo>
  <IsActive>true</IsActive>
  <ProjectID>2</ProjectID>
  <ProjectLocationID>1</ProjectLocationID>
  <ProjectName>sample string 3</ProjectName>
</ProjectlocationModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.