object WarehouseProfile

Fields

FieldTypeDescription
idString

Public API ID for this identifiable.

legacy_idBigInt

Numeric legacy ID for this identifiable; use only where legacy IDs are required.

account_idString

Public API account ID that identifies the related record.

identifierString

Name of the warehouse.

dynamic_slottingBoolean

Whether dynamic slotting is enabled for this warehouse.

invoice_emailString

Email address for the invoice contact.

invoice_noteString

Note displayed on invoices.

invoice_logo_urlString

Shareable URL of the invoice logo stored by ShipHero.

phone_numberString

Phone number for the phone number contact.

profileString

Profile for this warehouse.

languageString

Invoice language code.

manual_order_prefixString

Prefix used for manually created orders.

show_phone_on_invoiceBoolean

Whether the phone number is displayed on invoices.

only_pick_orders_with_required_ship_date_today_or_earlierBoolean

Whether picking is limited to orders required to ship today or earlier.

exclude_stock_from_available_to_sellBoolean

Whether this warehouse profile's stock is excluded from available-to-sell calculations.

addressAddress

Address details for this warehouse.

return_addressAddress

Return address for this warehouse.

invoice_addressAddress

Sender/company address displayed on invoices.

label_addressAddress

Return address displayed on shipping labels.

company_nameString

Company name for this warehouse.

company_aliasString

Company alias for this warehouse.

activeBoolean

Whether this warehouse is active.

productsProductConnection

List of products associated with this warehouse.

ArgumentTypeRequiredDefaultDescription
sortStringNo
beforeStringNo
afterStringNo
firstIntNo
lastIntNo
warehouse_idString

Public API ID of the source physical warehouse associated with this profile.

Referenced By

Example

{
  "id": "UmVjb3JkOjEyMzQ=",
  "legacy_id": 1234,
  "account_id": "V2FyZWhvdXNlOjEyMzQ=",
  "identifier": "Primary Warehouse",
  "dynamic_slotting": true,
  "invoice_email": "customer@example.com",
  "invoice_note": "Thank you for your order.",
  "invoice_logo_url": "abc123",
  "phone_number": "+1-555-0100",
  "profile": "default",
  "language": "en",
  "manual_order_prefix": "MO",
  "show_phone_on_invoice": true,
  "only_pick_orders_with_required_ship_date_today_or_earlier": true,
  "exclude_stock_from_available_to_sell": true,
  "address": {address1: "123 Fulfillment Ave", city: "New York", country: "US"},
  "return_address": {address1: "123 Fulfillment Ave", city: "New York", country: "US"},
  "invoice_address": Address,
  "label_address": Address,
  "company_name": "Acme Corp",
  "company_alias": "Acme Corp",
  "active": true,
  "products": [{sku: "BLUE-TEE-M", name: "Blue Tee"}],
  "warehouse_id": "abc123"
}