GET api/ProjectPhaseFGItem/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

ProjectPhaseFGItemViewModel
NameDescriptionTypeAdditional information
ProjectPhaseFGItemId

integer

None.

ProjectPhaseId

integer

None.

ItemId

integer

None.

Quantity

decimal number

None.

ItemCode

string

None.

ItemName

string

None.

ProjectPhaseCode

string

None.

ProjectPhaseName

string

None.

UomId

integer

None.

UomAbbr

string

None.

UomName

string

None.

ProjectId

integer

None.

BOMIds

Collection of integer

None.

BOMId

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "ProjectPhaseFGItemId": 1,
  "ProjectPhaseId": 2,
  "ItemId": 3,
  "Quantity": 4.1,
  "ItemCode": "sample string 5",
  "ItemName": "sample string 6",
  "ProjectPhaseCode": "sample string 7",
  "ProjectPhaseName": "sample string 8",
  "UomId": 9,
  "UomAbbr": "sample string 10",
  "UomName": "sample string 11",
  "ProjectId": 12,
  "BOMIds": [
    1,
    2
  ],
  "BOMId": 13
}

application/xml, text/xml

Sample:
<ProjectPhaseFGItemViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Netsoft.Web.Api.ViewModel">
  <BOMId>13</BOMId>
  <BOMIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:long>1</d2p1:long>
    <d2p1:long>2</d2p1:long>
  </BOMIds>
  <ItemCode>sample string 5</ItemCode>
  <ItemId>3</ItemId>
  <ItemName>sample string 6</ItemName>
  <ProjectId>12</ProjectId>
  <ProjectPhaseCode>sample string 7</ProjectPhaseCode>
  <ProjectPhaseFGItemId>1</ProjectPhaseFGItemId>
  <ProjectPhaseId>2</ProjectPhaseId>
  <ProjectPhaseName>sample string 8</ProjectPhaseName>
  <Quantity>4.1</Quantity>
  <UomAbbr>sample string 10</UomAbbr>
  <UomId>9</UomId>
  <UomName>sample string 11</UomName>
</ProjectPhaseFGItemViewModel>