GET DeliveryTicketDocument/GetDeliveryTicketDocument?userID={userID}&fileName={fileName}

Gets a Delivery Ticket document.

Request Information

URI Parameters

NameDescriptionTypeAdditional Information
userID

The Agvance user ID of the individual who created the Delivery Ticket document.

string

Required

fileName

File name of the Delivery Ticket document.

string

Required

Body Parameters

Response Information

Resource Description

Gets a Delivery Ticket document.

AgvDeliveryTicketDocument
NameDescriptionTypeAdditional Information
Status

Status of the API call.

string
Message

Message of the API call.

string
Count

Count of how many delivery ticket documents were created.

string
DeliveryTicketDocumentFiles

JSON dictionary of delivery ticket document filenames.

Collection of string

Response Formats

application/json, text/json

Sample:
{
  "Status": "sample string 1",
  "Message": "sample string 2",
  "Count": "2",
  "DeliveryTicketDocumentFiles": [
    "sample string 1",
    "sample string 2"
  ]
}

application/xml, text/xml

Sample:
<AgvDeliveryTicketDocument xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AgvWebAPICSharp.Models.Inventory.DeliveryTicket">
  <DeliveryTicketDocumentFiles xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:string>sample string 1</d2p1:string>
    <d2p1:string>sample string 2</d2p1:string>
  </DeliveryTicketDocumentFiles>
  <Message>sample string 2</Message>
  <Status>sample string 1</Status>
</AgvDeliveryTicketDocument>