GuidesAPI EndpointsChangelog
Log In
Guides

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:

MethodDescriptionTry It!
POSTCreate a new Menu Item linked to the Discovery TagsPOST Menu Item
PATCHUpdate a Discovery Tag links on the Menu ItemPATCH Menu Item
PUTUpsert a new Menu Item linked to the Discovery TagsPUT Menu Item

You can explore available Discovery Tags with these operations:

MethodDescriptionTry It!
GETRetrieve all Discovery TagsRetrieve Discovery Tags

You can utilize the many filters parameters on these operation for search and discovery.


Send us the tag_ids

  • The most reliable method.
  • Retrieves the exact Discovery Tag by its unique Weedmaps identifier.

Send us the 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 and tag_names are Mutually Exclusive

If 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. Providing tag_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"
}

What’s Next

Familiarize yourself with our Core Concepts and Structure