Link Discovery Tags to a Menu Item
This link can directly improve search relevance, increase consumer engagement, and it elevates the visibility of the Menu Item within the Weedmaps ecosystem.
You can link Discovery Tags to a Menu Item by using any of the operations below:
Method | Description | Try It! |
---|---|---|
POST | Create a new Menu Item linked to the Discovery Tags | POST Menu Item |
PATCH | Update a Discovery Tag links on the Menu Item | PATCH Menu Item |
PUT | Upsert a new Menu Item linked to the Discovery Tags | PUT Menu Item |
You can explore available Discovery Tags with these operations:
Method | Description | Try It! |
---|---|---|
GET | Retrieve all Discovery Tags | Retrieve Discovery Tags |
You can utilize the many
filters
parameters on these operation for search and discovery.
Send us the tag_ids
tag_ids
- The most reliable method.
- Retrieves the exact Discovery Tag by its unique Weedmaps identifier.
Send us the tag_names
tag_names
- Weedmaps performs a likeness search to match the Discovery Tag by name.
- Unmatched names are silently ignored (no error returned).
Payload Example
tag_ids
andtag_names
are Mutually ExclusiveIf you do not have Weedmaps Discovery Tag identifiers, the
tag_names
additional property will attempt to match to a Discovery Tag in the Weedmaps Taxonomy. Providingtag_ids
is the preferred method and will provide the best results for Menu Item and overall Menu quality.
{
"tag_ids": {
"type": "array",
"items": {
"type": "integer"
}
},
"tag_names": { "type": "string" }
}
{
"tag_ids": [1, 2, 3, 4],
"tag_names": "gluten-free, borked, edible"
}
Updated 3 days ago