WebArtworkTransaction - GET

Find Artwork Transactions By Query (requires special permissions).

api/{role}/WebArtworkTransaction
?Artist={Artist}
&ArtworkID={ArtworkID}
&Description={Description}
&ReferenceNo={ReferenceNo}
&TransactionType={TransactionType}
&After={After}
&Before={Before}

Request Information

PropertyNoteConstraints
Artist : string

Artist of Artwork

ArtworkID : string

ID Of Artwork

Description : string

Description of Artwork

ReferenceNo : string

Your Art Reference Number

TransactionType : ArtTransactionType

Returned, Adjust, Return, Shipping_Damage, Received, Sale, NWF_Damage, Defective_Art, Canceled

After : date

After Transaction Date : Default 3 Months From Now

Before : date

Before TransactionDate : Default Today

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-21T05:59:57.7838218-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-21T05:59:57.7838218-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-21T05:59:57.7838218-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-21T05:59:57.7838218-07:00</TransactionDate>
    <TransactionType>test 7</TransactionType>
  </ArtworkTransactionResponseDTO>
</ArrayOfArtworkTransactionResponseDTO>