Link a Strain 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 a Strain to a Menu Item by using any of the operations below:
| Method | Description | Try It! |
|---|---|---|
| POST | Create a new Menu Item linked to the Strain | POST Menu Item |
| PATCH | Update a Strain link on the Menu Item | PATCH Menu Item |
| PUT | Upsert a new Menu Item linked to the Strain | PUT Menu Item |
You can explore available Strains with these operations:
| Method | Description | Try It! |
|---|---|---|
| GET | Retrieve all Strains | Retrieve Strains |
You can utilize the many
filtersparameters on these operation for search and discovery.
Send us the strain_id
strain_id- The most reliable method.
- Retrieves the exact Strain by its unique Weedmaps identifier.
Send us the strain_name
strain_name- Weedmaps performs a likeness search to match the Strain by name.
- Unmatched names are silently ignored (no error returned).
Payload Example
strain_idandstrain_nameare Mutually ExclusiveIf you do not have Weedmaps Strain identifier, the
strain_nameadditional property will attempt to match to a Strain in the Weedmaps Taxonomy. Providingstrain_idis the preferred method and will provide the best results for Menu Item and overall Menu quality.
{
"strain_id": { "type": "integer" },
"strain_name": { "type": "string" }
}
{
"strain_id": 1324,
"strain_name": "Purple Urkle"
}
Updated 3 months ago