Create an inventory return location

How to create an inventory return location via API

To create a new inventory return location, send a POST request to the /api/inventory_return_locations endpoint, passing the resource arguments in the request body.

Request

POST https://yourdomain.commercelayer.io/api/inventory_return_locations

Arguments

Example

The following request creates a new inventory return location:

curl -g -X POST \
  'https://yourdomain.commercelayer.io/api/inventory_return_locations' \
  -H 'Accept: application/vnd.api+json' \
  -H 'Authorization: Bearer your-access-token' \
  -H 'Content-Type: application/vnd.api+json' \
  -d '{
  "data": {
    "type": "inventory_return_locations",
    "attributes": {
      "priority": 1
    },
    "relationships": {
      "stock_location": {
        "data": {
          "type": "stock_locations",
          "id": "ABCRtyUpBa"
        }
      },
      "inventory_model": {
        "data": {
          "type": "inventory_models",
          "id": "BCDRtyUpBa"
        }
      }
    }
  }
}'

Last updated