WebArtworkTransaction - GET

Find artwork transactions by Reference Number (requires special permissions).

api/{role}/WebArtworkTransaction/{id}

Request Information

PropertyNoteConstraints
id : string

Reference Number

Required

role : string

Response Information

PropertyNoteConstraints
Artist : string
ArtworkID : string
Comments : string
Description : string
Quantity : integer
ReferenceNo : string
TransactionDate : date
TransactionType : string

Response Formats

application/json, text/json

[
  {
    "artist": "test 1",
    "artworkID": "test 2",
    "comments": "test 3",
    "description": "test 4",
    "quantity": 5,
    "referenceNo": "test 6",
    "transactionDate": "2024-03-20T01:36:12.4359834-07:00",
    "transactionType": "test 7"
  },
  {
    "artist": "test 1",
    "artworkID": "test 2",
    "comments": "test 3",
    "description": "test 4",
    "quantity": 5,
    "referenceNo": "test 6",
    "transactionDate": "2024-03-20T01:36:12.4359834-07:00",
    "transactionType": "test 7"
  }
]

application/xml, text/xml

<ArrayOfArtworkTransactionResponseDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FOTS.DTO">
  <ArtworkTransactionResponseDTO>
    <Artist>test 1</Artist>
    <ArtworkID>test 2</ArtworkID>
    <Comments>test 3</Comments>
    <Description>test 4</Description>
    <Quantity>5</Quantity>
    <ReferenceNo>test 6</ReferenceNo>
    <TransactionDate>2024-03-20T01:36:12.4359834-07:00</TransactionDate>
    <TransactionType>test 7</TransactionType>
  </ArtworkTransactionResponseDTO>
  <ArtworkTransactionResponseDTO>
    <Artist>test 1</Artist>
    <ArtworkID>test 2</ArtworkID>
    <Comments>test 3</Comments>
    <Description>test 4</Description>
    <Quantity>5</Quantity>
    <ReferenceNo>test 6</ReferenceNo>
    <TransactionDate>2024-03-20T01:36:12.4359834-07:00</TransactionDate>
    <TransactionType>test 7</TransactionType>
  </ArtworkTransactionResponseDTO>
</ArrayOfArtworkTransactionResponseDTO>