GET api/Clothing/DisplayAllSizesT?clothingId={clothingId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
clothingId

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of ClothingTopMeasurementsModel
NameDescriptionTypeAdditional information
SizeID

integer

None.

SizeShirtID

integer

None.

ClothingStandards

string

None.

ClothingSize

string

None.

ClothingSizeEU

string

None.

ClothingSizeUK

string

None.

ClothingSizeUS

string

None.

ClothingNeckSize

integer

None.

ClothingWaistSize

integer

None.

ClothingSleeveSize

integer

None.

ClothingChestSize

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "SizeID": 1,
    "SizeShirtID": 2,
    "ClothingStandards": "sample string 3",
    "ClothingSize": "sample string 4",
    "ClothingSizeEU": "sample string 5",
    "ClothingSizeUK": "sample string 6",
    "ClothingSizeUS": "sample string 7",
    "ClothingNeckSize": 8,
    "ClothingWaistSize": 9,
    "ClothingSleeveSize": 10,
    "ClothingChestSize": 11
  },
  {
    "SizeID": 1,
    "SizeShirtID": 2,
    "ClothingStandards": "sample string 3",
    "ClothingSize": "sample string 4",
    "ClothingSizeEU": "sample string 5",
    "ClothingSizeUK": "sample string 6",
    "ClothingSizeUS": "sample string 7",
    "ClothingNeckSize": 8,
    "ClothingWaistSize": 9,
    "ClothingSleeveSize": 10,
    "ClothingChestSize": 11
  }
]

application/xml, text/xml

Sample:
<ArrayOfClothingTopMeasurementsModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Model_z_webAPIService.Models">
  <ClothingTopMeasurementsModel>
    <ClothingChestSize>11</ClothingChestSize>
    <ClothingNeckSize>8</ClothingNeckSize>
    <ClothingSize>sample string 4</ClothingSize>
    <ClothingSizeEU>sample string 5</ClothingSizeEU>
    <ClothingSizeUK>sample string 6</ClothingSizeUK>
    <ClothingSizeUS>sample string 7</ClothingSizeUS>
    <ClothingSleeveSize>10</ClothingSleeveSize>
    <ClothingStandards>sample string 3</ClothingStandards>
    <ClothingWaistSize>9</ClothingWaistSize>
    <SizeID>1</SizeID>
    <SizeShirtID>2</SizeShirtID>
  </ClothingTopMeasurementsModel>
  <ClothingTopMeasurementsModel>
    <ClothingChestSize>11</ClothingChestSize>
    <ClothingNeckSize>8</ClothingNeckSize>
    <ClothingSize>sample string 4</ClothingSize>
    <ClothingSizeEU>sample string 5</ClothingSizeEU>
    <ClothingSizeUK>sample string 6</ClothingSizeUK>
    <ClothingSizeUS>sample string 7</ClothingSizeUS>
    <ClothingSleeveSize>10</ClothingSleeveSize>
    <ClothingStandards>sample string 3</ClothingStandards>
    <ClothingWaistSize>9</ClothingWaistSize>
    <SizeID>1</SizeID>
    <SizeShirtID>2</SizeShirtID>
  </ClothingTopMeasurementsModel>
</ArrayOfClothingTopMeasurementsModel>