WebArtworkInventory - GET

Find artwork Inventory by Artwork ID (requires special permissions).

api/{role}/WebArtworkInventory/{id}

Request Information

PropertyNoteConstraints
id : string

Artwork ID

Required

role : string

Response Information

PropertyNoteConstraints
Artist : string
ArtworkID : string
Description : string
Par : integer
QuantityOnHand : integer

Response Formats

application/json, text/json

[
  {
    "artist": "test 1",
    "artworkID": "test 2",
    "description": "test 3",
    "par": 4,
    "quantityOnHand": 5
  },
  {
    "artist": "test 1",
    "artworkID": "test 2",
    "description": "test 3",
    "par": 4,
    "quantityOnHand": 5
  }
]

application/xml, text/xml

<ArrayOfWebArtworkInventoryResponseDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FOTS.DTO">
  <WebArtworkInventoryResponseDTO>
    <Artist>test 1</Artist>
    <ArtworkID>test 2</ArtworkID>
    <Description>test 3</Description>
    <Par>4</Par>
    <QuantityOnHand>5</QuantityOnHand>
  </WebArtworkInventoryResponseDTO>
  <WebArtworkInventoryResponseDTO>
    <Artist>test 1</Artist>
    <ArtworkID>test 2</ArtworkID>
    <Description>test 3</Description>
    <Par>4</Par>
    <QuantityOnHand>5</QuantityOnHand>
  </WebArtworkInventoryResponseDTO>
</ArrayOfWebArtworkInventoryResponseDTO>