GET api/Clothing/OutfitClothing?profileId={profileId}&outfitId={outfitId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
profileId

string

Required

outfitId

integer

Required

Body Parameters

None.

Response Information

Resource Description

OutfitModel
NameDescriptionTypeAdditional information
OutfitNum

integer

None.

OutfitID

string

None.

ClothingID_0

integer

None.

ClothingID_1

integer

None.

ClothingID_2

integer

None.

ClothingID_3

integer

None.

ClothingID_4

integer

None.

ClothingID_5

integer

None.

ClothingID_6

integer

None.

ClothingID_7

integer

None.

OutfitName

string

None.

OutfitType

string

None.

OutfitCategory

string

None.

OutfitCostPrice

decimal number

None.

OutfitSellPrice

decimal number

None.

OutfitDiscPrice

decimal number

None.

OutfitImgUrl

string

None.

OutfitImgUrlAlt

string

None.

OutfitVideoId

string

None.

OutfitCreateDate

date

None.

Response Formats

application/json, text/json

Sample:
{
  "OutfitNum": 1,
  "OutfitID": "sample string 2",
  "ClothingID_0": 3,
  "ClothingID_1": 4,
  "ClothingID_2": 5,
  "ClothingID_3": 6,
  "ClothingID_4": 7,
  "ClothingID_5": 8,
  "ClothingID_6": 9,
  "ClothingID_7": 10,
  "OutfitName": "sample string 11",
  "OutfitType": "sample string 12",
  "OutfitCategory": "sample string 13",
  "OutfitCostPrice": 14.0,
  "OutfitSellPrice": 15.0,
  "OutfitDiscPrice": 16.0,
  "OutfitImgUrl": "sample string 17",
  "OutfitImgUrlAlt": "sample string 18",
  "OutfitVideoId": "sample string 19",
  "OutfitCreateDate": "2025-06-16T22:56:04.1859375-05:00"
}

application/xml, text/xml

Sample:
<OutfitModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Model_z_webAPIService.Models">
  <ClothingID_0>3</ClothingID_0>
  <ClothingID_1>4</ClothingID_1>
  <ClothingID_2>5</ClothingID_2>
  <ClothingID_3>6</ClothingID_3>
  <ClothingID_4>7</ClothingID_4>
  <ClothingID_5>8</ClothingID_5>
  <ClothingID_6>9</ClothingID_6>
  <ClothingID_7>10</ClothingID_7>
  <OutfitCategory>sample string 13</OutfitCategory>
  <OutfitCostPrice>14</OutfitCostPrice>
  <OutfitCreateDate>2025-06-16T22:56:04.1859375-05:00</OutfitCreateDate>
  <OutfitDiscPrice>16</OutfitDiscPrice>
  <OutfitID>sample string 2</OutfitID>
  <OutfitImgUrl>sample string 17</OutfitImgUrl>
  <OutfitImgUrlAlt>sample string 18</OutfitImgUrlAlt>
  <OutfitName>sample string 11</OutfitName>
  <OutfitNum>1</OutfitNum>
  <OutfitSellPrice>15</OutfitSellPrice>
  <OutfitType>sample string 12</OutfitType>
  <OutfitVideoId>sample string 19</OutfitVideoId>
</OutfitModel>