Product Mixes

Create and manage Product Mixes. Product Mixes are products that are a mix of two or more products. Products are added to the Product Mix using the Product Mix Products API.

Product Mixes Get

GEThttps://api.gofarmflow.com/product-mixes-get

Lists product mixes associated with a FarmFlow account.

Product Mix Get

POSThttps://api.gofarmflow.com/product-mix-get

Returns details for a single product mix.

Request Parameters
Field Type Required Description
id integer Required Product Mix's ID
Example Request
{
    "id": "123"
}

Product Mix Create

POSThttps://api.gofarmflow.com/product-mix-create

Creates an empty product mix. Use the Product Mix Products API to add and manage products for your product mix.

Request Parameters
Field Type Required Description
product string Required Product Mix's Name
product-category-id integer Required Product Category's ID that you want to assign this product mix to
customer-can-subscribe integer Required Marks whether or not a customer can add this item to a recurring order (accepts: 1 or 0, where 1 means YES, and 0 means NO)
notes string Optional Internal notes for this product mix
Example Request
{
    "product": "Top Notch Mix",
    "product-category-id": "123",
    "customer-can-subscribe": "1",
    "notes": "Mix of broccoli, sunflower and peas"
}

Product Mix Update

POSThttps://api.gofarmflow.com/product-mix-update

Updates a product mix.

Request Parameters
Field Type Required Description
id integer Required Product Mix's ID
product string Required Product Mix's Name
product-category-id integer Required Product Category's ID that you want to assign this product mix to
customer-can-subscribe integer Required Marks whether or not a customer can add this item to a recurring order (accepts: 1 or 0, where 1 means YES, and 0 means NO)
notes string Optional Internal notes for this product mix
Example Request
{
    "id": "123",
    "product": "Mega Mix",
    "product-category-id": "321",
    "customer-can-subscribe": "0",
    "notes": "Mix of radish, arugula and nasturtium"
}

Product Mix Delete

POSThttps://api.gofarmflow.com/product-mix-delete

Deletes a product mix, and all product mix product references for the product mix. The products, themselves, are not deleted.

Request Parameters
Field Type Required Description
id integer Required Product Mix's ID
Example Request
{
    "id": "123"
}