GET
/
api
/
v1
/
Transfers
{
  "isSuccess": true,
  "message": "<string>",
  "payload": [
    {
      "headerId": "123",
      "referenceNumber": "<string>",
      "supplierReferenceNumber": "<string>",
      "fromWarehouseCode": "GLW, WDI, PSO, SMA, SHW",
      "fromWarehouseName": "Glenwillow, Green Island, Paso Robles, Santa Maria, Willamette Valley",
      "toWarehouseCode": "GLW, WDI, PSO, SMA, SHW",
      "toWarehouseName": "Glenwillow, Green Island, Paso Robles, Santa Maria, Willamette Valley",
      "statusCode": "<string>",
      "statusCodeName": "<string>",
      "supplierId": "<string>",
      "submittedDate": "2023-11-07T05:31:56Z",
      "closedDate": "2023-11-07T05:31:56Z",
      "createdDate": "2023-11-07T05:31:56Z",
      "updatedDate": "2023-11-07T05:31:56Z",
      "expectedDate": "2023-11-07T05:31:56Z",
      "inventories": [
        {
          "lineId": "<string>",
          "inventoryItemId": "<string>",
          "headerId": "<string>",
          "lineNumber": "<string>",
          "toSubInventoryCode": "<string>",
          "toSubInventoryName": "<string>",
          "fromSubInventoryCode": "<string>",
          "fromSubInventoryName": "<string>",
          "qtyTransferIn": 123,
          "qtyTransferOut": 123,
          "qtyReceived": 123,
          "qtyShipped": 123,
          "sku": "<string>",
          "wineDirectSku": "<string>",
          "description": "<string>",
          "createdDate": "2023-11-07T05:31:56Z",
          "updatedDate": "2023-11-07T05:31:56Z"
        }
      ]
    }
  ]
}

Authorizations

Authorization
string
header
required

Enter the Bearer AccessToken; Example: 'Bearer 12345abcdef'

Query Parameters

statusCode
string
required

The Status of the transfers.

"ALL" - All
"NEW" - Draft
"INPROCESS" - Submitted
"INTRANSIT" - In Transit
"COMPLETE" - Complete
"CANCELLED" - Cancelled
"CLOSED" - Closed
Minimum length: 2
startDate
string<date-time>

The start date for the query

Defaults to 30 days in the past if not set. eg 2022-03-15 (YYYY-MM-DD)

endDate
string<date-time>

The end date for the query

Defaults to today if not set eg 2022-03-15 (YYYY-MM-DD)

supplierId
string
required

SupplierId is the unique ID for the owner of items in the system

Minimum length: 2
fromWarehouseCode
string
required

The warehouse (Code)

"GLW" - Glenwillow,
"WDI" - Green Island,
"PSO" - Paso Robles,
"SMA" - Santa Maria,
"SHW" - Willamette Valley
"DAL" - Dallas
toWarehouseCode
string
required

The warehouse (Code)

"GLW" - Glenwillow,
"WDI" - Green Island,
"PSO" - Paso Robles,
"SMA" - Santa Maria,
"SHW" - Willamette Valley
"DAL" - Dallas
unassignedOnly
boolean
default:true
required

Whether to restrict the search to Transfers that have not been assigned to Trucks

Defaults to False: (Return transfers either assigned or not yet assigned to a truck.)

Response

200 - application/json

Returns the Inter-Center Transfers

Generic container for all service responses