Indirect Management

Indirect management of menu items is similar to what you've done in the past but with a twist. Instead of sending POST and PATCH requests, retaining our identifier in your system, you can send a single PUT request by your identifier, which will create the item if it does not exist or update it if it does. You will then receive the same response object you would from the Direct Management endpoint.

curl --request PUT \
--url 'https://api-g.weedmaps.com/wm/2024-01/partners/menus/[MENU ID HERE]/items/external/{YOUR ID HERE}' \
--header 'accept: application/json' \
--header 'authorization: Bearer [ACCESS TOKEN HERE]' \
--header 'content-type: application/json' \
--data   '{
    "name": "Wake and Bake",
    "description": "Our \"Wake and Bake\" cannabis flower boasts a well-balanced cannabinoid profile, carefully cultivated to offer both newcomers and seasoned enthusiasts an enjoyable experience",
    "image_url": "https://images.weedmaps.com/static/placeholders/weedmaps-logo.jpg",
    "cart_quantity_multiplier": 1,
    "inventory_quantity": 9,
    "items_per_pack": 1,
    "published": true,
    "online_orderable": true,
    "license_type": "recreational",
    "genetics": "sativa",
    "brand_name": "WM Cannabis",
    "external_product_id: "23",
    "strain_name": "OG Kush",
    "category_names": ["Pre Roll", "Flower"],
    "cannabinoids": [
      {
        "slug": "cbd",
        "percent": {
          "min": 1.2,
          "max": 1.2
        }
      },
      {
        "slug": "thca",
        "milligrams": {
          "min": 997,
          "max": 1000
        },
        "percent": {
          "min": 87.4,
          "max": 87.4
        }
      }
    ],
    "terpenes": [
      {
        "slug": "limonene",
        "percent": {
          "min": 2,
          "max": 2.5
        }
      }
    ],
    "tag_names": ["uplifted"],
    "variants": [
      {
        "external_id": "710",
        "inventory_quantity": 9,
        "cart_quantity_multiplier": 1,
        "compliance": {
          "precalculated": true,
          "weight": {
            "value": 3.5,
            "unit": "g"
          }
        },
        "price": {
          "amount": "35.00",
          "currency": "USD"
        },
        "weight": {
          "value": 3.5,
          "unit": "g"
        }
      }
    ],
    "sale": {
      "type": "percentage",
      "amount": 15
    }
  }'
{
  "data": {
    "id": 420,
    "external_id": "710",
    "external_product_id": "23",
    "name": "Wake and Bake",
    "description": "Our \"Wake and Bake\" cannabis flower boasts a well-balanced cannabinoid profile, carefully cultivated to offer both newcomers and seasoned enthusiasts an enjoyable experience",
    "image_url": "https://images.weedmaps.com/static/placeholders/weedmaps-logo.jpg",
    "cart_quantity_multiplier": 1,
    "inventory_quantity": 9,
    "items_per_pack": 1,
    "published": true,
    "online_orderable": true,
    "license_type": "recreational",
    "genetics": "sativa",
    "brand_name": "string",
    "brand": {
      "id": 420,
      "name": "WM Cannabis",
      "published": true,
      "updated_at": "2023-04-20T16:20:00Z"
    },
    "product": {
      "id": 420,
      "name": "Wake and Bake",
      "published": true,
      "updated_at": "2023-04-20T16:20:00Z"
    },
    "strain": {
      "id": 420,
      "name": "Duban Poison",
      "updated_at": "2023-04-20T16:20:00Z"
    },
    "categories": [
      {
        "id": 710,
        "parent_id": 420,
        "slug": "live-resin",
        "name": "Live Resin",
        "published": true,
        "updated_at": "2023-04-20T16:20:00Z"
      }
    ],
    "cannabinoids": [
      {
        "id": 420,
        "slug": "thca",
        "symbol": "THCA",
        "name": "Tetrahydrocannabinolic Acid",
        "updated_at": "2023-04-20T16:20:00Z",
        "milligrams": {
          "min": 23,
          "max": 24.5
        },
        "percent": {
          "min": 23,
          "max": 24.5
        }
      }
    ],
    "terpenes": [
      {
        "id": 420,
        "slug": "limonene",
        "symbol": "LIM",
        "name": "Limonene",
        "updated_at": "2023-04-20T16:20:00Z",
        "milligrams": {
          "min": 23,
          "max": 24.5
        },
        "percent": {
          "min": 23,
          "max": 24.5
        }
      }
    ],
    "tags": [
      {
        "id": 420,
        "slug": "uplifted",
        "name": "Uplifted",
        "published": true,
        "updated_at": "2023-04-20T16:20:00Z",
        "group": {
          "id": 420,
          "name": "Effects",
          "updated_at": "2023-04-20T16:20:00Z"
        }
      }
    ],
    "compliance": {
      "precalculated": true,
      "weight": {
        "value": 3.5,
        "unit": "g"
      }
    },
    "price": {
      "amount": "35.00",
      "currency": "USD"
    },
    "variants": [
      {
        "id": 420,
        "external_id": "710",
        "inventory_quantity": 9,
        "cart_quantity_multiplier": 1,
        "compliance": {
          "precalculated": true,
          "weight": {
            "value": 3.5,
            "unit": "g"
          }
        },
        "price": {
          "amount": "35.00",
          "currency": "USD"
        },
        "weight": {
          "value": 3.5,
          "unit": "g"
        },
        "updated_at": "2023-04-20T16:20:00Z"
      }
    ],
    "price_rules": [
      {
        "id": 420,
        "adjustment_type": "percentage",
        "adjustment_value": 15,
        "active": false,
        "expired": true,
        "expires_at": "2023-07-10T19:10:00Z",
        "updated_at": "2023-04-20T16:20:00Z"
      }
    ],
    "updated_at": "2023-04-20T16:20:00Z"
  }
}