Product Mix Products
Create and manage Product Mix Products. Product Mix Products are added to Product Mixes, as part of building out a product mix. You first create a product mix using the Product Mixes API and then use the Product Mixes API to create and manage product mixes, and the Product Mix Products API to manage the product mix products for that product mix.
Product Mix Products Get
POSThttps://api.gofarmflow.com/product-mix-products-get
Lists all product mix products associated with a product mix.
Request Parameters
| Field | Type | Required | Description |
|---|---|---|---|
product-mix-id |
integer | Required | Product Mix's ID |
Example Request
{
"product-mix-id": "123"
}
Product Mix Product Get
POSThttps://api.gofarmflow.com/product-mix-product-get
Returns details for a single product mix product.
Request Parameters
| Field | Type | Required | Description |
|---|---|---|---|
id |
integer | Required | Product Mix Product's ID |
Example Request
{
"id": "321"
}
Product Mix Product Create
POSThttps://api.gofarmflow.com/product-mix-product-create
Adds a product mix product to an existing product mix.
Request Parameters
| Field | Type | Required | Description |
|---|---|---|---|
product-id |
integer | Required | Product Mix's ID |
product-mix-product-id |
integer | Required | Product ID of the product that you are adding to the product mix |
amount |
decimal | Required | Amount of product going into the mix |
Example Request
{
"product-id": "123",
"product-mix-product-id": "321",
"amount": "4"
}
Product Mix Product Update
POSThttps://api.gofarmflow.com/product-mix-product-update
Updates a product mix product.
Request Parameters
| Field | Type | Required | Description |
|---|---|---|---|
id |
integer | Required | Product Mix Product's ID |
product-mix-product-id |
integer | Required | Product ID of the product that you are adding/updating to the product mix |
amount |
decimal | Required | Amount of product going into the mix |
Example Request
{
"id": "123",
"product-mix-product-id": "321",
"amount": "2.5"
}
Product Mix Product Delete
POSThttps://api.gofarmflow.com/product-mix-product-delete
Deletes a product mix product from a product mix.
Request Parameters
| Field | Type | Required | Description |
|---|---|---|---|
id |
integer | Required | Product Mix Product's ID |
Example Request
{
"id": "123"
}