GET api/WillCall/{UserGUID}

Retruns Orders list which status is set to "WILL CALL"

Request Information

URI Parameters

NameDescriptionTypeAdditional information
UserGUID

string

Required

Body Parameters

None.

Response Information

Resource Description

ActiveWillCallOrdersResp
NameDescriptionTypeAdditional information
Shipments

List of active orders

Collection of WillCallShipmentItem

None.

IsSuccessful

If true, then method call was successful

boolean

None.

ErrorMessage

Contains an error message is method call failed

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Shipments": [
    {
      "OrderNumber": "sample string 1",
      "OtherReference1": "sample string 2",
      "OtherReference2": "sample string 3",
      "PickupCityName": "sample string 4",
      "PickupCountryID": "sample string 5",
      "PickupCountryName": "sample string 6",
      "DeliveryCityName": "sample string 7",
      "DeliveryCountryID": "sample string 8",
      "DeliveryCountryName": "sample string 9",
      "Reference": "sample string 10",
      "Contents": "sample string 11"
    },
    {
      "OrderNumber": "sample string 1",
      "OtherReference1": "sample string 2",
      "OtherReference2": "sample string 3",
      "PickupCityName": "sample string 4",
      "PickupCountryID": "sample string 5",
      "PickupCountryName": "sample string 6",
      "DeliveryCityName": "sample string 7",
      "DeliveryCountryID": "sample string 8",
      "DeliveryCountryName": "sample string 9",
      "Reference": "sample string 10",
      "Contents": "sample string 11"
    }
  ],
  "IsSuccessful": true,
  "ErrorMessage": "sample string 2"
}

application/xml, text/xml

Sample:
<ActiveWillCallOrdersResp xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <IsSuccessful>true</IsSuccessful>
  <ErrorMessage>sample string 2</ErrorMessage>
  <Shipments>
    <WillCallShipmentItem>
      <OrderNumber>sample string 1</OrderNumber>
      <OtherReference1>sample string 2</OtherReference1>
      <OtherReference2>sample string 3</OtherReference2>
      <PickupCityName>sample string 4</PickupCityName>
      <PickupCountryID>sample string 5</PickupCountryID>
      <PickupCountryName>sample string 6</PickupCountryName>
      <DeliveryCityName>sample string 7</DeliveryCityName>
      <DeliveryCountryID>sample string 8</DeliveryCountryID>
      <DeliveryCountryName>sample string 9</DeliveryCountryName>
      <Reference>sample string 10</Reference>
      <Contents>sample string 11</Contents>
    </WillCallShipmentItem>
    <WillCallShipmentItem>
      <OrderNumber>sample string 1</OrderNumber>
      <OtherReference1>sample string 2</OtherReference1>
      <OtherReference2>sample string 3</OtherReference2>
      <PickupCityName>sample string 4</PickupCityName>
      <PickupCountryID>sample string 5</PickupCountryID>
      <PickupCountryName>sample string 6</PickupCountryName>
      <DeliveryCityName>sample string 7</DeliveryCityName>
      <DeliveryCountryID>sample string 8</DeliveryCountryID>
      <DeliveryCountryName>sample string 9</DeliveryCountryName>
      <Reference>sample string 10</Reference>
      <Contents>sample string 11</Contents>
    </WillCallShipmentItem>
  </Shipments>
</ActiveWillCallOrdersResp>