GET api/ProjectMaster/GetById?Id={Id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
Id

integer

Required

Body Parameters

None.

Response Information

Resource Description

ProjectMaster
NameDescriptionTypeAdditional information
Id

integer

None.

ProjectName

string

None.

ProjectNumber

string

None.

IsArchive

boolean

None.

CreatedOn

string

None.

CreatedBy

string

None.

UpdatedOn

string

None.

UpdatedBy

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "ProjectName": "sample string 2",
  "ProjectNumber": "sample string 3",
  "IsArchive": true,
  "CreatedOn": "sample string 5",
  "CreatedBy": "sample string 6",
  "UpdatedOn": "sample string 7",
  "UpdatedBy": "sample string 8"
}

application/xml, text/xml

Sample:
<ProjectMaster xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebApplication5.Models">
  <CreatedBy>sample string 6</CreatedBy>
  <CreatedOn>sample string 5</CreatedOn>
  <Id>1</Id>
  <IsArchive>true</IsArchive>
  <ProjectName>sample string 2</ProjectName>
  <ProjectNumber>sample string 3</ProjectNumber>
  <UpdatedBy>sample string 8</UpdatedBy>
  <UpdatedOn>sample string 7</UpdatedOn>
</ProjectMaster>