Edit in GitHubLog an issue

Step 2. Create sources

Sources are the physical locations from which you manage product inventory and ship orders. These locations can include warehouses, brick-and-mortar stores, distribution centers, and drop shippers. Adobe Commerce leverages the quantities and salable quantities per stock and manages inventory amounts automatically for managed products and orders. Virtual and downloadable products can also be assigned to a source.

You cannot delete or disable the default source. You can create, modify, enable, and disable custom sources, but you cannot delete them.

This step guides you through the process of creating sources for your inventory, including warehouses for the physical products and another source for virtual and downloadable products.

For more information about sources, see Inventory Management overview.

Create the first source

The POST V1/inventory/sources endpoint creates the Baltimore Warehouse (baltimore_wh) source. The name, source_code, country_id, and postcode attributes are required. The latitude, longitude, and other address-related attributes enable the Distance Priority Source Selection Algorithm (SSA) to calculate the distance between the source and the shipping address. The value assigned to source_code cannot be changed.

The source_code values will be used in subsequent steps.

Endpoint:

POST <host>/rest/default/V1/inventory/sources

Scope:

default store view

Headers:

Content-Type: application/json

Authorization: Bearer <admin_token>

Payload:

Copied to your clipboard
{
"source" : {
"name" : "Northeast Warehouse",
"source_code" : "ne_wh",
"postcode" : "07306",
"enabled" : true,
"contact_name" : "Ethan Carter",
"country_id" : "US",
"street": "645 Newark Ave.",
"city" : "Jersey City",
"region_id": 41,
"region": "New Jersey",
"latitude": 40.733790,
"longitude": -74.058720
}
}

Response:

Commerce returns an empty array.

[]

Add more sources

Use the same endpoint to create a source for the Leipzig warehouse. We will designate the Brooklyn, Huntington, Manhattan, Berlin, and Frankfurt stores as in-store pick up locations. We will also create the HQ source for virtual and downloadable products.

West warehouse

Use the following payload to create the Leipzig warehouse:

Copied to your clipboard
{
"source" : {
"name" : "West Warehouse",
"source_code" : "west_wh",
"postcode" : "95207",
"enabled" : true,
"contact_name" : "Claudia Mabuse",
"country_id" : "US",
"street": "7554 Pacific Ave",
"city" : "Stockton",
"region_id": 12,
"region": "California",
"latitude": 38.018180,
"longitude": -121.319930
}
}

Brooklyn store

Use the following payload to create the Brooklyn store.

Copied to your clipboard
{
"source" : {
"name" : "Brooklyn Store",
"source_code" : "brooklyn",
"postcode" : "11211",
"enabled" : true,
"contact_name" : "Tai Hozie",
"country_id" : "US",
"street": "263 S 4th St",
"city" : "Brooklyn",
"region_id": 43,
"region": "New York",
"latitude": 40.710070,
"longitude": -73.957160,
"phone": "555 737-8088",
"extension_attributes": {
"is_pickup_location_active": true,
"frontend_name": "Brooklyn (Williamsburg) Store",
"frontend_description": "Williamsburg, Brooklyn"
}
}
}

Long Island store

Use the following payload to create the Long Island store:

Copied to your clipboard
{
"source" : {
"name" : "Long Island Store",
"source_code" : "huntington",
"postcode" : "11743",
"enabled" : true,
"contact_name" : "Leslie Arzy",
"country_id" : "US",
"street": "55 Gerard St,",
"city" : "Huntington",
"region_id": 43,
"region": "New York",
"latitude": 40.872510,
"longitude": -73.429352,
"phone": "555 939-4444",
"extension_attributes": {
"is_pickup_location_active": true,
"frontend_name": "Long Island (Huntington) Store",
"frontend_description": "Huntington, Long Island"
}
}
}

Manhattan store

Use the following payload to create the Manhattan store:

Copied to your clipboard
{
"source" : {
"name" : "Manhattan Store",
"source_code" : "manhattan",
"postcode" : "10011",
"enabled" : true,
"contact_name" : "Kiara Smith",
"country_id" : "US",
"street": "70 W. 10th St",
"city" : "New York",
"region_id": 43,
"region": "New York",
"latitude": 40.734600,
"longitude": -73.998490,
"phone": "555 838-4500",
"extension_attributes": {
"is_pickup_location_active": true,
"frontend_name": "Manhattan (Greenwich Village) Store",
"frontend_description": "Greenwich Village, Manhattan"
}
}
}

Berkeley store

Use the following payload to create the Berkeley store:

Copied to your clipboard
{
"source" : {
"name" : "Berkeley Store",
"source_code" : "berkeley",
"postcode" : "94705",
"enabled" : true,
"contact_name" : "Tereza Schmidt",
"country_id" : "US",
"street": "2705 Webster St",
"city" : "Berkeley",
"region_id": 12,
"region": "California",
"latitude": 37.855850,
"longitude": -122.252460,
"phone": "510 555-2020",
"extension_attributes": {
"is_pickup_location_active": true,
"frontend_name": "Berkeley Store",
"frontend_description": "Near College Ave. and Ashby Ave."
}
}
}

Sausalito store

Use the following payload to create the Frankfurt store:

Copied to your clipboard
{
"source" : {
"name" : "Sausalito Store",
"source_code" : "sausalito",
"postcode" : "94965",
"enabled" : true,
"contact_name" : "Ralf Schneider",
"country_id" : "US",
"street": "150 Harbor Dr.",
"city" : "Sausalito",
"region_id": 12,
"region": "California",
"latitude": 37.867168,
"longitude": -122.499367,
"phone": "415-555-6666",
"extension_attributes": {
"is_pickup_location_active": true,
"frontend_name": "Sausalito Store",
"frontend_description": "Just off Bridgeway"
}
}
}

Headquarters

The hq source will fulfill virtual and downloadable products.

Copied to your clipboard
{
"source" : {
"name" : "HQ",
"source_code" : "hq",
"postcode" : "10022",
"enabled" : true,
"contact_name" : "Francine Helen",
"country_id" : "US",
"street": "909 3rd Ave",
"city" : "New York",
"region_id": 43,
"region": "New York",
"latitude": 40.7571,
"longitude": -73.9657
}
}

Verify this step

In Admin, click Stores > Inventory > Sources. The new sources are displayed in the Sources grid.

  • Privacy
  • Terms of Use
  • Do not sell or share my personal information
  • AdChoices
Copyright © 2024 Adobe. All rights reserved.