GET DeliveryTicketDocument/CreateDeliveryTicketDocuments?uniqueKey={uniqueKey}&createDt={createDt}&createHazMat={createHazMat}&createSds={createSds}&createWps={createWps}

Creates Delivery Ticket documents and returns the filename of the documents.

Request Information

URI Parameters

NameDescriptionTypeAdditional Information
uniqueKey

The Unique Key identifier that points to the Delivery Ticket record.

integer

Required

createDt

True or False to create the delivery ticket. The default is False. (optional)

boolean

Default value is False

createHazMat

True or False to create the haz mat sheet. The default is False. (optional)

boolean

Default value is False

createSds

True or False to create the safety data sheet. The default is False. (optional)

boolean

Default value is False

createWps

True or False to create the worker protection sheet. The default is False. (optional)

boolean

Default value is False

Body Parameters

Response Information

Resource Description

Creates Delivery Ticket documents and returns the filename of the documents.

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>