GET api/Parts/GetWindshieldsList?vehicleId={vehicleId}&omitNotPricedParts={omitNotPricedParts}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
vehicleId

integer

Required

omitNotPricedParts

boolean

Default value is False

Body Parameters

None.

Response Information

Resource Description

Collection of GlassPartModel
NameDescriptionTypeAdditional information
NagsGlassId

string

None.

Description

string

None.

BlockSize

string

None.

NagsLabor

decimal number

None.

GlassNote

string

None.

RangeNote

string

None.

VehicleGlassNote

string

None.

DisplayOrder

integer

None.

GraphicId

string

None.

HasInterchange

boolean

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "NagsGlassId": "sample string 1",
    "Description": "sample string 2",
    "BlockSize": "sample string 3",
    "NagsLabor": 1.0,
    "GlassNote": "sample string 4",
    "RangeNote": "sample string 5",
    "VehicleGlassNote": "sample string 6",
    "DisplayOrder": 7,
    "GraphicId": "sample string 8",
    "HasInterchange": true
  },
  {
    "NagsGlassId": "sample string 1",
    "Description": "sample string 2",
    "BlockSize": "sample string 3",
    "NagsLabor": 1.0,
    "GlassNote": "sample string 4",
    "RangeNote": "sample string 5",
    "VehicleGlassNote": "sample string 6",
    "DisplayOrder": 7,
    "GraphicId": "sample string 8",
    "HasInterchange": true
  }
]

application/xml, text/xml

Sample:
<ArrayOfGlassPartModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Ibs.Nags.Domain.Models">
  <GlassPartModel>
    <BlockSize>sample string 3</BlockSize>
    <Description>sample string 2</Description>
    <DisplayOrder>7</DisplayOrder>
    <GlassNote>sample string 4</GlassNote>
    <GraphicId>sample string 8</GraphicId>
    <HasInterchange>true</HasInterchange>
    <NagsGlassId>sample string 1</NagsGlassId>
    <NagsLabor>1</NagsLabor>
    <RangeNote>sample string 5</RangeNote>
    <VehicleGlassNote>sample string 6</VehicleGlassNote>
  </GlassPartModel>
  <GlassPartModel>
    <BlockSize>sample string 3</BlockSize>
    <Description>sample string 2</Description>
    <DisplayOrder>7</DisplayOrder>
    <GlassNote>sample string 4</GlassNote>
    <GraphicId>sample string 8</GraphicId>
    <HasInterchange>true</HasInterchange>
    <NagsGlassId>sample string 1</NagsGlassId>
    <NagsLabor>1</NagsLabor>
    <RangeNote>sample string 5</RangeNote>
    <VehicleGlassNote>sample string 6</VehicleGlassNote>
  </GlassPartModel>
</ArrayOfGlassPartModel>