Link a Brand to a Menu Item
Brands play a central role in how Menu Items appear on Weedmaps.
Linking Menu Items with a Brand:
- Increases discoverability in Weedmaps search.
- Improves classification accuracy for verified products.
- Helps maintain a consistent customer experience on listing pages.
You can link a Brand to a Menu Item by using any of the operations below:
Method | Description | Try It! |
---|---|---|
POST | Create a new Menu Item linked to the Brand | POST Menu Item |
PATCH | Update a Brand link on the Menu Item | PATCH Menu Item |
PUT | Upsert a new Menu Item linked to the Brand | PUT Menu Item |
You can explore available Brands with this operation:
Method | Description | Try It! |
---|---|---|
GET | Retrieve all Brands | Retrieve Brands |
You can utilize the many
filters
parameters on these operation for search and discovery.
Send us the brand_id
brand_id
- The most reliable method.
- Retrieves the exact brand by its unique Weedmaps identifier.
Send us the brand_name
brand_name
Even if a Menu Item is not linked to a Brand Product, simply providing a brand reference by passing a brand_name
ensures the brand is displayed to consumers.
- Weedmaps performs a likeness search to match the brand by name.
- Unmatched names are silently ignored (no error returned).
Payload Example
brand_id
andbrand_name
are Mutually ExclusiveIf you do not have a Weedmaps Brand identifier, this additional property will attempt to match to a Brand in the Weedmaps Universal Brand Catalog. Providing
brand_id
is the preferred method and will provide the best results for Menu Item and overall Menu quality.
You can pass the Brand identifier as the brand_id
or brand_name
attribute in a Menu Item payload.
{
"brand_id": {"type": "integer"},
"brand_name": {"type": "string"}
}
{
"brand_id": 1234,
"brand_name": "West Coast Cure"
}
Updated 4 days ago