warehouse_profile_create
Arguments
Return Type
WarehouseProfileCreateOutput
Mutation
mutation warehouse_profile_create(
$data: WarehouseProfileCreateInput!
) {
warehouse_profile_create(
data: $data
) {
request_id
complexity
warehouse_profile {
...WarehouseProfileFragment
id
legacy_id
account_id
identifier
dynamic_slotting
invoice_email
invoice_note
invoice_logo_url
phone_number
profile
language
manual_order_prefix
show_phone_on_invoice
only_pick_orders_with_required_ship_date_today_or_earlier
exclude_stock_from_available_to_sell
address {
...AddressFragment
name
address1
address2
city
state
country
zip
phone
}
return_address {
...AddressFragment
name
address1
address2
city
state
country
zip
phone
}
invoice_address {
...AddressFragment
name
address1
address2
city
state
country
zip
phone
}
label_address {
...AddressFragment
name
address1
address2
city
state
country
zip
phone
}
company_name
company_alias
active
products {
...ProductConnectionFragment
pageInfo {
...PageInfoFragment
hasNextPage
hasPreviousPage
startCursor
endCursor
}
edges {
...ProductEdgeFragment
node {
...ProductFragment
id
legacy_id
account_id
name
sku
price
value
value_currency
barcode
country_of_manufacture
dimensions {
...DimensionsFragment
weight
height
width
length
}
tariff_code
kit
kit_build
no_air
final_sale
customs_value
customs_description
not_owned
dropship
needs_serial_number
thumbnail
large_thumbnail
created_at
updated_at
product_note
virtual
ignore_on_invoice
ignore_on_customs
active
needs_lot_tracking
is_assembly
packer_note
size
style
vendor_part_number
consumer_package_code
buyer_part_number
buyer_style_number
auto_pack
warehouse_products {
...WarehouseProductFragment
id
legacy_id
account_id
sku
warehouse_id
warehouse_identifier
price
value
value_currency
on_hand
inventory_bin
inventory_overstock_bin
reserve_inventory
replenishment_level
replenishment_max_level
replenishment_increment
reorder_amount
reorder_level
backorder
allocated
available
non_sellable_quantity
in_tote
custom
customs_value
created_at
updated_at
sell_ahead
active
warehouse {
...WarehouseFragment
id
legacy_id
account_id
identifier
dynamic_slotting
invoice_email
invoice_note
invoice_logo_url
phone_number
profile
language
manual_order_prefix
show_phone_on_invoice
only_pick_orders_with_required_ship_date_today_or_earlier
exclude_stock_from_available_to_sell
address {
...AddressFragment
name
address1
address2
city
state
country
zip
phone
}
return_address {
...AddressFragment
name
address1
address2
city
state
country
zip
phone
}
invoice_address {
...AddressFragment
name
address1
address2
city
state
country
zip
phone
}
label_address {
...AddressFragment
name
address1
address2
city
state
country
zip
phone
}
company_name
company_alias
active
products {
...ProductConnectionFragment
}
}
product {
...ProductFragment
}
inbounds {
...WarehouseProductInboundConnectionFragment
pageInfo {
...PageInfoFragment
hasNextPage
hasPreviousPage
startCursor
endCursor
}
edges {
...WarehouseProductInboundEdgeFragment
node {
...WarehouseProductInboundFragment
id
legacy_id
sku
warehouse_id
po_id
purchase_order_line_item_id
po_date
quantity
quantity_received
quantity_rejected
sell_ahead
status
}
cursor
}
}
locations {
...ItemLocationConnectionFragment
pageInfo {
...PageInfoFragment
hasNextPage
hasPreviousPage
startCursor
endCursor
}
edges {
...ItemLocationEdgeFragment
node {
...ItemLocationFragment
id
legacy_id
account_id
warehouse_id
location_id
sku
quantity
loose_quantity
allocated_quantity
created_at
updated_at
location {
...LocationFragment
}
location_type {
...LocationTypeFragment
}
expiration_lot {
...LotFragment
}
lpns {
...LicensePlateNumberConnectionFragment
}
product {
...ProductFragment
}
warehouse_product {
...WarehouseProductFragment
}
}
cursor
}
}
}
fba_inventory {
...FbaInventoryFragment
id
legacy_id
quantity
marketplace_id
merchant_id
}
images {
...ProductImageFragment
src
position
}
tags
vendors {
...ProductVendorFragment
vendor_id
vendor_sku
price
}
components {
...ProductFragment
}
kit_components {
...KitComponentFragment
id
legacy_id
account_id
sku
quantity
product {
...ProductFragment
}
}
assembly_components {
...AssemblyComponentFragment
id
legacy_id
account_id
sku
quantity
}
cases {
...CaseFragment
id
legacy_id
case_barcode
case_quantity
}
}
cursor
}
}
warehouse_id
}
}
}
Variables
{
"data": {
"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
}
}
Response
{
"data": {
"warehouse_profile_create": {
"request_id": "UmVjb3JkOjEyMzQ=",
"complexity": 100,
"warehouse_profile": WarehouseProfile
}
}
}