POST DeliveryTicketAssigned/PostAssignedToCustomer

Gets the count of the Delivery Tickets assigned to the customers.

Request Information

URI Parameters

Body Parameters

The list of customer identifiers to get the count of Delivery Tickets assigned to them.

Collection of CustomerID
NameDescriptionTypeAdditional Information
CustId

string

A list of Agvance Customer IDs to return information for.

Request Formats

application/json, text/json

Sample:
[
  {
    "CustId": "sample string 1"
  },
  {
    "CustId": "sample string 1"
  }
]

application/xml, text/xml

Sample:
<ArrayOfCustomerID xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SKY.Core.Inventory">
  <CustomerID>
    <CustId>sample string 1</CustId>
  </CustomerID>
  <CustomerID>
    <CustId>sample string 1</CustId>
  </CustomerID>
</ArrayOfCustomerID>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'List`1'.

Response Information

Resource Description

Gets the count of the Delivery Tickets assigned to the customers.

AgvDeliveryTicketAssignedToCustomer
NameDescriptionTypeAdditional Information
Status

Status of the API call.

string
Message

Message of the API call.

string
Count

Count of how many Delivery Tickets are assigned to the customer.

string
DeliveryTicketAssignedToCustomerCount

JSON dictionary of DeliveryTicketAssignedToCustomerCount.

Collection of AssignedToCustomer

Response Formats

application/json, text/json

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

application/xml, text/xml

Sample:
<AgvDeliveryTicketAssignedToCustomer xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AgvWebAPICSharp.Models.Inventory.DeliveryTicket">
  <DeliveryTicketAssignedToCustomerCount>
    <AgvDeliveryTicketAssignedToCustomer.AssignedToCustomer>
      <Count>2</Count>
      <CustID>sample string 1</CustID>
    </AgvDeliveryTicketAssignedToCustomer.AssignedToCustomer>
    <AgvDeliveryTicketAssignedToCustomer.AssignedToCustomer>
      <Count>2</Count>
      <CustID>sample string 1</CustID>
    </AgvDeliveryTicketAssignedToCustomer.AssignedToCustomer>
  </DeliveryTicketAssignedToCustomerCount>
  <Message>sample string 2</Message>
  <Status>sample string 1</Status>
</AgvDeliveryTicketAssignedToCustomer>