input WarehouseProfileCreateInput
Fields
| Field | Type | Description |
|---|---|---|
warehouse_id | String! | Public API ID of the physical warehouse that will own this profile. |
profile | String! | Non-default profile name. |
invoice_address | WarehouseProfileAddressInput! | Sender/company address displayed on invoices. |
label_address | WarehouseProfileAddressInput! | Return address displayed on shipping labels. |
phone_number | String | Contact phone number. |
invoice_email | String | Invoice contact email. |
invoice_note | String | Note displayed on invoices. |
invoice_logo_url | String | Public HTTPS URL of a PNG or JPEG logo. ShipHero downloads and stores the image in S3. |
language | String | Invoice language code. |
manual_order_prefix | String | Prefix for manual orders, up to 10 characters. |
show_phone_on_invoice | Boolean | Whether to display the phone number on invoices. |
only_pick_orders_with_required_ship_date_today_or_earlier | Boolean | Whether picking is limited to orders required to ship today or earlier. |
exclude_stock_from_available_to_sell | Boolean | Whether this warehouse profile's stock is excluded from available-to-sell calculations. |
Referenced By
- warehouse_profile_create Mutation
Example
{
"warehouse_id": "abc123",
"profile": "Retail Store",
"invoice_address": WarehouseProfileAddressInput,
"label_address": WarehouseProfileAddressInput,
"phone_number": "+1-555-0100",
"invoice_email": "invoices@example.com",
"invoice_note": "Thank you for your order.",
"invoice_logo_url": "abc123",
"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
}