{"info":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","description":"<html><head></head><body><h1 id=\"responsible-use\">Responsible Use</h1>\n<p>Integrators, please take the time to efficiently design your api queries. This is considerate of our server load, and also will reduce the API fees your company or the companies you are working with may be charged. Call our api as much as appropriate, but be considerate.</p>\n<p>Some API Endpoints <strong>require</strong> an updated_at_from field to be set in the query. The first time you call this endpoint you should call it from the date the company first joined, but subsequent calls should be restricted to only search for records updated since the last call.</p>\n<p>For example: Imagine you are trying to sync the orders in this system with an external system and you plan to call our API once per hour. The first call could have an update_at_from param set in the year 1970. Your subsequent requests, however, should only query for orders that have an updated_at timestamp after the last time you searched.</p>\n<p><strong>Example Daily Inventory Sync getting data that changed in last 24 hours</strong></p>\n<p>day 1 (2025-04-21)</p>\n<p>/products?updated_at_from=2025-04-20T22:00:00Z</p>\n<p>/batches?updated_at_from=2025-04-20T22:00:00Z</p>\n<p>day 2 (2025-04-22)</p>\n<p>/products?updated_at_from=2025-04-21T22:00:00Z</p>\n<p>/batches?updated_at_from=2025-04-21T22:00:00Z</p>\n<p>day 3 (2025-04-23)</p>\n<p>/products?updated_at_from=2025-04-22T22:00:00Z</p>\n<p>/batches?updated_at_from=2025-04-22T22:00:00Z</p>\n<h1 id=\"rate-limiting\">Rate Limiting</h1>\n<p>All API requests are subject to rate limiting to ensure fair usage and service stability.</p>\n<ul>\n<li><p>15 requests per second per API token</p>\n</li>\n<li><p>Rate Limit Headers</p>\n<p>  Every response includes headers indicating your current rate limit status:</p>\n<p>  X-RateLimit-Limit: 15<br>  X-RateLimit-Remaining: 10 When you exceed the rate limit, you'll receive a 429 Too Many Requests response with additional headers:</p>\n<p>  HTTP/1.1 429 Too Many Requests<br>  Retry-After: 1<br>  X-RateLimit-Reset: 1699564823<br>  X-RateLimit-Remaining: 0</p>\n<p>  {<br>  \"message\": \"Rate limit exceeded. Maximum 30 requests per second allowed.\"<br>  }</p>\n</li>\n</ul>\n<p>Best Practices:</p>\n<ol>\n<li><p>Implement exponential backoff - When you receive a 429, wait before retrying</p>\n</li>\n<li><p>Respect Retry-After - Wait the specified number of seconds before your next request</p>\n</li>\n<li><p>Spread requests - Avoid synchronized operations (e.g., all cron jobs at :00). Its a courtesy to us if you would choose random times for your syncs to minimize the thundering herd problem.</p>\n</li>\n<li><p>Cache responses - Reduce unnecessary API calls by caching data locally</p>\n</li>\n</ol>\n<h1 id=\"api-completeness\">Api Completeness</h1>\n<p>The API provides a subset of the features in the application. We add to it by request.</p>\n<h1 id=\"api-fees\">Api Fees</h1>\n<p>To be determined, based upon number of resources returned. We want to provide free access to the API for anyone making reasonable demands upon it. We are looking into adding charges to the API for the integrators who have heavy API demands or are not writing queries efficiently.</p>\n<h1 id=\"authentication\">Authentication</h1>\n<p>The API endpoints will only establish communication over the <code>HTTPS</code> Secure communication protocol and requires a valid <code>token</code> in order to interact with it using Bearer authentication.</p>\n<p>Bearer authentication (also called token authentication) is an <code>HTTP</code> authentication scheme that involves security tokens called bearer tokens. The name \"Bearer authentication\" can be understood as \"give access to the bearer of this token.\" The bearer token is a cryptic string generated by the server. The client must send this token in the Authorization header when making requests to protected resources.</p>\n<p>All API requests are <strong>required to have a</strong> <strong><code>Authorization</code></strong> <strong>header of</strong> <strong><code>Bearer YOUR_API_TOKEN_HERE</code></strong>.</p>\n<p>All API requests are <strong>required to have a</strong> <strong><code>Accept</code></strong> <strong>header of</strong> <strong><code>application/json</code></strong>.</p>\n<p>All API endpoints make use of the <code>JSON</code> format for sending and receiving data and all <code>POST</code> and <code>PUT</code> requests are expected to contain <code>JSON</code>.</p>\n<h1 id=\"tools\">Tools</h1>\n<p>This is a postman provided API. You may download the collection for a jumpstart on building against our API.</p>\n<h1 id=\"pagination\">Pagination</h1>\n<p>The API uses pagination to return its records. <em>The default records per page is</em> <em><strong>15 records</strong></em>.</p>\n<p>This can be ovridden with the query parameter <strong><code>per_page</code></strong>.</p>\n<p>The maximum records allowed per page is <strong>500 records for most resources. Some resources may have a smaller maximum allowed return.</strong></p>\n<p>Each paginated response will look similar to the following:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    ...\n    \"links\": {\n        \"first\": \"https://secure.bushel44.com/api/v1/buyers?page=1\",\n        \"last\": \"https://secure.bushel44.com/api/v1/buyers?page=6\",\n        \"prev\": null,\n        \"next\": \"https://secure.bushel44.com/api/v1/buyers?page=2\"\n    },\n    \"meta\": {\n        \"current_page\": 1,\n        \"from\": 1,\n        \"last_page\": 6,\n        \"links\": [\n            {\n                \"url\": null,\n                \"label\": \"« Previous\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://secure.bushel44.com/api/v1/buyers?page=1\",\n                \"label\": \"1\",\n                \"active\": true\n            },\n            {\n                \"url\": \"https://secure.bushel44.com/api/v1/buyers?page=2\",\n                \"label\": \"2\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://secure.bushel44.com/api/v1/buyers?page=3\",\n                \"label\": \"3\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://secure.bushel44.com/api/v1/buyers?page=4\",\n                \"label\": \"4\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://secure.bushel44.com/api/v1/buyers?page=5\",\n                \"label\": \"5\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://secure.bushel44.com/api/v1/buyers?page=6\",\n                \"label\": \"6\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://secure.bushel44.com/api/v1/buyers?page=2\",\n                \"label\": \"Next »\",\n                \"active\": false\n            }\n        ],\n        \"path\": \"https://secure.bushel44.com/api/v1/buyers\",\n        \"per_page\": 15,\n        \"to\": 15,\n        \"total\": 85\n}\n\n</code></pre>\n<h1 id=\"server-responses\">Server Responses</h1>\n<p>| <strong><code>200 OK</code></strong> | The request has succeeded. |<br>| <strong><code>201 Created</code></strong> | The request has succeeded and a new record has been created as a result. |<br>| <strong><code>401 Unauthorized</code></strong> | <code>{ \"message\": \"Unauthenticated.\" }</code> |<br>| <strong><code>403 Forbidden</code></strong> | <code>{ \"message\": \"This action is unauthorized.\" }</code> |<br>| <strong><code>404 Not Found</code></strong> | <code>{ \"message\": \"Resource Not Found\" }</code> |</p>\n<p>| <strong><code>409 Conflict</code></strong> | <code>{ \"message\": \"Conflict with requested update\" }</code> |<br>| <strong><code>422 Unprocessable Entity</code></strong> | <code>{ \"message\": \"The given data was invalid.\" }</code> |<br>| <strong><code>500 Internal Server Error</code></strong> | <code>{ \"message\": \"Server Error\" }</code> |</p>\n<p>For all create and update actions the response will include the updated resource.</p>\n<p>For delete actions, a response status of 200 confirms successful deletion.</p>\n<p>The message may provide additional details on why an action is denied.</p>\n<p>If you receive HTML back in your response, this likely means that you are not including the correct headers in your request. Please see section in authentication above and the Accept Header.</p>\n<h1 id=\"permissions\">Permissions</h1>\n<p>The api is gated by the resources each token is granted access to. The /welcome endpoint will display a list of the token permissions.</p>\n<p>We suggest that you provide the minimum necessary permissions for each API token.</p>\n<h1 id=\"post-patch-requests\">Post / Patch Requests</h1>\n<p>Please see the available fields in in the documentation for each request.</p>\n<h4 id=\"documentation-conventions\"><strong>Documentation conventions</strong></h4>\n<p><strong>In Post Requests</strong></p>\n<ul>\n<li><p><strong>required</strong> | You must supply this field</p>\n</li>\n<li><p><strong>optional</strong> | You do not need to supply this field, it will be NULL or FALSE if you don't supply it.</p>\n</li>\n</ul>\n<p><strong>In Patch Requests</strong></p>\n<p>Patch Requests use Sparse Updates. If you do not include a field in your request it will not be touched, leaving it as it was. If you do include a field in your request but it is not set, it will be set to NULL in the database.</p>\n<ul>\n<li><p><strong>optional, not nullable</strong> | You don't need to send in your request, but if you do it must have a value.</p>\n</li>\n<li><p><strong>optional, nullable</strong> | You don't need to send in your request. If you send an empty value the field will be set to NULL or FALSE</p>\n</li>\n</ul>\n<h1 id=\"requests-and-data-type-conventions\">Requests and Data Type Conventions</h1>\n<h6 id=\"company-id\">Company ID</h6>\n<p>The root resource for accounts is called a company. The token will resolve to this company, and many models have a company_id column. Some models may have multiple, such as orders which will have a buyer_company_id and a seller_company_id, or buyers which has a buyer_company_id (the buyer account, optionally null) and an owning_company_id (the seller).</p>\n<p>Some models may be optionally scoped to a company_id. For example, Environmental Issues has a company_id column. All companies have access to the records where company_id is null, and then also access to any records where the company_id matches their company id. This allows us to provide defaults for everyone and specific options for individual companies. You may therefore determine if it is a custom scoped value based on the value of the company_id on these types of models.</p>\n<h6 id=\"array-format-requests\">Array Format Requests</h6>\n<p>Many of our endpoints allow you to filter by an array. For example the query param will look like ids[] or operation_ids[]. This allows you to chain multiple together. So you can pass ids[]=1&amp;ids[]=2</p>\n<h6 id=\"currency\">Currency</h6>\n<p>All currency data returned is rounded to the <em>hundredth’s decimal</em> <code>(1.00)</code> with no symbol<code>($)</code>.</p>\n<p>When sending currency query do not include the currency symbol or commas.</p>\n<p>When you send you a currency query you can do so with or without the decimal point (<code>$100</code> or <code>$100.00</code>).</p>\n<h6 id=\"times-and-dates\">Times and Dates</h6>\n<p>All date and date/time fields submited to the server are expected to be in <a href=\"https://en.wikipedia.org/wiki/ISO_8601\">ISO 8601</a> format. Likewise, all date and date/time fields returned by the server will be in ISO 8601 format.</p>\n<p>The only ISO 8601 date format supported is <code>YYYY-MM-DD</code>, even though the standard defines <code>YYYY-DDD</code> as valid, it is currently not supported.</p>\n<p>Most dates returned by the application will be in UTC time. Exceptions will be noted per request.</p>\n<p>Below are some examples of valid ISO 8601 date/time formats:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Example</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>2021-04-20</code></td>\n<td>The above date/time format represents April 20th, 2021.</td>\n</tr>\n<tr>\n<td><code>2021-04-20T22:04:50Z</code></td>\n<td>The above date/time format represents April 20th, 2021 10:04:50 PM (UTC) using the <code>Z</code> identifier. The API will assume <code>000</code> milliseconds.</td>\n</tr>\n<tr>\n<td><code>2021-04-20T22:04:50+00:00</code></td>\n<td>The format above represents the same April 20th, 2021 10:04:50 PM (UTC) using a numerical time zone offset of <code>+00:00</code>. The API will assume <code>000</code> milliseconds.</td>\n</tr>\n<tr>\n<td><code>2021-11-02T16:30:40.345+00:00</code></td>\n<td>The format above represents November 2nd, 2021 4:30:40.345 PM (UTC) using a numerical time zone offset of <code>+00:00</code>. Note the addition of the milliseconds portion of the time in this example.</td>\n</tr>\n<tr>\n<td><code>2021-01-12T22:20:30.456-06:00</code></td>\n<td>The format above represents January 12th, 2021 10:20:30.456 PM (MDT) using a numerical time zone offset of <code>-06:00</code>. Note the addition of the milliseconds portion of the time in this example.</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"support\">Support</h1>\n<p>Please email</p>\n<ul>\n<li><p><a href=\"https://mailto:api@bushel44.com\">api@bushel44.com</a> with any questions</p>\n</li>\n<li><p><a href=\"https://mailto:support@bushel44.com\">support@bushel44.com</a> with all other needs</p>\n</li>\n</ul>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"Responsible Use","slug":"responsible-use"},{"content":"Rate Limiting","slug":"rate-limiting"},{"content":"Api Completeness","slug":"api-completeness"},{"content":"Api Fees","slug":"api-fees"},{"content":"Authentication","slug":"authentication"},{"content":"Tools","slug":"tools"},{"content":"Pagination","slug":"pagination"},{"content":"Server Responses","slug":"server-responses"},{"content":"Permissions","slug":"permissions"},{"content":"Post / Patch Requests","slug":"post-patch-requests"},{"content":"Requests and Data Type Conventions","slug":"requests-and-data-type-conventions"},{"content":"Support","slug":"support"}],"owner":"44399576","collectionId":"77808302-965a-452d-a352-0c57983f8c09","publishedId":"2sB2j968o9","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"84a263"},"publishDate":"2025-05-08T12:01:26.000Z"},"item":[{"name":"Batches","item":[{"name":"Documents","item":[{"name":"Document","id":"4f2d4235-7426-41dd-bb60-f897d2fc9388","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"label","value":"GMP Certification","description":"<p>The file label must be one of: Potency, Terpenes, Field Test, Heavy Metal, Pesticides, Residual Solvents, Foreign Materials, Mycotoxins, Moisture Content, Microbials, Full Panel, Misc, Certification, Certificate of Analysis, GMP Certification, Operation License</p>\n","type":"text","uuid":"fc805a9a-21d0-418f-8f04-dbb65bf9f9ed"},{"key":"file","type":"file","uuid":"26b61182-5c84-4755-a03d-fcbe74d8c2b9","value":null}]},"url":"https://secure.bushel44.com/api/v1/v1/batches/2/documents","description":"<p><strong>Token Permissions</strong></p>\n<ul>\n<li>update:batches</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}},"urlObject":{"path":["v1","batches","2","documents"],"host":["https://secure.bushel44.com/api/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"4f2d4235-7426-41dd-bb60-f897d2fc9388"},{"name":"Document","id":"1c5864a1-5259-48a6-b735-7e328218a681","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://secure.bushel44.com/api/v1/v1/batches/2/documents/{{batch_document_id}}","description":"<p><strong>Token Permissions</strong></p>\n<ul>\n<li>update:batches</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}},"urlObject":{"path":["v1","batches","2","documents","{{batch_document_id}}"],"host":["https://secure.bushel44.com/api/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"1c5864a1-5259-48a6-b735-7e328218a681"}],"id":"386c42c1-fd3a-4909-a129-22f7e0c240d2","_postman_id":"386c42c1-fd3a-4909-a129-22f7e0c240d2","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}}},{"name":"Batches (V1 - DEPRECATED)","id":"8da7edae-260b-4c5f-888e-51a48412e4c0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer  ","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/v1/batches?per_page=2&updated_at_from=2024-04-20T22:04:50Z","description":"<p>This v1 endpoint has been deprecated to avoid inventory sync issues as we have a breaking change in our underlying inventory system. Previously cases were stored in according to their case quantity, now they are stored in the individual unit quantity. Eg, a 10 cases of 10 was previously stored as 10. Now it is stored as 100. Please use v2 endpoint instead.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}},"urlObject":{"path":["v1","batches"],"host":["https://secure.bushel44.com/api/v1"],"query":[{"disabled":true,"description":{"content":"<p>Include the operation it belongs to</p>\n","type":"text/plain"},"key":"with_operation","value":"true"},{"disabled":true,"description":{"content":"<p>includes cannabinoids</p>\n","type":"text/plain"},"key":"with_cannabinoids","value":"true"},{"disabled":true,"description":{"content":"<p>includes terpenes</p>\n","type":"text/plain"},"key":"with_terpenes","value":"true"},{"disabled":true,"description":{"content":"<p>filter by archived batches. All returned if no key present</p>\n","type":"text/plain"},"key":"archived","value":"true"},{"disabled":true,"description":{"content":"<p>filter by batch created before query in UTC</p>\n","type":"text/plain"},"key":"created_at_to","value":"2025-04-20T22:04:50Z"},{"disabled":true,"description":{"content":"<p>filter by batch updated before query in UTC</p>\n","type":"text/plain"},"key":"updated_at_to","value":"2025-04-22T22:04:50Z"},{"disabled":true,"description":{"content":"<p>filter by batch created after query in UTC</p>\n","type":"text/plain"},"key":"created_at_from","value":"2025-04-22T22:04:50Z"},{"disabled":true,"description":{"content":"<p>Filter by operations</p>\n","type":"text/plain"},"key":"operation_ids[]","value":"4"},{"disabled":true,"description":{"content":"<p>Filter by products</p>\n","type":"text/plain"},"key":"product_ids[]","value":"4"},{"disabled":true,"description":{"content":"<p>Filter by ids</p>\n","type":"text/plain"},"key":"ids[]","value":"2"},{"description":{"content":"<p>Number of records to return per page</p>\n","type":"text/plain"},"key":"per_page","value":"2"},{"description":{"content":"<p>**REQUIRED **</p>\n","type":"text/plain"},"key":"updated_at_from","value":"2024-04-20T22:04:50Z"}],"variable":[]}},"response":[{"id":"723a9875-7d2d-4cce-a698-1fcf92d5632d","name":"Batches","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer  ","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"https://secure.bushel44.com/api/v1/batches?per_page=2&updated_at_from=2024-04-20T22:04:50Z","host":["https://secure.bushel44.com/api/v1"],"path":["batches"],"query":[{"key":"with_operation","value":"true","description":"Include the operation it belongs to","disabled":true},{"key":"with_cannabinoids","value":"true","description":"includes cannabinoids","disabled":true},{"key":"with_terpenes","value":"true","description":"includes terpenes","type":"text","disabled":true},{"key":"archived","value":"true","description":"filter by archived batches. All returned if no key present","type":"text","disabled":true},{"key":"created_at_to","value":"2025-04-20T22:04:50Z","description":"filter by batch created before query in UTC","disabled":true},{"key":"updated_at_to","value":"2025-04-22T22:04:50Z","description":"filter by batch updated before query in UTC","disabled":true},{"key":"created_at_from","value":"2025-04-22T22:04:50Z","description":"filter by batch created after query in UTC","disabled":true},{"key":"operation_ids[]","value":"4","description":"Filter by operations","disabled":true},{"key":"product_ids[]","value":"4","description":"Filter by products","disabled":true},{"key":"ids[]","value":"2","description":"Filter by ids","disabled":true},{"key":"per_page","value":"2","description":"Number of records to return per page"},{"key":"updated_at_from","value":"2024-04-20T22:04:50Z"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 08 May 2025 11:47:42 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Cache-Control","value":"no-cache, public, must-revalidate, proxy-revalidate"},{"key":"X-RateLimit-Limit","value":"5000"},{"key":"X-RateLimit-Remaining","value":"4998"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"batches\": [\n        {\n            \"id\": 19,\n            \"uuid\": \"2b491171-2114-4a09-8633-939989ce4dd4\",\n            \"name\": \"LIFTBIO-1\",\n            \"product_id\": 18,\n            \"operation_id\": 3,\n            \"unlimited_quantity\": false,\n            \"quantity\": 1390,\n            \"zone_number\": \"4\",\n            \"lot_number\": \"6\",\n            \"sack_number\": \"19\",\n            \"seeded\": \"Yes - Lightly\",\n            \"harvest_date\": null,\n            \"dry_date\": null,\n            \"extraction_date\": null,\n            \"best_by_date\": null,\n            \"test_date\": null,\n            \"production_date\": null,\n            \"thc_limit\": true,\n            \"hold\": false,\n            \"back_order\": false,\n            \"in_stock_expected_date\": null,\n            \"predominate_canabinoid_min_or_only\": 12,\n            \"predominate_canabinoid_max\": null,\n            \"predominate_canabinoid_unit\": \"%\",\n            \"storage_location\": null,\n            \"minimum_sales_price\": \"0.00\",\n            \"sample_price\": \"25.00\",\n            \"cost_of_goods\": \"0.00\",\n            \"true_cost\": \"0.00\",\n            \"listing_price\": \"0.00\",\n            \"pto_oneg_listing_price\": \"0.00\",\n            \"pto_twog_listing_price\": \"0.00\",\n            \"pto_eighthoz_listing_price\": \"0.00\",\n            \"pto_quarteroz_listing_price\": \"0.00\",\n            \"pto_halfoz_listing_price\": \"0.00\",\n            \"pto_oneoz_listing_price\": \"0.00\",\n            \"pto_quarterpound_listing_price\": \"0.00\",\n            \"pto_halfpound_listing_price\": \"0.00\",\n            \"pto_onepound_listing_price\": \"0.00\",\n            \"unit_price\": [],\n            \"archived\": false,\n            \"line_note\": null,\n            \"description\": null,\n            \"allow_samples\": true,\n            \"track_sample_quantity\": true,\n            \"pull_sample_from_alternative_batch_id\": null,\n            \"sample_quantity_label\": null,\n            \"sample_size\": 1,\n            \"restricted\": false,\n            \"created_at\": \"2020-04-07T19:57:29.000000Z\",\n            \"updated_at\": \"2025-01-22T08:00:04.000000Z\"\n        }\n    ],\n    \"links\": {\n        \"first\": \"https://demo.bushel44.com/api/v1/batches?page=1\",\n        \"last\": \"https://demo.bushel44.com/api/v1/batches?page=1\",\n        \"prev\": null,\n        \"next\": null\n    },\n    \"meta\": {\n        \"current_page\": 1,\n        \"from\": 1,\n        \"last_page\": 1,\n        \"links\": [\n            {\n                \"url\": null,\n                \"label\": \"&laquo; Previous\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.bushel44.com/api/v1/batches?page=1\",\n                \"label\": \"1\",\n                \"active\": true\n            },\n            {\n                \"url\": null,\n                \"label\": \"Next &raquo;\",\n                \"active\": false\n            }\n        ],\n        \"path\": \"https://demo.bushel44.com/api/v1/batches\",\n        \"per_page\": 2,\n        \"to\": 1,\n        \"total\": 1\n    }\n}"}],"_postman_id":"8da7edae-260b-4c5f-888e-51a48412e4c0"},{"name":"Batches (V2)","id":"51bee80a-d4c0-4c8b-8584-d4e8e95086fe","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer  ","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/v2/batches?per_page=2&updated_at_from=2024-04-20T22:04:50Z","description":"<p><strong>Required Filters</strong></p>\n<p><strong>updated_at_from</strong> is a required filter.</p>\n<p>The first time you call this endpoint you should call it from the date the company first joined, but subsequent calls should be restricted to only search for records updated since the last call if possible.</p>\n<p><strong>Token Permissions</strong></p>\n<ul>\n<li>view:batches</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}},"urlObject":{"path":["v2","batches"],"host":["https://secure.bushel44.com/api/v1"],"query":[{"disabled":true,"description":{"content":"<p>Include the operation it belongs to</p>\n","type":"text/plain"},"key":"with_operation","value":"true"},{"disabled":true,"description":{"content":"<p>includes cannabinoids</p>\n","type":"text/plain"},"key":"with_cannabinoids","value":"true"},{"disabled":true,"description":{"content":"<p>includes terpenes</p>\n","type":"text/plain"},"key":"with_terpenes","value":"true"},{"disabled":true,"description":{"content":"<p>filter by archived batches. All returned if no key present</p>\n","type":"text/plain"},"key":"archived","value":"true"},{"disabled":true,"description":{"content":"<p>filter by batch created before query in UTC</p>\n","type":"text/plain"},"key":"created_at_to","value":"2025-04-20T22:04:50Z"},{"disabled":true,"description":{"content":"<p>filter by batch updated before query in UTC</p>\n","type":"text/plain"},"key":"updated_at_to","value":"2025-04-22T22:04:50Z"},{"disabled":true,"description":{"content":"<p>filter by batch created after query in UTC</p>\n","type":"text/plain"},"key":"created_at_from","value":"2025-04-22T22:04:50Z"},{"disabled":true,"description":{"content":"<p>Filter by operations</p>\n","type":"text/plain"},"key":"operation_ids[]","value":"4"},{"disabled":true,"description":{"content":"<p>Filter by products</p>\n","type":"text/plain"},"key":"product_ids[]","value":"4"},{"disabled":true,"description":{"content":"<p>Filter by ids</p>\n","type":"text/plain"},"key":"ids[]","value":"2"},{"description":{"content":"<p>Number of records to return per page</p>\n","type":"text/plain"},"key":"per_page","value":"2"},{"description":{"content":"<p>**REQUIRED **</p>\n","type":"text/plain"},"key":"updated_at_from","value":"2024-04-20T22:04:50Z"}],"variable":[]}},"response":[],"_postman_id":"51bee80a-d4c0-4c8b-8584-d4e8e95086fe"},{"name":"Batch (V1 - DEPRECATED)","id":"d69a4cb8-7dc4-47a3-aa86-65e10f38e97d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer  ","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/v1/batches/2","description":"<p>This v1 endpoint has been deprecated to avoid inventory sync issues as we have a breaking change in our underlying inventory system. Previously cases were stored in according to their case quantity, now they are stored in the individual unit quantity. Eg, a 10 cases of 10 was previously stored as 10. Now it is stored as 100. Please use v2 endpoint instead.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}},"urlObject":{"path":["v1","batches","2"],"host":["https://secure.bushel44.com/api/v1"],"query":[{"disabled":true,"description":{"content":"<p>Include batch history</p>\n","type":"text/plain"},"key":"with_history","value":"false"}],"variable":[]}},"response":[{"id":"d8a0c8e7-40f6-4738-aba2-6a74aab8ac32","name":"Batch","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer  ","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"https://secure.bushel44.com/api/v1/batches/2","host":["https://secure.bushel44.com/api/v1"],"path":["batches","2"],"query":[{"key":"with_history","value":"false","description":"Include batch history","type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 02:15:05 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Cache-Control","value":"no-cache, public, must-revalidate, proxy-revalidate"},{"key":"X-RateLimit-Limit","value":"5000"},{"key":"X-RateLimit-Remaining","value":"4999"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"batch\": {\n        \"id\": 19,\n        \"uuid\": \"2b491171-2114-4a09-8633-939989ce4dd4\",\n        \"name\": \"LIFTBIO-1\",\n        \"product_id\": 18,\n        \"operation_id\": 3,\n        \"unlimited_quantity\": false,\n        \"quantity\": 1390,\n        \"zone_number\": \"4\",\n        \"lot_number\": \"6\",\n        \"sack_number\": \"19\",\n        \"seeded\": \"Yes - Lightly\",\n        \"harvest_date\": null,\n        \"dry_date\": null,\n        \"extraction_date\": null,\n        \"best_by_date\": null,\n        \"test_date\": null,\n        \"production_date\": null,\n        \"thc_limit\": true,\n        \"hold\": false,\n        \"back_order\": false,\n        \"in_stock_expected_date\": null,\n        \"predominate_canabinoid_min_or_only\": 12,\n        \"predominate_canabinoid_max\": null,\n        \"predominate_canabinoid_unit\": \"%\",\n        \"storage_location\": null,\n        \"minimum_sales_price\": \"0.00\",\n        \"sample_price\": \"25.00\",\n        \"cost_of_goods\": \"0.00\",\n        \"true_cost\": \"0.00\",\n        \"listing_price\": \"0.00\",\n        \"pto_oneg_listing_price\": \"0.00\",\n        \"pto_twog_listing_price\": \"0.00\",\n        \"pto_eighthoz_listing_price\": \"0.00\",\n        \"pto_quarteroz_listing_price\": \"0.00\",\n        \"pto_halfoz_listing_price\": \"0.00\",\n        \"pto_oneoz_listing_price\": \"0.00\",\n        \"pto_quarterpound_listing_price\": \"0.00\",\n        \"pto_halfpound_listing_price\": \"0.00\",\n        \"pto_onepound_listing_price\": \"0.00\",\n        \"unit_price\": [],\n        \"archived\": false,\n        \"line_note\": null,\n        \"description\": null,\n        \"allow_samples\": true,\n        \"track_sample_quantity\": true,\n        \"pull_sample_from_alternative_batch_id\": null,\n        \"sample_quantity_label\": null,\n        \"sample_size\": 1,\n        \"restricted\": false,\n        \"created_at\": \"2020-04-07T19:57:29.000000Z\",\n        \"updated_at\": \"2025-01-22T08:00:04.000000Z\",\n        \"operation\": {\n            \"id\": 3,\n            \"name\": \"High Hopes Farm\",\n            \"industry\": null,\n            \"state_license\": \"060-X0001\"\n        },\n        \"terpenes\": [\n            {\n                \"id\": 2,\n                \"batch_id\": 19,\n                \"product_id\": 18,\n                \"name\": \"a - Pinene\",\n                \"display_name\": \"a - Pinene\",\n                \"measurement\": \"0.2\",\n                \"measurement_type\": \"%\"\n            },\n            {\n                \"id\": 15,\n                \"batch_id\": 19,\n                \"product_id\": 18,\n                \"name\": \"Terpineol\",\n                \"display_name\": \"Terpineol\",\n                \"measurement\": \"1\",\n                \"measurement_type\": \"%\"\n            },\n            {\n                \"id\": 17,\n                \"batch_id\": 19,\n                \"product_id\": 18,\n                \"name\": \"Trans-nerolido\",\n                \"display_name\": \"Trans-nerolido\",\n                \"measurement\": \"1\",\n                \"measurement_type\": \"%\"\n            }\n        ],\n        \"cannabinoids\": [\n            {\n                \"id\": 1,\n                \"batch_id\": 19,\n                \"product_id\": 18,\n                \"name\": \"Cannabichromene\",\n                \"abbreviation\": \"CBC\",\n                \"display_name\": \"(CBC) Cannabichromene\",\n                \"measurement\": \"1\",\n                \"measurement_type\": \"%\"\n            },\n            {\n                \"id\": 6,\n                \"batch_id\": 19,\n                \"product_id\": 18,\n                \"name\": \"Cannabicyclol\",\n                \"abbreviation\": \"CBL\",\n                \"display_name\": \"(CBL) Cannabicyclol\",\n                \"measurement\": \"1\",\n                \"measurement_type\": \"%\"\n            },\n            {\n                \"id\": 21,\n                \"batch_id\": 19,\n                \"product_id\": 18,\n                \"name\": \"Tetrahydrocanabivarinic acid\",\n                \"abbreviation\": \"THCVA\",\n                \"display_name\": \"(THCVA) Tetrahydrocanabivarinic acid\",\n                \"measurement\": \"1\",\n                \"measurement_type\": \"%\"\n            }\n        ]\n    }\n}"}],"_postman_id":"d69a4cb8-7dc4-47a3-aa86-65e10f38e97d"},{"name":"Batch (V2)","id":"15b822b7-003c-458b-98e1-055882231076","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer  ","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/v2/batches/2","description":"<p><strong>Token Permissions</strong></p>\n<ul>\n<li>view:batches</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}},"urlObject":{"path":["v2","batches","2"],"host":["https://secure.bushel44.com/api/v1"],"query":[{"disabled":true,"description":{"content":"<p>Include batch history</p>\n","type":"text/plain"},"key":"with_history","value":"false"}],"variable":[]}},"response":[],"_postman_id":"15b822b7-003c-458b-98e1-055882231076"},{"name":"Batch (V1 - DEPRECATED)","id":"07b8fad9-1a20-4331-915a-3628d7d3f6e1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"Premium Batch #003\", // required | [string]\n  \"product_id\": 30,  // required | [integer]\n  \"operation_id\": 3, // required | [integer]\n  \"listing_price\": 50000, // optional | [integer] note: in cents. 35 = $0.35, 3500 = $35.00\n  \"minimum_sales_price\": 40000, // optional | [integer] note: in cents. 35 = $0.35, 3500 = $35.00\n  \"pto_oneg_listing_price\": 1500, // optional | [integer] note: in cents. 35 = $0.35, 3500 = $35.00\n  \"pto_twog_listing_price\": 2800, // optional | [integer] note: in cents. 35 = $0.35, 3500 = $35.00\n  \"pto_eighthoz_listing_price\": 10000, // optional | [integer] note: in cents. 35 = $0.35, 3500 = $35.00\n  \"pto_quarteroz_listing_price\": 18000, // optional | [integer] note: in cents. 35 = $0.35, 3500 = $35.00\n  \"pto_halfoz_listing_price\": 32000, // optional | [integer] note: in cents. 35 = $0.35, 3500 = $35.00\n  \"pto_oneoz_listing_price\": 60000, // optional | [integer] note: in cents. 35 = $0.35, 3500 = $35.00\n  \"pto_quarterpound_listing_price\": 220000, // optional | [integer] note: in cents. 35 = $0.35, 3500 = $35.00\n  \"pto_halfpound_listing_price\": 420000, // optional | [integer] note: in cents. 35 = $0.35, 3500 = $35.00\n  \"pto_onepound_listing_price\": 800000, // optional | [integer] note: in cents. 35 = $0.35, 3500 = $35.00\n  \"cost_of_goods\": 25000, // optional | [integer] note: in cents. 35 = $0.35, 3500 = $35.00\n  \"true_cost\": 30000, // optional | [integer] note: in cents. 35 = $0.35, 3500 = $35.00\n  \"sample_price\": 500, // optional | [integer] note: in cents. 35 = $0.35, 3500 = $35.00\n  \"disable_inventory_tracking\": false, // optional | [boolean] \n  \"quantity\": 100.5, // optional | [float] \n  \"zone_number\": \"A-12\", // optional | [string] \n  \"lot_number\": \"LOT-2024-001\", // optional | [string] \n  \"sack_number\": \"SACK-456\", // optional | [string] \n  \"seeded\": \"No\", // optional | [string] \n  \"line_note\": \"High quality indoor grown batch\", // optional | [string] \n  \"description\": \"Premium indoor flower with excellent terpene profile and potency\", // optional | [string] \n  \"storage_location\": \"Warehouse A, Section 12, Shelf 3\", // optional | [string] \n  \"sample_quantity_label\": \"1g samples\", // optional | [string] \n  \"sample_size\": 1.0, // optional | [float] \n  \"allow_samples\": true, // optional | [boolean] \n  \"track_sample_quantity\": true, // optional | [boolean] \n  \"harvest_date\": \"2024-10-15\", // optional | [date] yyyy-mm-dd\n  \"dry_date\": \"2024-10-30\", // optional | [date] yyyy-mm-dd\n  \"extraction_date\": \"2024-11-05\", // optional | [date] yyyy-mm-dd\n  \"best_by_date\": \"2025-10-15\", // optional | [date] yyyy-mm-dd\n  \"production_date\": \"2024-11-10\", // optional | [date] yyyy-mm-dd\n  \"in_stock_expected_date\": \"2024-12-01\", // optional | [date] yyyy-mm-dd\n  \"test_date\": \"2024-11-20\", // optional | [date] yyyy-mm-dd\n  \"hold\": false, // optional | [boolean] \n  \"true_hold\": false, // optional | [boolean] \n  \"back_order\": false, // optional | [boolean] \n  \"restricted\": false, // optional | [boolean] \n  \"predominate_canabinoid_min_or_only\": 22.5, // optional | [float] \n  \"predominate_canabinoid_max\": 25.0, // optional | [float] \n  \"predominate_canabinoid_unit\": \"%\", // optional (required if predominate_canabinoid_min_or_only is set) [string] enum[Mg, %]\n  \"terpenes\": [ // optional terpene array \n    {\n      \"terpene_id\": 1, // required [integer]\n      \"measurement\": 2.5, // required [integer]\n      \"measurement_type\": \"%\" // required [string] enum[Mg, %]\n    },\n    {\n      \"terpene_id\": 2,\n      \"measurement\": 1.8,\n      \"measurement_type\": \"%\"\n    }\n  ],\n  \"cannabinoids\": [ // optional cannabinoid array \n    {\n      \"cannabinoid_id\": 1, // required [integer]\n      \"measurement\": 23.2, // required [integer]\n      \"measurement_type\": \"%\"  // required [string] enum[Mg, %]\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"https://secure.bushel44.com/api/v1/v1/batches","description":"<p>This v1 endpoint has been deprecated to avoid inventory sync issues as we have a breaking change in our underlying inventory system. Previously cases were stored in according to their case quantity, now they are stored in the individual unit quantity. Eg, a 10 cases of 10 was previously stored as 10. Now it is stored as 100. Please use v2 endpoint instead.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}},"urlObject":{"path":["v1","batches"],"host":["https://secure.bushel44.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"a66064e7-e5a1-43ef-9882-c9e39adc0a2e","name":"Batch","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"Premium Batch #003\", // required | [string]\n  \"product_id\": 30,  // required | [integer]\n  \"operation_id\": 3, // required | [integer]\n  \"listing_price\": 50000, // optional | [integer] note: in cents. 35 = $0.35, 3500 = $35.00\n  \"minimum_sales_price\": 40000, // optional | [integer] note: in cents. 35 = $0.35, 3500 = $35.00\n  \"pto_oneg_listing_price\": 1500, // optional | [integer] note: in cents. 35 = $0.35, 3500 = $35.00\n  \"pto_twog_listing_price\": 2800, // optional | [integer] note: in cents. 35 = $0.35, 3500 = $35.00\n  \"pto_eighthoz_listing_price\": 10000, // optional | [integer] note: in cents. 35 = $0.35, 3500 = $35.00\n  \"pto_quarteroz_listing_price\": 18000, // optional | [integer] note: in cents. 35 = $0.35, 3500 = $35.00\n  \"pto_halfoz_listing_price\": 32000, // optional | [integer] note: in cents. 35 = $0.35, 3500 = $35.00\n  \"pto_oneoz_listing_price\": 60000, // optional | [integer] note: in cents. 35 = $0.35, 3500 = $35.00\n  \"pto_quarterpound_listing_price\": 220000, // optional | [integer] note: in cents. 35 = $0.35, 3500 = $35.00\n  \"pto_halfpound_listing_price\": 420000, // optional | [integer] note: in cents. 35 = $0.35, 3500 = $35.00\n  \"pto_onepound_listing_price\": 800000, // optional | [integer] note: in cents. 35 = $0.35, 3500 = $35.00\n  \"cost_of_goods\": 25000, // optional | [integer] note: in cents. 35 = $0.35, 3500 = $35.00\n  \"true_cost\": 30000, // optional | [integer] note: in cents. 35 = $0.35, 3500 = $35.00\n  \"sample_price\": 500, // optional | [integer] note: in cents. 35 = $0.35, 3500 = $35.00\n  \"disable_inventory_tracking\": false, // optional | [boolean] \n  \"quantity\": 100.5, // optional | [float] \n  \"zone_number\": \"A-12\", // optional | [string] \n  \"lot_number\": \"LOT-2024-001\", // optional | [string] \n  \"sack_number\": \"SACK-456\", // optional | [string] \n  \"seeded\": \"No\", // optional | [string] \n  \"line_note\": \"High quality indoor grown batch\", // optional | [string] \n  \"description\": \"Premium indoor flower with excellent terpene profile and potency\", // optional | [string] \n  \"storage_location\": \"Warehouse A, Section 12, Shelf 3\", // optional | [string] \n  \"sample_quantity_label\": \"1g samples\", // optional | [string] \n  \"sample_size\": 1.0, // optional | [float] \n  \"allow_samples\": true, // optional | [boolean] \n  \"track_sample_quantity\": true, // optional | [boolean] \n  \"harvest_date\": \"2024-10-15\", // optional | [date] yyyy-mm-dd\n  \"dry_date\": \"2024-10-30\", // optional | [date] yyyy-mm-dd\n  \"extraction_date\": \"2024-11-05\", // optional | [date] yyyy-mm-dd\n  \"best_by_date\": \"2025-10-15\", // optional | [date] yyyy-mm-dd\n  \"production_date\": \"2024-11-10\", // optional | [date] yyyy-mm-dd\n  \"in_stock_expected_date\": \"2024-12-01\", // optional | [date] yyyy-mm-dd\n  \"test_date\": \"2024-11-20\", // optional | [date] yyyy-mm-dd\n  \"hold\": false, // optional | [boolean] \n  \"true_hold\": false, // optional | [boolean] \n  \"back_order\": false, // optional | [boolean] \n  \"restricted\": false, // optional | [boolean] \n  \"predominate_canabinoid_min_or_only\": 22.5, // optional | [float] \n  \"predominate_canabinoid_max\": 25.0, // optional | [float] \n  \"predominate_canabinoid_unit\": \"%\", // optional (required if predominate_canabinoid_min_or_only is set) [string] enum[Mg, %]\n  \"terpenes\": [ // optional terpene array \n    {\n      \"terpene_id\": 1, // required [integer]\n      \"measurement\": 2.5, // required [integer]\n      \"measurement_type\": \"%\" // required [string] enum[Mg, %]\n    },\n    {\n      \"terpene_id\": 2,\n      \"measurement\": 1.8,\n      \"measurement_type\": \"%\"\n    }\n  ],\n  \"cannabinoids\": [ // optional cannabinoid array \n    {\n      \"cannabinoid_id\": 1, // required [integer]\n      \"measurement\": 23.2, // required [integer]\n      \"measurement_type\": \"%\"  // required [string] enum[Mg, %]\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"https://secure.bushel44.com/api/v1/batches"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 30 May 2025 15:02:49 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Cache-Control","value":"no-cache, public, must-revalidate, proxy-revalidate"},{"key":"X-RateLimit-Limit","value":"5000"},{"key":"X-RateLimit-Remaining","value":"4997"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"batch\": {\n        \"id\": 53,\n        \"uuid\": \"0f391830-4d7f-40dc-93f4-95657c2452c0\",\n        \"name\": \"Premium Batch #003\",\n        \"product_id\": 30,\n        \"operation_id\": 3,\n        \"unlimited_quantity\": false,\n        \"quantity\": 100.5,\n        \"zone_number\": \"A-12\",\n        \"lot_number\": null,\n        \"sack_number\": null,\n        \"seeded\": null,\n        \"harvest_date\": null,\n        \"dry_date\": null,\n        \"extraction_date\": \"2024-11-05T00:00:00.000000Z\",\n        \"best_by_date\": \"2025-10-15T00:00:00.000000Z\",\n        \"test_date\": null,\n        \"production_date\": null,\n        \"thc_limit\": null,\n        \"hold\": false,\n        \"back_order\": false,\n        \"in_stock_expected_date\": \"2024-12-01T00:00:00.000000Z\",\n        \"predominate_canabinoid_min_or_only\": 22.5,\n        \"predominate_canabinoid_max\": 25,\n        \"predominate_canabinoid_unit\": \"%\",\n        \"storage_location\": \"Warehouse A, Section 12, Shelf 3\",\n        \"minimum_sales_price\": \"400.00\",\n        \"sample_price\": \"5.00\",\n        \"cost_of_goods\": \"250.00\",\n        \"true_cost\": \"300.00\",\n        \"listing_price\": \"500.00\",\n        \"pto_oneg_listing_price\": \"0.00\",\n        \"pto_twog_listing_price\": \"0.00\",\n        \"pto_eighthoz_listing_price\": \"0.00\",\n        \"pto_quarteroz_listing_price\": \"0.00\",\n        \"pto_halfoz_listing_price\": \"0.00\",\n        \"pto_oneoz_listing_price\": \"0.00\",\n        \"pto_quarterpound_listing_price\": \"0.00\",\n        \"pto_halfpound_listing_price\": \"0.00\",\n        \"pto_onepound_listing_price\": \"0.00\",\n        \"unit_price\": [],\n        \"archived\": false,\n        \"line_note\": \"High quality indoor grown batch\",\n        \"description\": \"Premium indoor flower with excellent terpene profile and potency\",\n        \"allow_samples\": true,\n        \"track_sample_quantity\": true,\n        \"pull_sample_from_alternative_batch_id\": null,\n        \"sample_quantity_label\": \"1g samples\",\n        \"sample_size\": 1,\n        \"restricted\": false,\n        \"created_at\": \"2025-05-30T15:02:48.000000Z\",\n        \"updated_at\": \"2025-05-30T15:02:48.000000Z\",\n        \"documents\": [],\n        \"operation\": {\n            \"id\": 3,\n            \"name\": \"High Hopes Farm\",\n            \"industry\": null,\n            \"state_license\": \"060-X0001\"\n        },\n        \"terpenes\": [\n            {\n                \"id\": 1,\n                \"batch_terpene_id\": 265,\n                \"batch_id\": 53,\n                \"product_id\": 30,\n                \"name\": \"a - Bisabolol\",\n                \"display_name\": \"a - Bisabolol\",\n                \"measurement\": \"2.5\",\n                \"measurement_type\": \"%\"\n            },\n            {\n                \"id\": 2,\n                \"batch_terpene_id\": 266,\n                \"batch_id\": 53,\n                \"product_id\": 30,\n                \"name\": \"a - Pinene\",\n                \"display_name\": \"a - Pinene\",\n                \"measurement\": \"1.8\",\n                \"measurement_type\": \"%\"\n            }\n        ],\n        \"cannabinoids\": [\n            {\n                \"id\": 1,\n                \"batch_cannabinoid_id\": 556,\n                \"batch_id\": 53,\n                \"product_id\": 30,\n                \"name\": \"Cannabichromene\",\n                \"abbreviation\": \"CBC\",\n                \"display_name\": \"(CBC) Cannabichromene\",\n                \"measurement\": \"23.2\",\n                \"measurement_type\": \"%\"\n            }\n        ]\n    }\n}"}],"_postman_id":"07b8fad9-1a20-4331-915a-3628d7d3f6e1"},{"name":"Batch (V2)","id":"efede5b7-fb0c-4daf-a92a-bfab9b6a8c25","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"Premium Batch #003\", // required | [string]\n  \"product_id\": 30,  // required | [integer]\n  \"operation_id\": 3, // required | [integer]\n  \"listing_price\": 50000, // optional | [integer] note: in cents. 35 = $0.35, 3500 = $35.00\n  \"minimum_sales_price\": 40000, // optional | [integer] note: in cents. 35 = $0.35, 3500 = $35.00\n  \"listing_price_base_unit\": 50000, // optional | [integer] note: in cents. 35 = $0.35, 3500 = $35.00, this is listing price of a unit for a batch sold in cases.\n  \"minimum_sales_price_base_unit\": 40000, // optional | [integer] note: in cents. 35 = $0.35, 3500 = $35.00, this is minimum sales price of a unit for a batch sold in cases.\n  \"pto_oneg_listing_price\": 1500, // optional | [integer] note: in cents. 35 = $0.35, 3500 = $35.00\n  \"pto_twog_listing_price\": 2800, // optional | [integer] note: in cents. 35 = $0.35, 3500 = $35.00\n  \"pto_eighthoz_listing_price\": 10000, // optional | [integer] note: in cents. 35 = $0.35, 3500 = $35.00\n  \"pto_quarteroz_listing_price\": 18000, // optional | [integer] note: in cents. 35 = $0.35, 3500 = $35.00\n  \"pto_halfoz_listing_price\": 32000, // optional | [integer] note: in cents. 35 = $0.35, 3500 = $35.00\n  \"pto_oneoz_listing_price\": 60000, // optional | [integer] note: in cents. 35 = $0.35, 3500 = $35.00\n  \"pto_quarterpound_listing_price\": 220000, // optional | [integer] note: in cents. 35 = $0.35, 3500 = $35.00\n  \"pto_halfpound_listing_price\": 420000, // optional | [integer] note: in cents. 35 = $0.35, 3500 = $35.00\n  \"pto_onepound_listing_price\": 800000, // optional | [integer] note: in cents. 35 = $0.35, 3500 = $35.00\n  \"cost_of_goods\": 25000, // optional | [integer] note: in cents. 35 = $0.35, 3500 = $35.00\n  \"true_cost\": 30000, // optional | [integer] note: in cents. 35 = $0.35, 3500 = $35.00\n  \"sample_price\": 500, // optional | [integer] note: in cents. 35 = $0.35, 3500 = $35.00\n  \"disable_inventory_tracking\": false, // optional | [boolean] \n  \"quantity\": 100.5, // optional | [float] \n  \"zone_number\": \"A-12\", // optional | [string] \n  \"lot_number\": \"LOT-2024-001\", // optional | [string] \n  \"sack_number\": \"SACK-456\", // optional | [string] \n  \"seeded\": \"No\", // optional | [string] \n  \"line_note\": \"High quality indoor grown batch\", // optional | [string] \n  \"description\": \"Premium indoor flower with excellent terpene profile and potency\", // optional | [string] \n  \"storage_location\": \"Warehouse A, Section 12, Shelf 3\", // optional | [string] \n  \"sample_quantity_label\": \"1g samples\", // optional | [string] \n  \"sample_size\": 1.0, // optional | [float] \n  \"allow_samples\": true, // optional | [boolean] \n  \"track_sample_quantity\": true, // optional | [boolean] \n  \"harvest_date\": \"2024-10-15\", // optional | [date] yyyy-mm-dd\n  \"dry_date\": \"2024-10-30\", // optional | [date] yyyy-mm-dd\n  \"extraction_date\": \"2024-11-05\", // optional | [date] yyyy-mm-dd\n  \"best_by_date\": \"2025-10-15\", // optional | [date] yyyy-mm-dd\n  \"production_date\": \"2024-11-10\", // optional | [date] yyyy-mm-dd\n  \"in_stock_expected_date\": \"2024-12-01\", // optional | [date] yyyy-mm-dd\n  \"test_date\": \"2024-11-20\", // optional | [date] yyyy-mm-dd\n  \"hold\": false, // optional | [boolean] \n  \"true_hold\": false, // optional | [boolean] \n  \"back_order\": false, // optional | [boolean] \n  \"restricted\": false, // optional | [boolean] \n  \"predominate_canabinoid_min_or_only\": 22.5, // optional | [float] \n  \"predominate_canabinoid_max\": 25.0, // optional | [float] \n  \"predominate_canabinoid_unit\": \"%\", // optional (required if predominate_canabinoid_min_or_only is set) [string] enum[Mg, %]\n  \"terpenes\": [ // optional terpene array \n    {\n      \"terpene_id\": 1, // required [integer]\n      \"measurement\": 2.5, // required [integer]\n      \"measurement_type\": \"%\" // required [string] enum[Mg, %]\n    },\n    {\n      \"terpene_id\": 2,\n      \"measurement\": 1.8,\n      \"measurement_type\": \"%\"\n    }\n  ],\n  \"cannabinoids\": [ // optional cannabinoid array \n    {\n      \"cannabinoid_id\": 1, // required [integer]\n      \"measurement\": 23.2, // required [integer]\n      \"measurement_type\": \"%\"  // required [string] enum[Mg, %]\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"https://secure.bushel44.com/api/v1/v2/batches","description":"<p><strong>Token Permissions</strong></p>\n<ul>\n<li>update:batches</li>\n</ul>\n<p><strong>Batch Field Rules</strong></p>\n<p>Available fields are gated by the product category &amp; sometimes also by the product type. Please see the Batch Field Rules endpoint for the field logic. This will return an allow and deny list as the specifics for each field can be fairly complicated.</p>\n<p>If you pass in a field that is not supported, we will ignore it and accept the other fields.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}},"urlObject":{"path":["v2","batches"],"host":["https://secure.bushel44.com/api/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"efede5b7-fb0c-4daf-a92a-bfab9b6a8c25"},{"name":"Batch (V1 - DEPRECATED)","id":"0e71dba2-9e44-40c7-b139-0bc0e1cc86e8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"Premium Batch #003\", // required | [string]\n  \"listing_price\": 50000, // optional, nullable | [integer] note: in cents. 35 = $0.35, 3500 = $35.00\n  \"minimum_sales_price\": 40000, // optional, nullable | [integer] note: in cents. 35 = $0.35, 3500 = $35.00\n  \"pto_oneg_listing_price\": 1500, // optional, nullable | [integer] note: in cents. 35 = $0.35, 3500 = $35.00\n  \"pto_twog_listing_price\": 2800, // optional, nullable | [integer] note: in cents. 35 = $0.35, 3500 = $35.00\n  \"pto_eighthoz_listing_price\": 10000, // optional, nullable | [integer] note: in cents. 35 = $0.35, 3500 = $35.00\n  \"pto_quarteroz_listing_price\": 18000, // optional, nullable | [integer] note: in cents. 35 = $0.35, 3500 = $35.00\n  \"pto_halfoz_listing_price\": 32000, // optional, nullable | [integer] note: in cents. 35 = $0.35, 3500 = $35.00\n  \"pto_oneoz_listing_price\": 60000, // optional, nullable | [integer] note: in cents. 35 = $0.35, 3500 = $35.00\n  \"pto_quarterpound_listing_price\": 220000, // optional, nullable | [integer] note: in cents. 35 = $0.35, 3500 = $35.00\n  \"pto_halfpound_listing_price\": 420000, // optional, nullable | [integer] note: in cents. 35 = $0.35, 3500 = $35.00\n  \"pto_onepound_listing_price\": 800000, // optional, nullable | [integer] note: in cents. 35 = $0.35, 3500 = $35.00\n  \"cost_of_goods\": 25000, // optional, nullable | [integer] note: in cents. 35 = $0.35, 3500 = $35.00\n  \"true_cost\": 30000, // optional, nullable | [integer] note: in cents. 35 = $0.35, 3500 = $35.00\n  \"sample_price\": 500, // optional, nullable | [integer] note: in cents. 35 = $0.35, 3500 = $35.00\n  \"disable_inventory_tracking\": false, // optional, not nullable | [boolean] \n  \"quantity\": 100.5, // optional, nullable | [float] \n  \"zone_number\": \"A-12\", // optional, nullable | [string] \n  \"lot_number\": \"LOT-2024-001\", // optional, nullable | [string] \n  \"sack_number\": \"SACK-456\", // optional, nullable | [string] \n  \"seeded\": \"No\", // optional, nullable | [string] \n  \"line_note\": \"High quality indoor grown batch\", // optional, nullable | [string] \n  \"description\": \"Premium indoor flower with excellent terpene profile and potency\", // optional, nullable | [string] \n  \"storage_location\": \"Warehouse A, Section 12, Shelf 3\", // optional, nullable | [string] \n  \"sample_quantity_label\": \"1g samples\", // optional, nullable | [string] \n  \"sample_size\": 1.0, // optional, nullable | [float] \n  \"allow_samples\": true, // optional, not nullable | [boolean] \n  \"track_sample_quantity\": true, // optional, not nullable | [boolean] \n  \"harvest_date\": \"2024-10-15\", // optional, nullable | [date] yyyy-mm-dd\n  \"dry_date\": \"2024-10-30\", // optional, nullable | [date] yyyy-mm-dd\n  \"extraction_date\": \"2024-11-05\", // optional, nullable | [date] yyyy-mm-dd\n  \"best_by_date\": \"2025-10-15\", // optional, nullable | [date] yyyy-mm-dd\n  \"production_date\": \"2024-11-10\", // optional, nullable | [date] yyyy-mm-dd\n  \"in_stock_expected_date\": \"2024-12-01\", // optional, nullable | [date] yyyy-mm-dd\n  \"test_date\": \"2024-11-20\", // optional, nullable | [date] yyyy-mm-dd\n  \"hold\": false, // optional, not nullable | [boolean] \n  \"true_hold\": false, // optional, not nullable | [boolean] \n  \"back_order\": false, // optional, not nullable | [boolean] \n  \"restricted\": false, // optional, not nullable | [boolean] \n  \"archived\": false, // optional, not nullable | [boolean]\n  \"predominate_canabinoid_min_or_only\": 22.5, // optional, nullable | [float] \n  \"predominate_canabinoid_max\": 25.0, // optional, nullable | [float] \n  \"predominate_canabinoid_unit\": \"%\", // optional, nullable (required if predominate_canabinoid_min_or_only is set) [string] enum[Mg, %]\n  \"terpenes\": [ // optional, nullable terpene array \n    {\n      \"terpene_id\": 1, // required [integer]\n      \"measurement\": 2.5, // required [integer]\n      \"measurement_type\": \"%\" // required [string] enum[Mg, %]\n    },\n    {\n      \"terpene_id\": 2,\n      \"measurement\": 1.8,\n      \"measurement_type\": \"%\"\n    }\n  ],\n  \"cannabinoids\": [ // optional, nullable cannabinoid array \n    {\n      \"cannabinoid_id\": 1, // required [integer]\n      \"measurement\": 23.2, // required [integer]\n      \"measurement_type\": \"%\"  // required [string] enum[Mg, %]\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"https://secure.bushel44.com/api/v1/v1/batches/2","description":"<p>This v1 endpoint has been deprecated to avoid inventory sync issues as we have a breaking change in our underlying inventory system. Previously cases were stored in according to their case quantity, now they are stored in the individual unit quantity. Eg, a 10 cases of 10 was previously stored as 10. Now it is stored as 100. Please use v2 endpoint instead.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}},"urlObject":{"path":["v1","batches","2"],"host":["https://secure.bushel44.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"a5cffc27-f455-41b7-b0d1-14d7b94a2a59","name":"Batch","originalRequest":{"method":"PATCH","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"Premium Batch #003\", // required | [string]\n  \"listing_price\": 50000, // optional, nullable | [integer] note: in cents. 35 = $0.35, 3500 = $35.00\n  \"minimum_sales_price\": 40000, // optional, nullable | [integer] note: in cents. 35 = $0.35, 3500 = $35.00\n  \"pto_oneg_listing_price\": 1500, // optional, nullable | [integer] note: in cents. 35 = $0.35, 3500 = $35.00\n  \"pto_twog_listing_price\": 2800, // optional, nullable | [integer] note: in cents. 35 = $0.35, 3500 = $35.00\n  \"pto_eighthoz_listing_price\": 10000, // optional, nullable | [integer] note: in cents. 35 = $0.35, 3500 = $35.00\n  \"pto_quarteroz_listing_price\": 18000, // optional, nullable | [integer] note: in cents. 35 = $0.35, 3500 = $35.00\n  \"pto_halfoz_listing_price\": 32000, // optional, nullable | [integer] note: in cents. 35 = $0.35, 3500 = $35.00\n  \"pto_oneoz_listing_price\": 60000, // optional, nullable | [integer] note: in cents. 35 = $0.35, 3500 = $35.00\n  \"pto_quarterpound_listing_price\": 220000, // optional, nullable | [integer] note: in cents. 35 = $0.35, 3500 = $35.00\n  \"pto_halfpound_listing_price\": 420000, // optional, nullable | [integer] note: in cents. 35 = $0.35, 3500 = $35.00\n  \"pto_onepound_listing_price\": 800000, // optional, nullable | [integer] note: in cents. 35 = $0.35, 3500 = $35.00\n  \"cost_of_goods\": 25000, // optional, nullable | [integer] note: in cents. 35 = $0.35, 3500 = $35.00\n  \"true_cost\": 30000, // optional, nullable | [integer] note: in cents. 35 = $0.35, 3500 = $35.00\n  \"sample_price\": 500, // optional, nullable | [integer] note: in cents. 35 = $0.35, 3500 = $35.00\n  \"disable_inventory_tracking\": false, // optional, not nullable | [boolean] \n  \"quantity\": 100.5, // optional, nullable | [float] \n  \"zone_number\": \"A-12\", // optional, nullable | [string] \n  \"lot_number\": \"LOT-2024-001\", // optional, nullable | [string] \n  \"sack_number\": \"SACK-456\", // optional, nullable | [string] \n  \"seeded\": \"No\", // optional, nullable | [string] \n  \"line_note\": \"High quality indoor grown batch\", // optional, nullable | [string] \n  \"description\": \"Premium indoor flower with excellent terpene profile and potency\", // optional, nullable | [string] \n  \"storage_location\": \"Warehouse A, Section 12, Shelf 3\", // optional, nullable | [string] \n  \"sample_quantity_label\": \"1g samples\", // optional, nullable | [string] \n  \"sample_size\": 1.0, // optional, nullable | [float] \n  \"allow_samples\": true, // optional, not nullable | [boolean] \n  \"track_sample_quantity\": true, // optional, not nullable | [boolean] \n  \"harvest_date\": \"2024-10-15\", // optional, nullable | [date] yyyy-mm-dd\n  \"dry_date\": \"2024-10-30\", // optional, nullable | [date] yyyy-mm-dd\n  \"extraction_date\": \"2024-11-05\", // optional, nullable | [date] yyyy-mm-dd\n  \"best_by_date\": \"2025-10-15\", // optional, nullable | [date] yyyy-mm-dd\n  \"production_date\": \"2024-11-10\", // optional, nullable | [date] yyyy-mm-dd\n  \"in_stock_expected_date\": \"2024-12-01\", // optional, nullable | [date] yyyy-mm-dd\n  \"test_date\": \"2024-11-20\", // optional, nullable | [date] yyyy-mm-dd\n  \"hold\": false, // optional, not nullable | [boolean] \n  \"true_hold\": false, // optional, not nullable | [boolean] \n  \"back_order\": false, // optional, not nullable | [boolean] \n  \"restricted\": false, // optional, not nullable | [boolean] \n  \"archived\": false, // optional, not nullable | [boolean]\n  \"predominate_canabinoid_min_or_only\": 22.5, // optional, nullable | [float] \n  \"predominate_canabinoid_max\": 25.0, // optional, nullable | [float] \n  \"predominate_canabinoid_unit\": \"%\", // optional, nullable (required if predominate_canabinoid_min_or_only is set) [string] enum[Mg, %]\n  \"terpenes\": [ // optional, nullable terpene array \n    {\n      \"terpene_id\": 1, // required [integer]\n      \"measurement\": 2.5, // required [integer]\n      \"measurement_type\": \"%\" // required [string] enum[Mg, %]\n    },\n    {\n      \"terpene_id\": 2,\n      \"measurement\": 1.8,\n      \"measurement_type\": \"%\"\n    }\n  ],\n  \"cannabinoids\": [ // optional, nullable cannabinoid array \n    {\n      \"cannabinoid_id\": 1, // required [integer]\n      \"measurement\": 23.2, // required [integer]\n      \"measurement_type\": \"%\"  // required [string] enum[Mg, %]\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"https://secure.bushel44.com/api/v1/batches/2"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 30 May 2025 15:02:58 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Cache-Control","value":"no-cache, public, must-revalidate, proxy-revalidate"},{"key":"X-RateLimit-Limit","value":"5000"},{"key":"X-RateLimit-Remaining","value":"4996"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"batch\": {\n        \"id\": 19,\n        \"uuid\": \"2b491171-2114-4a09-8633-939989ce4dd4\",\n        \"name\": \"Premium Batch #003\",\n        \"product_id\": 18,\n        \"operation_id\": 3,\n        \"unlimited_quantity\": false,\n        \"quantity\": 1390,\n        \"zone_number\": \"A-12\",\n        \"lot_number\": \"6\",\n        \"sack_number\": \"19\",\n        \"seeded\": \"Yes - Lightly\",\n        \"harvest_date\": \"2024-10-15T00:00:00.000000Z\",\n        \"dry_date\": null,\n        \"extraction_date\": null,\n        \"best_by_date\": \"2025-10-15T00:00:00.000000Z\",\n        \"test_date\": \"2024-11-20T00:00:00.000000Z\",\n        \"production_date\": null,\n        \"thc_limit\": true,\n        \"hold\": false,\n        \"back_order\": false,\n        \"in_stock_expected_date\": \"2024-12-01T00:00:00.000000Z\",\n        \"predominate_canabinoid_min_or_only\": 22.5,\n        \"predominate_canabinoid_max\": 25,\n        \"predominate_canabinoid_unit\": \"%\",\n        \"storage_location\": \"Warehouse A, Section 12, Shelf 3\",\n        \"minimum_sales_price\": \"400.00\",\n        \"sample_price\": \"5.00\",\n        \"cost_of_goods\": \"250.00\",\n        \"true_cost\": \"300.00\",\n        \"listing_price\": \"500.00\",\n        \"pto_oneg_listing_price\": \"0.00\",\n        \"pto_twog_listing_price\": \"0.00\",\n        \"pto_eighthoz_listing_price\": \"0.00\",\n        \"pto_quarteroz_listing_price\": \"0.00\",\n        \"pto_halfoz_listing_price\": \"0.00\",\n        \"pto_oneoz_listing_price\": \"0.00\",\n        \"pto_quarterpound_listing_price\": \"0.00\",\n        \"pto_halfpound_listing_price\": \"0.00\",\n        \"pto_onepound_listing_price\": \"0.00\",\n        \"unit_price\": [],\n        \"archived\": false,\n        \"line_note\": \"High quality indoor grown batch\",\n        \"description\": \"Premium indoor flower with excellent terpene profile and potency\",\n        \"allow_samples\": true,\n        \"track_sample_quantity\": true,\n        \"pull_sample_from_alternative_batch_id\": null,\n        \"sample_quantity_label\": \"1g samples\",\n        \"sample_size\": 1,\n        \"restricted\": false,\n        \"created_at\": \"2020-04-07T19:57:29.000000Z\",\n        \"updated_at\": \"2025-05-30T15:02:58.000000Z\",\n        \"documents\": [\n            {\n                \"id\": 37,\n                \"name\": \"Lab-Testing.pdf\",\n                \"label\": \"Potency\"\n            },\n            {\n                \"id\": 967,\n                \"name\": \"testing-doc.pdf\",\n                \"label\": \"Pesticides\"\n            },\n            {\n                \"id\": 968,\n                \"name\": \"testing-doc.pdf\",\n                \"label\": \"Heavy Metal\"\n            }\n        ],\n        \"operation\": {\n            \"id\": 3,\n            \"name\": \"High Hopes Farm\",\n            \"industry\": null,\n            \"state_license\": \"060-X0001\"\n        },\n        \"terpenes\": [\n            {\n                \"id\": 1,\n                \"batch_terpene_id\": 267,\n                \"batch_id\": 19,\n                \"product_id\": 18,\n                \"name\": \"a - Bisabolol\",\n                \"display_name\": \"a - Bisabolol\",\n                \"measurement\": \"2.5\",\n                \"measurement_type\": \"%\"\n            },\n            {\n                \"id\": 2,\n                \"batch_terpene_id\": 268,\n                \"batch_id\": 19,\n                \"product_id\": 18,\n                \"name\": \"a - Pinene\",\n                \"display_name\": \"a - Pinene\",\n                \"measurement\": \"1.8\",\n                \"measurement_type\": \"%\"\n            }\n        ],\n        \"cannabinoids\": [\n            {\n                \"id\": 1,\n                \"batch_cannabinoid_id\": 557,\n                \"batch_id\": 19,\n                \"product_id\": 18,\n                \"name\": \"Cannabichromene\",\n                \"abbreviation\": \"CBC\",\n                \"display_name\": \"(CBC) Cannabichromene\",\n                \"measurement\": \"23.2\",\n                \"measurement_type\": \"%\"\n            }\n        ]\n    }\n}"}],"_postman_id":"0e71dba2-9e44-40c7-b139-0bc0e1cc86e8"},{"name":"Batch (V2)","id":"704d4cbd-7024-45be-8dde-90661815a1d5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"Premium Batch #003\", // required | [string]\n  \"listing_price\": 50000, // optional, nullable | [integer] note: in cents. 35 = $0.35, 3500 = $35.00\n  \"minimum_sales_price\": 40000, // optional, nullable | [integer] note: in cents. 35 = $0.35, 3500 = $35.00\n  \"listing_price_base_unit\": 50000, // optional, nullable | [integer] note: in cents. 35 = $0.35, 3500 = $35.00, this is listing price of a unit for a batch sold in cases.\n  \"minimum_sales_price_base_unit\": 40000, // optional, nullable | [integer] note: in cents. 35 = $0.35, 3500 = $35.00, this is minimum sales price of a unit for a batch sold in cases.\n  \"pto_oneg_listing_price\": 1500, // optional, nullable | [integer] note: in cents. 35 = $0.35, 3500 = $35.00\n  \"pto_twog_listing_price\": 2800, // optional, nullable | [integer] note: in cents. 35 = $0.35, 3500 = $35.00\n  \"pto_eighthoz_listing_price\": 10000, // optional, nullable | [integer] note: in cents. 35 = $0.35, 3500 = $35.00\n  \"pto_quarteroz_listing_price\": 18000, // optional, nullable | [integer] note: in cents. 35 = $0.35, 3500 = $35.00\n  \"pto_halfoz_listing_price\": 32000, // optional, nullable | [integer] note: in cents. 35 = $0.35, 3500 = $35.00\n  \"pto_oneoz_listing_price\": 60000, // optional, nullable | [integer] note: in cents. 35 = $0.35, 3500 = $35.00\n  \"pto_quarterpound_listing_price\": 220000, // optional, nullable | [integer] note: in cents. 35 = $0.35, 3500 = $35.00\n  \"pto_halfpound_listing_price\": 420000, // optional, nullable | [integer] note: in cents. 35 = $0.35, 3500 = $35.00\n  \"pto_onepound_listing_price\": 800000, // optional, nullable | [integer] note: in cents. 35 = $0.35, 3500 = $35.00\n  \"cost_of_goods\": 25000, // optional, nullable | [integer] note: in cents. 35 = $0.35, 3500 = $35.00\n  \"true_cost\": 30000, // optional, nullable | [integer] note: in cents. 35 = $0.35, 3500 = $35.00\n  \"sample_price\": 500, // optional, nullable | [integer] note: in cents. 35 = $0.35, 3500 = $35.00\n  \"disable_inventory_tracking\": false, // optional, not nullable | [boolean] \n  \"quantity\": 100.5, // optional, nullable | [float] \n  \"zone_number\": \"A-12\", // optional, nullable | [string] \n  \"lot_number\": \"LOT-2024-001\", // optional, nullable | [string] \n  \"sack_number\": \"SACK-456\", // optional, nullable | [string] \n  \"seeded\": \"No\", // optional, nullable | [string] \n  \"line_note\": \"High quality indoor grown batch\", // optional, nullable | [string] \n  \"description\": \"Premium indoor flower with excellent terpene profile and potency\", // optional, nullable | [string] \n  \"storage_location\": \"Warehouse A, Section 12, Shelf 3\", // optional, nullable | [string] \n  \"sample_quantity_label\": \"1g samples\", // optional, nullable | [string] \n  \"sample_size\": 1.0, // optional, nullable | [float] \n  \"allow_samples\": true, // optional, not nullable | [boolean] \n  \"track_sample_quantity\": true, // optional, not nullable | [boolean] \n  \"harvest_date\": \"2024-10-15\", // optional, nullable | [date] yyyy-mm-dd\n  \"dry_date\": \"2024-10-30\", // optional, nullable | [date] yyyy-mm-dd\n  \"extraction_date\": \"2024-11-05\", // optional, nullable | [date] yyyy-mm-dd\n  \"best_by_date\": \"2025-10-15\", // optional, nullable | [date] yyyy-mm-dd\n  \"production_date\": \"2024-11-10\", // optional, nullable | [date] yyyy-mm-dd\n  \"in_stock_expected_date\": \"2024-12-01\", // optional, nullable | [date] yyyy-mm-dd\n  \"test_date\": \"2024-11-20\", // optional, nullable | [date] yyyy-mm-dd\n  \"hold\": false, // optional, not nullable | [boolean] \n  \"true_hold\": false, // optional, not nullable | [boolean] \n  \"back_order\": false, // optional, not nullable | [boolean] \n  \"restricted\": false, // optional, not nullable | [boolean] \n  \"archived\": false, // optional, not nullable | [boolean]\n  \"predominate_canabinoid_min_or_only\": 22.5, // optional, nullable | [float] \n  \"predominate_canabinoid_max\": 25.0, // optional, nullable | [float] \n  \"predominate_canabinoid_unit\": \"%\", // optional, nullable (required if predominate_canabinoid_min_or_only is set) [string] enum[Mg, %]\n  \"terpenes\": [ // optional, nullable terpene array \n    {\n      \"terpene_id\": 1, // required [integer]\n      \"measurement\": 2.5, // required [integer]\n      \"measurement_type\": \"%\" // required [string] enum[Mg, %]\n    },\n    {\n      \"terpene_id\": 2,\n      \"measurement\": 1.8,\n      \"measurement_type\": \"%\"\n    }\n  ],\n  \"cannabinoids\": [ // optional, nullable cannabinoid array \n    {\n      \"cannabinoid_id\": 1, // required [integer]\n      \"measurement\": 23.2, // required [integer]\n      \"measurement_type\": \"%\"  // required [string] enum[Mg, %]\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"https://secure.bushel44.com/api/v1/v2/batches/2","description":"<p><strong>Token Permissions</strong></p>\n<ul>\n<li>update:batches</li>\n</ul>\n<p>product_id and operation_id are not editable</p>\n<p><strong>Batch Field Rules</strong></p>\n<p>Available fields are gated by the product category &amp; sometimes also by the product type. Please see the Batch Field Rules endpoint for the field logic. This will return an allow and deny list as the specifics for each field can be fairly complicated.</p>\n<p>If you pass in a field that is not supported, we will ignore it and accept the other fields.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}},"urlObject":{"path":["v2","batches","2"],"host":["https://secure.bushel44.com/api/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"704d4cbd-7024-45be-8dde-90661815a1d5"},{"name":"Field Rules","id":"8de8a32b-c2fc-4520-ad6e-f6a76f4f2096","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer  ","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/v1/batches/meta/field-rules","description":"<p><strong>Token Permissions</strong></p>\n<ul>\n<li>view:batches</li>\n</ul>\n<p>Note: You may notice an industry flag that could be cannabis or hemp. For the purpose of this API, you are industry == cannabis.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}},"urlObject":{"path":["v1","batches","meta","field-rules"],"host":["https://secure.bushel44.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"1cfc9c8f-d033-400a-870d-31beff3dd58e","name":"Field Rules","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer  ","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/batches/meta/field-rules"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 30 May 2025 15:03:05 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Cache-Control","value":"no-cache, public, must-revalidate, proxy-revalidate"},{"key":"X-RateLimit-Limit","value":"5000"},{"key":"X-RateLimit-Remaining","value":"4995"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"listingPrice\": {\n        \"deny\": [\n            {\n                \"category\": \"Pack To Order\"\n            }\n        ],\n        \"allow\": [\n            {\n                \"category\": \"*\"\n            }\n        ]\n    },\n    \"minimumSalesPrice\": {\n        \"deny\": [\n            {\n                \"category\": \"Pack To Order\"\n            }\n        ],\n        \"allow\": [\n            {\n                \"category\": \"*\"\n            }\n        ]\n    },\n    \"packToOrderPrices\": {\n        \"allow\": [\n            {\n                \"category\": \"Pack To Order\"\n            }\n        ]\n    },\n    \"storageLocation\": {\n        \"allow\": [\n            {\n                \"category\": \"Plant Material\"\n            },\n            {\n                \"category\": \"Flower\"\n            },\n            {\n                \"category\": \"Prepack\"\n            },\n            {\n                \"category\": \"Preroll\"\n            },\n            {\n                \"category\": \"Seed\"\n            },\n            {\n                \"category\": \"Live Plant\"\n            },\n            {\n                \"category\": \"Bulk Extract\"\n            },\n            {\n                \"category\": \"Extract\"\n            },\n            {\n                \"category\": \"Cartridge\"\n            },\n            {\n                \"category\": \"Edibles & Drink\"\n            },\n            {\n                \"category\": \"Tincture\"\n            },\n            {\n                \"category\": \"Topicals & Wellness\"\n            },\n            {\n                \"category\": \"Pack To Order\"\n            },\n            {\n                \"category\": \"Merchandise\"\n            }\n        ]\n    },\n    \"testDate\": {\n        \"allow\": [\n            {\n                \"category\": \"Plant Material\"\n            },\n            {\n                \"category\": \"Flower\"\n            },\n            {\n                \"category\": \"Prepack\"\n            },\n            {\n                \"category\": \"Preroll\"\n            },\n            {\n                \"category\": \"Pack To Order\"\n            }\n        ]\n    },\n    \"zone\": {\n        \"allow\": [\n            {\n                \"category\": \"Plant Material\",\n                \"industry\": {\n                    \"not\": \"cannabis\"\n                }\n            },\n            {\n                \"category\": \"Flower\",\n                \"industry\": {\n                    \"not\": \"cannabis\"\n                }\n            },\n            {\n                \"category\": \"Prepack\",\n                \"industry\": {\n                    \"not\": \"cannabis\"\n                }\n            },\n            {\n                \"category\": \"Preroll\",\n                \"industry\": {\n                    \"not\": \"cannabis\"\n                }\n            },\n            {\n                \"category\": \"Seed\",\n                \"industry\": {\n                    \"not\": \"cannabis\"\n                }\n            },\n            {\n                \"category\": \"Live Plant\",\n                \"industry\": {\n                    \"not\": \"cannabis\"\n                }\n            },\n            {\n                \"category\": \"Pack To Order\",\n                \"industry\": {\n                    \"not\": \"cannabis\"\n                }\n            }\n        ]\n    },\n    \"lot\": {\n        \"allow\": [\n            {\n                \"category\": \"Plant Material\",\n                \"industry\": {\n                    \"not\": \"cannabis\"\n                }\n            },\n            {\n                \"category\": \"Flower\",\n                \"industry\": {\n                    \"not\": \"cannabis\"\n                }\n            },\n            {\n                \"category\": \"Prepack\",\n                \"industry\": {\n                    \"not\": \"cannabis\"\n                }\n            },\n            {\n                \"category\": \"Preroll\",\n                \"industry\": {\n                    \"not\": \"cannabis\"\n                }\n            },\n            {\n                \"category\": \"Seed\",\n                \"industry\": {\n                    \"not\": \"cannabis\"\n                }\n            },\n            {\n                \"category\": \"Live Plant\",\n                \"industry\": {\n                    \"not\": \"cannabis\"\n                }\n            },\n            {\n                \"category\": \"Pack To Order\",\n                \"industry\": {\n                    \"not\": \"cannabis\"\n                }\n            }\n        ]\n    },\n    \"sack\": {\n        \"allow\": [\n            {\n                \"category\": \"Plant Material\",\n                \"industry\": {\n                    \"not\": \"cannabis\"\n                }\n            },\n            {\n                \"category\": \"Flower\",\n                \"industry\": {\n                    \"not\": \"cannabis\"\n                }\n            },\n            {\n                \"category\": \"Prepack\",\n                \"industry\": {\n                    \"not\": \"cannabis\"\n                }\n            },\n            {\n                \"category\": \"Preroll\",\n                \"industry\": {\n                    \"not\": \"cannabis\"\n                }\n            },\n            {\n                \"category\": \"Seed\",\n                \"industry\": {\n                    \"not\": \"cannabis\"\n                }\n            },\n            {\n                \"category\": \"Pack To Order\",\n                \"industry\": {\n                    \"not\": \"cannabis\"\n                }\n            }\n        ]\n    },\n    \"seeded\": {\n        \"allow\": [\n            {\n                \"category\": \"Plant Material\",\n                \"industry\": {\n                    \"not\": \"cannabis\"\n                }\n            },\n            {\n                \"category\": \"Flower\",\n                \"industry\": {\n                    \"not\": \"cannabis\"\n                }\n            },\n            {\n                \"category\": \"Prepack\",\n                \"industry\": {\n                    \"not\": \"cannabis\"\n                }\n            }\n        ]\n    },\n    \"harvestDate\": {\n        \"allow\": [\n            {\n                \"category\": \"Plant Material\"\n            },\n            {\n                \"category\": \"Flower\"\n            },\n            {\n                \"category\": \"Prepack\"\n            },\n            {\n                \"category\": \"Preroll\"\n            },\n            {\n                \"category\": \"Pack To Order\"\n            },\n            {\n                \"category\": \"Seed\"\n            }\n        ]\n    },\n    \"dryDate\": {\n        \"allow\": [\n            {\n                \"category\": \"Plant Material\",\n                \"industry\": {\n                    \"not\": \"cannabis\"\n                }\n            },\n            {\n                \"category\": \"Flower\",\n                \"industry\": {\n                    \"not\": \"cannabis\"\n                }\n            },\n            {\n                \"category\": \"Prepack\",\n                \"industry\": {\n                    \"not\": \"cannabis\"\n                }\n            },\n            {\n                \"category\": \"Preroll\",\n                \"industry\": {\n                    \"not\": \"cannabis\"\n                }\n            },\n            {\n                \"category\": \"Pack To Order\",\n                \"industry\": {\n                    \"not\": \"cannabis\"\n                }\n            }\n        ]\n    },\n    \"extractionDate\": {\n        \"allow\": [\n            {\n                \"category\": \"Bulk Extract\"\n            },\n            {\n                \"category\": \"Extract\"\n            },\n            {\n                \"category\": \"Cartridge\"\n            }\n        ]\n    },\n    \"bestByDate\": {\n        \"allow\": [\n            {\n                \"category\": \"Plant Material\"\n            },\n            {\n                \"category\": \"Flower\"\n            },\n            {\n                \"category\": \"Prepack\"\n            },\n            {\n                \"category\": \"Preroll\"\n            },\n            {\n                \"category\": \"Seed\"\n            },\n            {\n                \"category\": \"Live Plant\"\n            },\n            {\n                \"category\": \"Bulk Extract\"\n            },\n            {\n                \"category\": \"Extract\"\n            },\n            {\n                \"category\": \"Cartridge\"\n            },\n            {\n                \"category\": \"Edibles & Drink\"\n            },\n            {\n                \"category\": \"Tincture\"\n            },\n            {\n                \"category\": \"Topicals & Wellness\"\n            },\n            {\n                \"category\": \"Pack To Order\"\n            }\n        ]\n    },\n    \"productionDate\": {\n        \"allow\": [\n            {\n                \"category\": \"Edibles & Drink\"\n            },\n            {\n                \"category\": \"Tincture\"\n            },\n            {\n                \"category\": \"Topicals & Wellness\"\n            },\n            {\n                \"category\": \"Preroll\"\n            }\n        ]\n    },\n    \"predominateCanabinoidDetails\": {\n        \"allow\": [\n            {\n                \"category\": \"Plant Material\"\n            },\n            {\n                \"category\": \"Flower\"\n            },\n            {\n                \"category\": \"Prepack\"\n            },\n            {\n                \"category\": \"Preroll\"\n            },\n            {\n                \"category\": \"Seed\"\n            },\n            {\n                \"category\": \"Live Plant\"\n            },\n            {\n                \"category\": \"Bulk Extract\"\n            },\n            {\n                \"category\": \"Extract\"\n            },\n            {\n                \"category\": \"Cartridge\"\n            },\n            {\n                \"category\": \"Edibles & Drink\"\n            },\n            {\n                \"category\": \"Tincture\"\n            },\n            {\n                \"category\": \"Topicals & Wellness\"\n            },\n            {\n                \"category\": \"Pack To Order\"\n            }\n        ]\n    },\n    \"terpenes\": {\n        \"allow\": [\n            {\n                \"category\": \"Plant Material\"\n            },\n            {\n                \"category\": \"Flower\"\n            },\n            {\n                \"category\": \"Prepack\"\n            },\n            {\n                \"category\": \"Preroll\"\n            },\n            {\n                \"category\": \"Seed\"\n            },\n            {\n                \"category\": \"Live Plant\"\n            },\n            {\n                \"category\": \"Bulk Extract\"\n            },\n            {\n                \"category\": \"Extract\"\n            },\n            {\n                \"category\": \"Cartridge\"\n            },\n            {\n                \"category\": \"Edibles & Drink\"\n            },\n            {\n                \"category\": \"Tincture\"\n            },\n            {\n                \"category\": \"Topicals & Wellness\"\n            },\n            {\n                \"category\": \"Pack To Order\"\n            }\n        ]\n    },\n    \"cannabinoids\": {\n        \"allow\": [\n            {\n                \"category\": \"Plant Material\"\n            },\n            {\n                \"category\": \"Flower\"\n            },\n            {\n                \"category\": \"Prepack\"\n            },\n            {\n                \"category\": \"Preroll\"\n            },\n            {\n                \"category\": \"Seed\"\n            },\n            {\n                \"category\": \"Live Plant\"\n            },\n            {\n                \"category\": \"Bulk Extract\"\n            },\n            {\n                \"category\": \"Extract\"\n            },\n            {\n                \"category\": \"Cartridge\"\n            },\n            {\n                \"category\": \"Edibles & Drink\"\n            },\n            {\n                \"category\": \"Tincture\"\n            },\n            {\n                \"category\": \"Topicals & Wellness\"\n            },\n            {\n                \"category\": \"Pack To Order\"\n            }\n        ]\n    },\n    \"thcLimit\": {\n        \"allow\": [\n            {\n                \"category\": \"*\",\n                \"industry\": {\n                    \"not\": \"cannabis\"\n                }\n            }\n        ],\n        \"deny\": [\n            {\n                \"category\": \"Merchandise\"\n            }\n        ]\n    },\n    \"batchDocumentsUpload\": {\n        \"deny\": [\n            {\n                \"category\": \"Merchandise\"\n            }\n        ],\n        \"allow\": [\n            {\n                \"category\": \"*\"\n            }\n        ]\n    }\n}"}],"_postman_id":"8de8a32b-c2fc-4520-ad6e-f6a76f4f2096"}],"id":"2aae92ae-30aa-47b6-bcf9-614949ae51eb","description":"<p>Our application has a parent child relationship with inventory. There is a parent product with many child batches. The batches are connected to the parent through a product_id on the batch.</p>\n<p>A batch belongs to an operation. This is a licensed location where it is located.</p>\n<p>A batch has a listing_price that applies to all batches except for batches that have a product with a category of Pack To Order. Pack To Order batches use specific prices that corespond to weights, eg: pto_oneg_listing_price, pto_twog_listing_price, etc.</p>\n<ul>\n<li><p>listing_price_base_unit: listing price for an individual unit of a batch sold in cases</p>\n</li>\n<li><p>minimum_sales_price: note for sales reps on how low a batch may be sold for</p>\n</li>\n<li><p>minimum_sales_price_base_unit: same as above, but for an individual unit of a batch sold in cases.</p>\n</li>\n<li><p>disable_inventory_tracking: set the batch to an infinite quantity</p>\n</li>\n<li><p>true_hold: prevents a batch from being listed for sale</p>\n</li>\n<li><p>restricted: Only users with the permission to sell restricted inventory can sell this batch</p>\n</li>\n<li><p>hold: this is an ondeck item. It is waiting for other batches to sell out before being marked for sale. It may be taken off deck automatically. You may not mark a batch as hold if no other batches are available for sale</p>\n</li>\n<li><p>pre-order: this is an item that is not currently in inventory, but can be ordered in advance and fulfilled at a later date.</p>\n</li>\n<li><p>pull_sample_from_alternative_batch_id: Rarely needed, you can take a sample from a different batch if this is set</p>\n</li>\n</ul>\n<p>Batches have many terpenes and cannabinoids. On the batch relation itself you will see these fields predominate_canabinoid_min_or_only, predominate_canabinoid_max, and predominate_canabinoid_unit. These relate to the predominate cannabinoid that is defined at the product level. predominate_canabinoid_max can be added if their is a range, else only predominate_canabinoid_min_or_only is used.</p>\n<p>Pass the entire list of cannabinoids and terpenes on update and create. On update, if you do not include the key for cannabinoids and terpenes, any existing items will not be modified. If you do include the key, the contents will replace all existing cannabinoids or terpenes. For example: terpenes: [], will erase any terpenes on the batch.</p>\n<p>Some categories allow you to list as sellable in cases. Note that we track quantities in individual units, eg, 10 cases of 10 is stored as 100.</p>\n","_postman_id":"2aae92ae-30aa-47b6-bcf9-614949ae51eb","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}}},{"name":"Brands","item":[{"name":"Brands","id":"a0ffd9ff-cf5c-43ae-9e8d-bf73444bb46f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer  ","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/v1/brands","description":"<p><strong>Token Permissions</strong></p>\n<ul>\n<li>view:brands</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}},"urlObject":{"path":["v1","brands"],"host":["https://secure.bushel44.com/api/v1"],"query":[{"disabled":true,"description":{"content":"<p>Filter by ids</p>\n","type":"text/plain"},"key":"ids[]","value":"2"},{"disabled":true,"description":{"content":"<p>filter by created after query in UTC</p>\n","type":"text/plain"},"key":"created_at_from","value":"2025-04-20T22:04:50Z"},{"disabled":true,"description":{"content":"<p>filter by created before query in UTC</p>\n","type":"text/plain"},"key":"created_at_to","value":"2025-04-22T22:04:50Z"},{"disabled":true,"description":{"content":"<p>filter by updated after query in UTC</p>\n","type":"text/plain"},"key":"updated_at_from","value":"2025-04-20T22:04:50Z"},{"disabled":true,"description":{"content":"<p>filter by updated before query in UTC</p>\n","type":"text/plain"},"key":"updated_at_to","value":"2025-04-22T22:04:50Z"},{"disabled":true,"description":{"content":"<p>Number of records to return per page</p>\n","type":"text/plain"},"key":"per_page","value":"15"}],"variable":[]}},"response":[{"id":"3e85da1d-9a06-43ec-aba6-a644d54c7c01","name":"Brands","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer  ","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"https://secure.bushel44.com/api/v1/brands","host":["https://secure.bushel44.com/api/v1"],"path":["brands"],"query":[{"key":"ids[]","value":"2","description":"Filter by ids","type":"text","disabled":true},{"key":"created_at_from","value":"2025-04-20T22:04:50Z","description":"filter by created after query in UTC","type":"text","disabled":true},{"key":"created_at_to","value":"2025-04-22T22:04:50Z","description":"filter by created before query in UTC","type":"text","disabled":true},{"key":"updated_at_from","value":"2025-04-20T22:04:50Z","description":"filter by updated after query in UTC","type":"text","disabled":true},{"key":"updated_at_to","value":"2025-04-22T22:04:50Z","description":"filter by updated before query in UTC","type":"text","disabled":true},{"key":"per_page","value":"15","description":"Number of records to return per page","type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 08 May 2025 11:48:10 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Cache-Control","value":"no-cache, public, must-revalidate, proxy-revalidate"},{"key":"X-RateLimit-Limit","value":"5000"},{"key":"X-RateLimit-Remaining","value":"4996"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"brands\": [\n        {\n            \"id\": 2,\n            \"name\": \"Apex Extracts\",\n            \"summary\": \"A premium extraction facility focused on small-batch craft CBD and minor cannabinoid shatter, wax, cartridges, and other dabbable concentrates.\",\n            \"company_id\": 4,\n            \"created_at\": \"2020-03-26T18:55:42.000000Z\",\n            \"updated_at\": \"2021-08-30T23:09:47.000000Z\",\n            \"license\": null,\n            \"logo_link\": \"https://s3-us-west-2.amazonaws.com//public/companies/4/1585248942-Apex-logo.JPG\"\n        },\n        {\n            \"id\": 3,\n            \"name\": \"Sugar Tree Flower\",\n            \"summary\": \"High Potency Hemp Flowers & Prerolls\",\n            \"company_id\": 4,\n            \"created_at\": \"2020-03-26T18:56:33.000000Z\",\n            \"updated_at\": \"2020-03-26T18:56:33.000000Z\",\n            \"license\": null,\n            \"logo_link\": \"https://s3-us-west-2.amazonaws.com//public/companies/4/1585248993-sugartree.jpg\"\n        },\n        {\n            \"id\": 4,\n            \"name\": \"Hippy Trip Creations\",\n            \"summary\": \"Full product line of edibles, drinks, pet treats, tinctures and more.\",\n            \"company_id\": 4,\n            \"created_at\": \"2020-03-26T18:57:39.000000Z\",\n            \"updated_at\": \"2020-03-26T18:57:40.000000Z\",\n            \"license\": null,\n            \"logo_link\": \"https://s3-us-west-2.amazonaws.com//public/companies/4/1585249059-download.jpg\"\n        }\n    ],\n    \"links\": {\n        \"first\": \"https://demo.bushel44.com/api/v1/brands?page=1\",\n        \"last\": \"https://demo.bushel44.com/api/v1/brands?page=1\",\n        \"prev\": null,\n        \"next\": null\n    },\n    \"meta\": {\n        \"current_page\": 1,\n        \"from\": 1,\n        \"last_page\": 1,\n        \"links\": [\n            {\n                \"url\": null,\n                \"label\": \"&laquo; Previous\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.bushel44.com/api/v1/brands?page=1\",\n                \"label\": \"1\",\n                \"active\": true\n            },\n            {\n                \"url\": null,\n                \"label\": \"Next &raquo;\",\n                \"active\": false\n            }\n        ],\n        \"path\": \"https://demo.bushel44.com/api/v1/brands\",\n        \"per_page\": 15,\n        \"to\": 3,\n        \"total\": 3\n    }\n}"}],"_postman_id":"a0ffd9ff-cf5c-43ae-9e8d-bf73444bb46f"},{"name":"Brand","id":"9394cda2-4070-4624-be4f-b3e193ee1220","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer  ","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/v1/brands/2","description":"<p><strong>Token Permissions</strong></p>\n<ul>\n<li>view:brands</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}},"urlObject":{"path":["v1","brands","2"],"host":["https://secure.bushel44.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"0ad94fd8-bb80-4488-a2d4-59dfafac350c","name":"Brand","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer  ","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/brands/2"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 02:15:15 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Cache-Control","value":"no-cache, public, must-revalidate, proxy-revalidate"},{"key":"X-RateLimit-Limit","value":"5000"},{"key":"X-RateLimit-Remaining","value":"4998"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"brand\": {\n        \"id\": 4,\n        \"name\": \"Hippy Trip Creations\",\n        \"summary\": \"Full product line of edibles, drinks, pet treats, tinctures and more.\",\n        \"company_id\": 4,\n        \"created_at\": \"2020-03-26T18:57:39.000000Z\",\n        \"updated_at\": \"2020-03-26T18:57:40.000000Z\",\n        \"license\": null,\n        \"logo_link\": \"https://s3-us-west-2.amazonaws.com//public/companies/4/1585249059-download.jpg\"\n    }\n}"}],"_postman_id":"9394cda2-4070-4624-be4f-b3e193ee1220"}],"id":"fb39a546-1764-4c7f-9700-fc19a9b763ce","_postman_id":"fb39a546-1764-4c7f-9700-fc19a9b763ce","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}}},{"name":"Buyers","item":[{"name":"Buyers","id":"c0b4404a-09f7-49db-ab6f-8ff2f90c85a9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer  ","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/v1/buyers?updated_at_from=2021-04-20T22:04:50Z&per_page=2","description":"<p><strong>Required Filters</strong></p>\n<p><strong>updated_at_from</strong> is a required filter.</p>\n<p>The first time you call this endpoint you should call it from the date the company first joined, but subsequent calls should be restricted to only search for records updated since the last call if possible.</p>\n<p><strong>Token Permissions</strong></p>\n<ul>\n<li>view:buyers</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}},"urlObject":{"path":["v1","buyers"],"host":["https://secure.bushel44.com/api/v1"],"query":[{"disabled":true,"description":{"content":"<p>include contacts</p>\n","type":"text/plain"},"key":"with_contacts","value":"true"},{"disabled":true,"description":{"content":"<p>include locations</p>\n","type":"text/plain"},"key":"with_locations","value":"true"},{"disabled":true,"description":{"content":"<p>include notes</p>\n","type":"text/plain"},"key":"with_notes","value":"true"},{"disabled":true,"description":{"content":"<p>include contact logs</p>\n","type":"text/plain"},"key":"with_contact_logs","value":"true"},{"disabled":true,"description":{"content":"<p>include stage</p>\n","type":"text/plain"},"key":"with_stage","value":"false"},{"disabled":true,"description":{"content":"<p>include prcing tier</p>\n","type":"text/plain"},"key":"with_pricing_tier","value":"true"},{"disabled":true,"key":"with_tags","value":"true"},{"disabled":true,"description":{"content":"<p>include sales reps</p>\n","type":"text/plain"},"key":"with_sales_reps","value":"true"},{"disabled":true,"description":{"content":"<p>include the buyer's company (if buyer has an account)</p>\n","type":"text/plain"},"key":"with_buyer_company","value":"true"},{"disabled":true,"description":{"content":"<p>includes term</p>\n","type":"text/plain"},"key":"with_term","value":"true"},{"disabled":true,"description":{"content":"<p>Filter by ids</p>\n","type":"text/plain"},"key":"ids[]","value":"13"},{"disabled":true,"description":{"content":"<p>filter by disabled buyers. All returned if no key present</p>\n","type":"text/plain"},"key":"disabled","value":"false"},{"disabled":true,"description":{"content":"<p>filter by created after query in UTC</p>\n","type":"text/plain"},"key":"created_at_from","value":"2025-04-20T22:04:50Z"},{"disabled":true,"description":{"content":"<p>filter by created before query in UTC</p>\n","type":"text/plain"},"key":"created_at_to","value":"2025-04-22T22:04:50Z"},{"description":{"content":"<p>filter by updated after query in UTC **REQUIRED **</p>\n","type":"text/plain"},"key":"updated_at_from","value":"2021-04-20T22:04:50Z"},{"disabled":true,"description":{"content":"<p>filter by updated before query in UTC</p>\n","type":"text/plain"},"key":"updated_at_to","value":"2025-04-22T22:04:50Z"},{"description":{"content":"<p>Number of records to return per page</p>\n","type":"text/plain"},"key":"per_page","value":"2"}],"variable":[]}},"response":[],"_postman_id":"c0b4404a-09f7-49db-ab6f-8ff2f90c85a9"},{"name":"Buyer","id":"936353d4-033a-473e-b2e6-c5597d327f71","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer  ","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/v1/buyers/2","description":"<p><strong>Token Permissions</strong></p>\n<ul>\n<li>view:buyers</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}},"urlObject":{"path":["v1","buyers","2"],"host":["https://secure.bushel44.com/api/v1"],"query":[{"disabled":true,"description":{"content":"<p>filter to include contact logs</p>\n","type":"text/plain"},"key":"with_contact_logs","value":"false"}],"variable":[]}},"response":[],"_postman_id":"936353d4-033a-473e-b2e6-c5597d327f71"}],"id":"37362f26-2d4e-4692-9a05-9f2402cfe8f1","description":"<p>Buyers are a companies CRM relation of a purchaser. The buyer may or may not have an account. If the do, the buyer_company_id is set.</p>\n<ul>\n<li><p>owning_company_id: this is the seller's company id, the owner of the api token</p>\n</li>\n<li><p>buyer_company_id: this is the buyer's company id</p>\n</li>\n<li><p>vendor_disabled: this means that the buyer no longer wants to work with this company</p>\n</li>\n<li><p>disabled: the buyer has been disabled on the seller's side.</p>\n</li>\n</ul>\n<p>A buyer has multiple child relationships.</p>\n<ul>\n<li><p>contacts</p>\n</li>\n<li><p>contact logs</p>\n</li>\n<li><p>notes</p>\n</li>\n</ul>\n<p>Updating notes, and contacts will update the updated_at field on the buyer to allow you to query easily build an inventory sync.</p>\n<p>Contact logs do not update the updated_at field on the buyer. If you need to sync contact logs for some reason you should query them separately.</p>\n<p>A buyer also belongs to a group through a buyer_group_id. This allows you to group multiple different buyers under one organization.</p>\n","_postman_id":"37362f26-2d4e-4692-9a05-9f2402cfe8f1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}}},{"name":"Buyer Contact Logs","item":[{"name":"Buyer Contact Logs","id":"fb208a25-f580-4e12-a5ef-8aaa43284851","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer  ","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/v1/buyer-contact-logs?updated_at_from=2025-04-20T22:04:50Z&per_page=2&buyer_id=2","description":"<p><strong>Required Filters</strong></p>\n<p><strong>updated_at_from</strong> is a required filter.</p>\n<p>The first time you call this endpoint you should call it from the date the company first joined, but subsequent calls should be restricted to only search for records updated since the last call if possible.</p>\n<p><strong>Token Permissions</strong></p>\n<ul>\n<li>view:buyers</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}},"urlObject":{"path":["v1","buyer-contact-logs"],"host":["https://secure.bushel44.com/api/v1"],"query":[{"description":{"content":"<p>filter by updated after query in UTC **REQUIRED **</p>\n","type":"text/plain"},"key":"updated_at_from","value":"2025-04-20T22:04:50Z"},{"description":{"content":"<p>Number of records to return per page</p>\n","type":"text/plain"},"key":"per_page","value":"2"},{"description":{"content":"<p>Optionally only return contact logs that belong to a specific buyer</p>\n","type":"text/plain"},"key":"buyer_id","value":"2"}],"variable":[]}},"response":[],"_postman_id":"fb208a25-f580-4e12-a5ef-8aaa43284851"},{"name":"Buyer Contact Log","id":"0d735fa0-3b62-43b8-a2ed-2e654dbf3df3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer  ","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/v1/buyer-contact-log/{{buyer_contact_log_id}}","description":"<p><strong>Token Permissions</strong></p>\n<ul>\n<li>view:buyers</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}},"urlObject":{"path":["v1","buyer-contact-log","{{buyer_contact_log_id}}"],"host":["https://secure.bushel44.com/api/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"0d735fa0-3b62-43b8-a2ed-2e654dbf3df3"}],"id":"5c56bb46-d82f-4a01-9b2b-93938ff2762f","description":"<p>Contact logs do not update the updated_at field on the buyer. If you need to sync contact logs for some reason you should query them separately.</p>\n<p>By default contact logs will return all contact logs that belong to your account. You may scope down to a specific buyer buyer by including the buyer_id.</p>\n","_postman_id":"5c56bb46-d82f-4a01-9b2b-93938ff2762f","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}}},{"name":"Buyer Stages","item":[{"name":"Stages","id":"d9e299dc-b93a-4bbc-8ad1-982701b8fbdf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer  ","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/v1/buyer-stages","description":"<p><strong>Token Permissions</strong></p>\n<ul>\n<li>view:buyerstages</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}},"urlObject":{"path":["v1","buyer-stages"],"host":["https://secure.bushel44.com/api/v1"],"query":[{"disabled":true,"description":{"content":"<p>Number of records to return per page</p>\n","type":"text/plain"},"key":"per_page","value":"15"}],"variable":[]}},"response":[{"id":"74ca3bb2-3e29-46b4-b30c-4e0b2470f7b7","name":"Stages","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer  ","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"https://secure.bushel44.com/api/v1/buyer-stages","host":["https://secure.bushel44.com/api/v1"],"path":["buyer-stages"],"query":[{"key":"per_page","value":"15","description":"Number of records to return per page","type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 08 May 2025 11:49:17 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Cache-Control","value":"no-cache, public, must-revalidate, proxy-revalidate"},{"key":"X-RateLimit-Limit","value":"5000"},{"key":"X-RateLimit-Remaining","value":"4995"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"stages\": [\n        {\n            \"id\": 30,\n            \"sort_order\": 0,\n            \"name\": \"Sampled\",\n            \"color\": \"#F7DE0A\",\n            \"created_at\": \"2020-03-26T16:32:59.000000Z\",\n            \"updated_at\": \"2021-09-16T20:22:29.000000Z\"\n        },\n        {\n            \"id\": 29,\n            \"sort_order\": 1,\n            \"name\": \"Warm Prospect\",\n            \"color\": \"#0AF7EE\",\n            \"created_at\": \"2020-03-26T16:32:59.000000Z\",\n            \"updated_at\": \"2021-09-16T20:22:29.000000Z\"\n        },\n        {\n            \"id\": 31,\n            \"sort_order\": 2,\n            \"name\": \"First Order\",\n            \"color\": \"#3656F5\",\n            \"created_at\": \"2020-03-26T16:32:59.000000Z\",\n            \"updated_at\": \"2021-09-04T16:46:35.000000Z\"\n        },\n        {\n            \"id\": 32,\n            \"sort_order\": 3,\n            \"name\": \"Active - Large\",\n            \"color\": \"#5CFB57\",\n            \"created_at\": \"2020-03-26T16:32:59.000000Z\",\n            \"updated_at\": \"2021-09-04T16:46:35.000000Z\"\n        },\n        {\n            \"id\": 33,\n            \"sort_order\": 4,\n            \"name\": \"Active - Small\",\n            \"color\": \"#1CD02F\",\n            \"created_at\": \"2020-03-26T16:32:59.000000Z\",\n            \"updated_at\": \"2021-09-04T16:46:35.000000Z\"\n        },\n        {\n            \"id\": 35,\n            \"sort_order\": 6,\n            \"name\": \"Seasonal Buyer\",\n            \"color\": \"#1DC69D\",\n            \"created_at\": \"2020-03-26T16:32:59.000000Z\",\n            \"updated_at\": \"2021-05-19T18:10:14.000000Z\"\n        },\n        {\n            \"id\": 36,\n            \"sort_order\": 7,\n            \"name\": \"Disqualified\",\n            \"color\": \"#000000\",\n            \"created_at\": \"2020-03-26T16:32:59.000000Z\",\n            \"updated_at\": \"2021-05-19T18:10:14.000000Z\"\n        },\n        {\n            \"id\": 220,\n            \"sort_order\": 5,\n            \"name\": \"Consultation\",\n            \"color\": \"#CC1A1A\",\n            \"created_at\": \"2021-03-18T17:47:47.000000Z\",\n            \"updated_at\": \"2021-09-04T16:46:35.000000Z\"\n        }\n    ],\n    \"links\": {\n        \"first\": \"https://demo.bushel44.com/api/v1/buyer-stages?page=1\",\n        \"last\": \"https://demo.bushel44.com/api/v1/buyer-stages?page=1\",\n        \"prev\": null,\n        \"next\": null\n    },\n    \"meta\": {\n        \"current_page\": 1,\n        \"from\": 1,\n        \"last_page\": 1,\n        \"links\": [\n            {\n                \"url\": null,\n                \"label\": \"&laquo; Previous\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.bushel44.com/api/v1/buyer-stages?page=1\",\n                \"label\": \"1\",\n                \"active\": true\n            },\n            {\n                \"url\": null,\n                \"label\": \"Next &raquo;\",\n                \"active\": false\n            }\n        ],\n        \"path\": \"https://demo.bushel44.com/api/v1/buyer-stages\",\n        \"per_page\": 15,\n        \"to\": 8,\n        \"total\": 8\n    }\n}"}],"_postman_id":"d9e299dc-b93a-4bbc-8ad1-982701b8fbdf"},{"name":"Stage","id":"f7c40cd1-c50e-4038-9c02-a88239169624","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer  ","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/v1/buyer-stages/","description":"<p><strong>Token Permissions</strong></p>\n<ul>\n<li>view:buyerstages</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}},"urlObject":{"path":["v1","buyer-stages",""],"host":["https://secure.bushel44.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"8356ae74-aa38-46ba-8f89-c56b65e15e75","name":"Stage","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer  ","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/buyer-stages/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 02:15:37 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Cache-Control","value":"no-cache, public, must-revalidate, proxy-revalidate"},{"key":"X-RateLimit-Limit","value":"5000"},{"key":"X-RateLimit-Remaining","value":"4996"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"stage\": {\n        \"id\": 30,\n        \"sort_order\": 0,\n        \"name\": \"Sampled\",\n        \"color\": \"#F7DE0A\",\n        \"created_at\": \"2020-03-26T16:32:59.000000Z\",\n        \"updated_at\": \"2021-09-16T20:22:29.000000Z\"\n    }\n}"}],"_postman_id":"f7c40cd1-c50e-4038-9c02-a88239169624"}],"id":"a72cf525-83bd-4543-9780-dbd4c9e35cc5","_postman_id":"a72cf525-83bd-4543-9780-dbd4c9e35cc5","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}}},{"name":"Cannabinoids","item":[{"name":"Cannabinoids","id":"ad0249f9-150d-4f7f-831e-c0e36511eef7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/v1/cannabinoids","description":"<p><strong>Token Permissions</strong></p>\n<ul>\n<li>view:products</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}},"urlObject":{"path":["v1","cannabinoids"],"host":["https://secure.bushel44.com/api/v1"],"query":[{"disabled":true,"description":{"content":"<p>Number of records to return per page</p>\n","type":"text/plain"},"key":"per_page","value":"15"}],"variable":[]}},"response":[{"id":"3ced42d5-d817-4d81-89b9-c7dd3bca8fb5","name":"Cannabinoids","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"https://secure.bushel44.com/api/v1/cannabinoids","host":["https://secure.bushel44.com/api/v1"],"path":["cannabinoids"],"query":[{"key":"per_page","value":"15","description":"Number of records to return per page","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 01:47:14 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Cache-Control","value":"no-cache, public, must-revalidate, proxy-revalidate"},{"key":"X-RateLimit-Limit","value":"5000"},{"key":"X-RateLimit-Remaining","value":"4995"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"cannabinoid\": [\n        {\n            \"id\": 2,\n            \"name\": \"Cannabidiol\"\n        },\n        {\n            \"id\": 1,\n            \"name\": \"Cannabichromene\"\n        },\n        {\n            \"id\": 10,\n            \"name\": \"Tetrahydrocannabinol\"\n        },\n        {\n            \"id\": 9,\n            \"name\": \"Cannabichromevarin\"\n        },\n        {\n            \"id\": 8,\n            \"name\": \"cannabacitran\"\n        },\n        {\n            \"id\": 7,\n            \"name\": \"cannabinol\"\n        },\n        {\n            \"id\": 6,\n            \"name\": \"Cannabicyclol\"\n        },\n        {\n            \"id\": 5,\n            \"name\": \"Cannabigerol\"\n        },\n        {\n            \"id\": 4,\n            \"name\": \"Cannabielsoin\"\n        },\n        {\n            \"id\": 3,\n            \"name\": \"Cannabidivarin\"\n        },\n        {\n            \"id\": 23,\n            \"name\": \"Cannabichromevarinic acid\"\n        },\n        {\n            \"id\": 22,\n            \"name\": \"Cannabidivarinic acid\"\n        },\n        {\n            \"id\": 21,\n            \"name\": \"Tetrahydrocanabivarinic acid\"\n        },\n        {\n            \"id\": 14,\n            \"name\": \"Δ9-Tetrahydrocannabinol\"\n        },\n        {\n            \"id\": 20,\n            \"name\": \"Cannabigerovarinic acid\"\n        }\n    ],\n    \"links\": {\n        \"first\": \"https://demo.bushel44.com/api/v1/cannabinoids?page=1\",\n        \"last\": \"https://demo.bushel44.com/api/v1/cannabinoids?page=2\",\n        \"prev\": null,\n        \"next\": \"https://demo.bushel44.com/api/v1/cannabinoids?page=2\"\n    },\n    \"meta\": {\n        \"current_page\": 1,\n        \"from\": 1,\n        \"last_page\": 2,\n        \"links\": [\n            {\n                \"url\": null,\n                \"label\": \"&laquo; Previous\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.bushel44.com/api/v1/cannabinoids?page=1\",\n                \"label\": \"1\",\n                \"active\": true\n            },\n            {\n                \"url\": \"https://demo.bushel44.com/api/v1/cannabinoids?page=2\",\n                \"label\": \"2\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.bushel44.com/api/v1/cannabinoids?page=2\",\n                \"label\": \"Next &raquo;\",\n                \"active\": false\n            }\n        ],\n        \"path\": \"https://demo.bushel44.com/api/v1/cannabinoids\",\n        \"per_page\": 15,\n        \"to\": 15,\n        \"total\": 26\n    }\n}"}],"_postman_id":"ad0249f9-150d-4f7f-831e-c0e36511eef7"},{"name":"Cannabinoid","id":"5cd469ea-b1a2-48dc-b3e5-66a7606fd63f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/v1/cannabinoids/{{cannabinoid_id}}","description":"<p><strong>Token Permissions</strong></p>\n<ul>\n<li>view:products</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}},"urlObject":{"path":["v1","cannabinoids","{{cannabinoid_id}}"],"host":["https://secure.bushel44.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"92bd54ab-0757-436a-9ac7-aebefeb386ba","name":"Cannabinoid","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/cannabinoids/{{cannabinoid_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 01:47:21 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Cache-Control","value":"no-cache, public, must-revalidate, proxy-revalidate"},{"key":"X-RateLimit-Limit","value":"5000"},{"key":"X-RateLimit-Remaining","value":"4994"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 2,\n        \"name\": \"Cannabidiol\"\n    }\n}"}],"_postman_id":"5cd469ea-b1a2-48dc-b3e5-66a7606fd63f"}],"id":"a18a68e9-0c8f-4582-8992-a12e118f9e17","_postman_id":"a18a68e9-0c8f-4582-8992-a12e118f9e17","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}}},{"name":"Company","item":[{"name":"Company","id":"1566642c-8e4e-469c-a8b6-ad263cad79ec","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer  ","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/v1/company","description":"<p><strong>Token Permissions</strong></p>\n<ul>\n<li>view:company</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}},"urlObject":{"path":["v1","company"],"host":["https://secure.bushel44.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"4318dd67-8255-4be3-b3ad-c0b89007f9c8","name":"Company","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer  ","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/company"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 08 May 2025 11:51:05 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Cache-Control","value":"no-cache, public, must-revalidate, proxy-revalidate"},{"key":"X-RateLimit-Limit","value":"5000"},{"key":"X-RateLimit-Remaining","value":"4999"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"company\": {\n        \"name\": \"High Hopes Industries\",\n        \"created_at\": \"2020-03-26T16:32:58.000000Z\",\n        \"updated_at\": \"2022-02-04T19:32:55.000000Z\"\n    }\n}"}],"_postman_id":"1566642c-8e4e-469c-a8b6-ad263cad79ec"}],"id":"8b7fe733-265d-40be-9b5b-daa3b57c0afc","_postman_id":"8b7fe733-265d-40be-9b5b-daa3b57c0afc","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}}},{"name":"Distillate Extract Types","item":[{"name":"Distillate Extract Types","id":"50de8de5-3bfc-43a0-a16f-639550b137fe","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/v1/distillate-extract-types?per_page=15","description":"<p><strong>Token Permissions</strong></p>\n<ul>\n<li>view:products</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}},"urlObject":{"path":["v1","distillate-extract-types"],"host":["https://secure.bushel44.com/api/v1"],"query":[{"description":{"content":"<p>Number of records to return per page</p>\n","type":"text/plain"},"key":"per_page","value":"15"}],"variable":[]}},"response":[{"id":"8898fa1a-6ed7-4c30-b52a-fce99d420537","name":"Distillate Extract Types","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"https://secure.bushel44.com/api/v1/distillate-extract-types?per_page=15","host":["https://secure.bushel44.com/api/v1"],"path":["distillate-extract-types"],"query":[{"key":"per_page","value":"15","description":"Number of records to return per page"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 01:47:49 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Cache-Control","value":"no-cache, public, must-revalidate, proxy-revalidate"},{"key":"X-RateLimit-Limit","value":"5000"},{"key":"X-RateLimit-Remaining","value":"4999"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 1,\n            \"name\": \"THC Free\"\n        },\n        {\n            \"id\": 2,\n            \"name\": \"Broad Spectrum\"\n        },\n        {\n            \"id\": 3,\n            \"name\": \"Semi-Full Spectrum\"\n        },\n        {\n            \"id\": 4,\n            \"name\": \"Full Spectrum\"\n        },\n        {\n            \"id\": 6,\n            \"name\": \"Compliant\"\n        }\n    ],\n    \"links\": {\n        \"first\": \"https://demo.bushel44.com/api/v1/distillate-extract-types?page=1\",\n        \"last\": \"https://demo.bushel44.com/api/v1/distillate-extract-types?page=1\",\n        \"prev\": null,\n        \"next\": null\n    },\n    \"meta\": {\n        \"current_page\": 1,\n        \"from\": 1,\n        \"last_page\": 1,\n        \"links\": [\n            {\n                \"url\": null,\n                \"label\": \"&laquo; Previous\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.bushel44.com/api/v1/distillate-extract-types?page=1\",\n                \"label\": \"1\",\n                \"active\": true\n            },\n            {\n                \"url\": null,\n                \"label\": \"Next &raquo;\",\n                \"active\": false\n            }\n        ],\n        \"path\": \"https://demo.bushel44.com/api/v1/distillate-extract-types\",\n        \"per_page\": 15,\n        \"to\": 5,\n        \"total\": 5\n    },\n    \"status\": \"success\"\n}"}],"_postman_id":"50de8de5-3bfc-43a0-a16f-639550b137fe"},{"name":"Distillate Extract Type","id":"2a13bcec-d10f-480c-9d4c-b0670c60e8c8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/v1/distillate-extract-types/{{distillate_extract_type_id}}","description":"<p><strong>Token Permissions</strong></p>\n<ul>\n<li>view:products</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}},"urlObject":{"path":["v1","distillate-extract-types","{{distillate_extract_type_id}}"],"host":["https://secure.bushel44.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"ddf1b523-04ad-4589-a445-5808f55ec719","name":"Distillate Extract Type","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/distillate-extract-types/{{distillate_extract_type_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 01:47:56 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Cache-Control","value":"no-cache, public, must-revalidate, proxy-revalidate"},{"key":"X-RateLimit-Limit","value":"5000"},{"key":"X-RateLimit-Remaining","value":"4998"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 2,\n        \"name\": \"Broad Spectrum\"\n    }\n}"}],"_postman_id":"2a13bcec-d10f-480c-9d4c-b0670c60e8c8"}],"id":"9587ed0a-e1d6-4c00-98ca-0d0438dee4c9","_postman_id":"9587ed0a-e1d6-4c00-98ca-0d0438dee4c9","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}}},{"name":"Drying Methods","item":[{"name":"Drying Methods","id":"52bac7d6-9707-4b37-8cf8-7b9cb5b25b7b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/v1/drying-methods?per_page=15","description":"<p><strong>Token Permissions</strong></p>\n<ul>\n<li>view:products</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}},"urlObject":{"path":["v1","drying-methods"],"host":["https://secure.bushel44.com/api/v1"],"query":[{"description":{"content":"<p>Number of records to return per page</p>\n","type":"text/plain"},"key":"per_page","value":"15"}],"variable":[]}},"response":[{"id":"06f790ad-d930-4d58-a8ba-33e6df27ceea","name":"Drying Methods","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"https://secure.bushel44.com/api/v1/drying-methods?per_page=15","host":["https://secure.bushel44.com/api/v1"],"path":["drying-methods"],"query":[{"key":"per_page","value":"15","description":"Number of records to return per page"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 01:48:52 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Cache-Control","value":"no-cache, public, must-revalidate, proxy-revalidate"},{"key":"X-RateLimit-Limit","value":"5000"},{"key":"X-RateLimit-Remaining","value":"4998"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 1,\n            \"name\": \"Hung\"\n        },\n        {\n            \"id\": 2,\n            \"name\": \"Field Dried\"\n        },\n        {\n            \"id\": 3,\n            \"name\": \"Hop Drier\"\n        },\n        {\n            \"id\": 4,\n            \"name\": \"Humidity Controlled Room\"\n        },\n        {\n            \"id\": 5,\n            \"name\": \"Temp Controlled Room\"\n        },\n        {\n            \"id\": 6,\n            \"name\": \"Humidity & Temp Controlled Room\"\n        }\n    ],\n    \"links\": {\n        \"first\": \"https://demo.bushel44.com/api/v1/drying-methods?page=1\",\n        \"last\": \"https://demo.bushel44.com/api/v1/drying-methods?page=1\",\n        \"prev\": null,\n        \"next\": null\n    },\n    \"meta\": {\n        \"current_page\": 1,\n        \"from\": 1,\n        \"last_page\": 1,\n        \"links\": [\n            {\n                \"url\": null,\n                \"label\": \"&laquo; Previous\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.bushel44.com/api/v1/drying-methods?page=1\",\n                \"label\": \"1\",\n                \"active\": true\n            },\n            {\n                \"url\": null,\n                \"label\": \"Next &raquo;\",\n                \"active\": false\n            }\n        ],\n        \"path\": \"https://demo.bushel44.com/api/v1/drying-methods\",\n        \"per_page\": 15,\n        \"to\": 6,\n        \"total\": 6\n    },\n    \"status\": \"success\"\n}"}],"_postman_id":"52bac7d6-9707-4b37-8cf8-7b9cb5b25b7b"},{"name":"Drying Method","id":"2670a259-9ee9-4c95-a3b8-baab1cb1580d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/v1/drying-methods/{{drying_method_id}}","description":"<p><strong>Token Permissions</strong></p>\n<ul>\n<li>view:products</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}},"urlObject":{"path":["v1","drying-methods","{{drying_method_id}}"],"host":["https://secure.bushel44.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"83690b26-4458-49fb-bef5-a7f9aee2b505","name":"Drying Method","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/drying-methods/{{drying_method_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 01:49:00 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Cache-Control","value":"no-cache, public, must-revalidate, proxy-revalidate"},{"key":"X-RateLimit-Limit","value":"5000"},{"key":"X-RateLimit-Remaining","value":"4997"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 2,\n        \"name\": \"Field Dried\"\n    }\n}"}],"_postman_id":"2670a259-9ee9-4c95-a3b8-baab1cb1580d"}],"id":"8a6739a5-c5f4-4b0c-8a71-77db66bf2b92","_postman_id":"8a6739a5-c5f4-4b0c-8a71-77db66bf2b92","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}}},{"name":"Extraction Methods","item":[{"name":"Extraction Methods","id":"a41f5a38-c20f-419f-a2ae-a8462fde797a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/v1/extraction-methods?per_page=15","description":"<p><strong>Token Permissions</strong></p>\n<ul>\n<li>view:products</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}},"urlObject":{"path":["v1","extraction-methods"],"host":["https://secure.bushel44.com/api/v1"],"query":[{"description":{"content":"<p>Number of records to return per page</p>\n","type":"text/plain"},"key":"per_page","value":"15"}],"variable":[]}},"response":[{"id":"51e76c7f-9c0d-43e2-9e1a-b58e3ab340c4","name":"Extraction Methods","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"https://secure.bushel44.com/api/v1/extraction-methods?per_page=15","host":["https://secure.bushel44.com/api/v1"],"path":["extraction-methods"],"query":[{"key":"per_page","value":"15","description":"Number of records to return per page"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 01:48:14 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Cache-Control","value":"no-cache, public, must-revalidate, proxy-revalidate"},{"key":"X-RateLimit-Limit","value":"5000"},{"key":"X-RateLimit-Remaining","value":"4996"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 1,\n            \"name\": \"Alcohol\"\n        },\n        {\n            \"id\": 2,\n            \"name\": \"Butane/Alcohol\"\n        },\n        {\n            \"id\": 3,\n            \"name\": \"Butane/Propane\"\n        },\n        {\n            \"id\": 4,\n            \"name\": \"CO2\"\n        },\n        {\n            \"id\": 5,\n            \"name\": \"Dry Sift\"\n        },\n        {\n            \"id\": 6,\n            \"name\": \"Hash\"\n        },\n        {\n            \"id\": 7,\n            \"name\": \"Hydrocarbon\"\n        },\n        {\n            \"id\": 8,\n            \"name\": \"Solventless\"\n        },\n        {\n            \"id\": 9,\n            \"name\": \"Distillate\"\n        },\n        {\n            \"id\": 10,\n            \"name\": \"Ethanol\"\n        },\n        {\n            \"id\": 11,\n            \"name\": \"C02/Ethanol\"\n        },\n        {\n            \"id\": 12,\n            \"name\": \"Heptane\"\n        },\n        {\n            \"id\": 13,\n            \"name\": \"Chromatography\"\n        }\n    ],\n    \"links\": {\n        \"first\": \"https://demo.bushel44.com/api/v1/extraction-methods?page=1\",\n        \"last\": \"https://demo.bushel44.com/api/v1/extraction-methods?page=1\",\n        \"prev\": null,\n        \"next\": null\n    },\n    \"meta\": {\n        \"current_page\": 1,\n        \"from\": 1,\n        \"last_page\": 1,\n        \"links\": [\n            {\n                \"url\": null,\n                \"label\": \"&laquo; Previous\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.bushel44.com/api/v1/extraction-methods?page=1\",\n                \"label\": \"1\",\n                \"active\": true\n            },\n            {\n                \"url\": null,\n                \"label\": \"Next &raquo;\",\n                \"active\": false\n            }\n        ],\n        \"path\": \"https://demo.bushel44.com/api/v1/extraction-methods\",\n        \"per_page\": 15,\n        \"to\": 13,\n        \"total\": 13\n    },\n    \"status\": \"success\"\n}"}],"_postman_id":"a41f5a38-c20f-419f-a2ae-a8462fde797a"},{"name":"Extraction Method","id":"d917ee39-6abb-4d0b-b49f-a3fff1b431dd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/v1/extraction-methods/{{extraction_method_id}}","description":"<p><strong>Token Permissions</strong></p>\n<ul>\n<li>view:products</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}},"urlObject":{"path":["v1","extraction-methods","{{extraction_method_id}}"],"host":["https://secure.bushel44.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"ae69846a-c823-467a-9297-1fe5e32bfc74","name":"Extraction Method","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/extraction-methods/{{extraction_method_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 01:48:08 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Cache-Control","value":"no-cache, public, must-revalidate, proxy-revalidate"},{"key":"X-RateLimit-Limit","value":"5000"},{"key":"X-RateLimit-Remaining","value":"4997"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 2,\n        \"name\": \"Butane/Alcohol\"\n    }\n}"}],"_postman_id":"d917ee39-6abb-4d0b-b49f-a3fff1b431dd"}],"id":"e734192e-7c58-4e4c-be67-f97b14462788","_postman_id":"e734192e-7c58-4e4c-be67-f97b14462788","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}}},{"name":"Container Types","item":[{"name":"Container Types","id":"287bd78a-8291-43f4-aac3-20716795afdc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/v1/container-types","description":"<p><strong>Token Permissions</strong></p>\n<ul>\n<li>view:products</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}},"urlObject":{"path":["v1","container-types"],"host":["https://secure.bushel44.com/api/v1"],"query":[{"disabled":true,"description":{"content":"<p>Number of records to return per page</p>\n","type":"text/plain"},"key":"per_page","value":"15"}],"variable":[]}},"response":[{"id":"f28692c9-1925-4402-b5ef-bb9a39da7415","name":"Container Types","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"https://secure.bushel44.com/api/v1/container-types","host":["https://secure.bushel44.com/api/v1"],"path":["container-types"],"query":[{"key":"per_page","value":"15","description":"Number of records to return per page","type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 02:00:50 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Cache-Control","value":"no-cache, public, must-revalidate, proxy-revalidate"},{"key":"X-RateLimit-Limit","value":"5000"},{"key":"X-RateLimit-Remaining","value":"4995"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 24,\n            \"name\": \"30 Gallon Drum\",\n            \"company_id\": null,\n            \"product_category_id\": 6\n        },\n        {\n            \"id\": 17,\n            \"name\": \"Bag\",\n            \"company_id\": null,\n            \"product_category_id\": 4\n        },\n        {\n            \"id\": 18,\n            \"name\": \"Single\",\n            \"company_id\": null,\n            \"product_category_id\": 5\n        },\n        {\n            \"id\": 19,\n            \"name\": \"Tray\",\n            \"company_id\": null,\n            \"product_category_id\": 5\n        },\n        {\n            \"id\": 20,\n            \"name\": \"Mason Jar\",\n            \"company_id\": null,\n            \"product_category_id\": 6\n        },\n        {\n            \"id\": 21,\n            \"name\": \"5 Gallon Drum\",\n            \"company_id\": null,\n            \"product_category_id\": 6\n        },\n        {\n            \"id\": 22,\n            \"name\": \"10 Gallon Drum\",\n            \"company_id\": null,\n            \"product_category_id\": 6\n        },\n        {\n            \"id\": 23,\n            \"name\": \"15 Gallon Drum\",\n            \"company_id\": null,\n            \"product_category_id\": 6\n        },\n        {\n            \"id\": 28,\n            \"name\": \"Polystyrene Container\",\n            \"company_id\": null,\n            \"product_category_id\": 7\n        },\n        {\n            \"id\": 31,\n            \"name\": \"Coin Envelope\",\n            \"company_id\": null,\n            \"product_category_id\": 7\n        },\n        {\n            \"id\": 30,\n            \"name\": \"Parchment Paper\",\n            \"company_id\": null,\n            \"product_category_id\": 7\n        },\n        {\n            \"id\": 29,\n            \"name\": \"Glass Container\",\n            \"company_id\": null,\n            \"product_category_id\": 7\n        },\n        {\n            \"id\": 26,\n            \"name\": \"Tote\",\n            \"company_id\": null,\n            \"product_category_id\": 6\n        },\n        {\n            \"id\": 25,\n            \"name\": \"55 Gallon Drum\",\n            \"company_id\": null,\n            \"product_category_id\": 6\n        },\n        {\n            \"id\": 2,\n            \"name\": \"Turkey Bags\",\n            \"company_id\": null,\n            \"product_category_id\": 1\n        }\n    ],\n    \"links\": {\n        \"first\": \"https://demo.bushel44.com/api/v1/container-types?page=1\",\n        \"last\": \"https://demo.bushel44.com/api/v1/container-types?page=3\",\n        \"prev\": null,\n        \"next\": \"https://demo.bushel44.com/api/v1/container-types?page=2\"\n    },\n    \"meta\": {\n        \"current_page\": 1,\n        \"from\": 1,\n        \"last_page\": 3,\n        \"links\": [\n            {\n                \"url\": null,\n                \"label\": \"&laquo; Previous\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.bushel44.com/api/v1/container-types?page=1\",\n                \"label\": \"1\",\n                \"active\": true\n            },\n            {\n                \"url\": \"https://demo.bushel44.com/api/v1/container-types?page=2\",\n                \"label\": \"2\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.bushel44.com/api/v1/container-types?page=3\",\n                \"label\": \"3\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.bushel44.com/api/v1/container-types?page=2\",\n                \"label\": \"Next &raquo;\",\n                \"active\": false\n            }\n        ],\n        \"path\": \"https://demo.bushel44.com/api/v1/container-types\",\n        \"per_page\": 15,\n        \"to\": 15,\n        \"total\": 33\n    },\n    \"status\": \"success\"\n}"}],"_postman_id":"287bd78a-8291-43f4-aac3-20716795afdc"},{"name":"Container Type","id":"1ac369e7-173e-42c2-8a65-77666091356f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/v1/container-types/{{container_type_id}}","description":"<p><strong>Token Permissions</strong></p>\n<ul>\n<li>view:products</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}},"urlObject":{"path":["v1","container-types","{{container_type_id}}"],"host":["https://secure.bushel44.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"339d23fc-cc0a-4b45-a256-e00aee646817","name":"Container Type","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/container-types/{{container_type_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 02:01:04 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Cache-Control","value":"no-cache, public, must-revalidate, proxy-revalidate"},{"key":"X-RateLimit-Limit","value":"5000"},{"key":"X-RateLimit-Remaining","value":"4999"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 24,\n        \"name\": \"30 Gallon Drum\",\n        \"company_id\": null,\n        \"product_category_id\": 6\n    }\n}"}],"_postman_id":"1ac369e7-173e-42c2-8a65-77666091356f"},{"name":"Container Type","id":"4668300f-918c-4bf2-abe2-7e3ca92d2c1d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"name","value":"my container type name","description":"<p>optional, not nullable | </p>\n","type":"text","uuid":"74959067-3277-4cef-b960-ce3a565216ae"}]},"url":"https://secure.bushel44.com/api/v1/v1/container-types/{{container_type_id}}","description":"<p><strong>Token Permissions</strong></p>\n<ul>\n<li>update:products</li>\n</ul>\n<p>Note: Changing the category a storage type belongs to is not permitted.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}},"urlObject":{"path":["v1","container-types","{{container_type_id}}"],"host":["https://secure.bushel44.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"c7237cec-073d-4652-8b75-ade5712a10c5","name":"Container Type","originalRequest":{"method":"PATCH","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"name","value":"my container type name","description":"optional, not nullable | <string>","type":"text","uuid":"74959067-3277-4cef-b960-ce3a565216ae"}]},"url":"https://secure.bushel44.com/api/v1/container-types/{{container_type_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 02:01:46 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Cache-Control","value":"no-cache, public, must-revalidate, proxy-revalidate"},{"key":"X-RateLimit-Limit","value":"5000"},{"key":"X-RateLimit-Remaining","value":"4997"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 34,\n        \"name\": \"my container type name\",\n        \"company_id\": 4,\n        \"product_category_id\": 3\n    }\n}"}],"_postman_id":"4668300f-918c-4bf2-abe2-7e3ca92d2c1d"},{"name":"Container Type","id":"78176533-9013-41e2-80d0-f39f7a1940d9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/v1/container-types/{{container_type_id}}","description":"<p><strong>Token Permissions</strong></p>\n<ul>\n<li>update:products</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}},"urlObject":{"path":["v1","container-types","{{container_type_id}}"],"host":["https://secure.bushel44.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"624d0647-b3ed-4dba-a3dd-3d618a590c24","name":"Container Type","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/container-types/{{container_type_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 02:02:04 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Cache-Control","value":"no-cache, public, must-revalidate, proxy-revalidate"},{"key":"X-RateLimit-Limit","value":"5000"},{"key":"X-RateLimit-Remaining","value":"4999"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Record deleted successfully\"\n}"}],"_postman_id":"78176533-9013-41e2-80d0-f39f7a1940d9"},{"name":"Container Type","id":"c94ef6a6-1f8c-4af7-9ed6-e8e7d980e0b5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"name","value":"my container type name","description":"<p>required | </p>\n","type":"text","uuid":"b7c06049-1d4c-4d0a-a052-7201a1296afb"},{"key":"product_category_id","value":"3","description":"<p>required | </p>\n","type":"text","uuid":"170e4bcb-9afd-4e31-bc1b-60a32f6635be"}]},"url":"https://secure.bushel44.com/api/v1/v1/container-types","description":"<p><strong>Token Permissions</strong></p>\n<ul>\n<li>update:products</li>\n</ul>\n<p>A product category id is required. Please see the Product Categories endpoint.</p>\n<p>Container Types are also not shown for every product category.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}},"urlObject":{"path":["v1","container-types"],"host":["https://secure.bushel44.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"ef94fbea-7644-4d88-9e26-ea8bf7cfd412","name":"Container Type","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"name","value":"my container type name","description":"required | <string>","type":"text","uuid":"b7c06049-1d4c-4d0a-a052-7201a1296afb"},{"key":"product_category_id","value":"3","description":"required | <integer>","type":"text","uuid":"170e4bcb-9afd-4e31-bc1b-60a32f6635be"}]},"url":"https://secure.bushel44.com/api/v1/container-types"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 02:01:30 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Cache-Control","value":"no-cache, public, must-revalidate, proxy-revalidate"},{"key":"X-RateLimit-Limit","value":"5000"},{"key":"X-RateLimit-Remaining","value":"4998"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 34,\n        \"name\": \"my container type name\",\n        \"company_id\": 4,\n        \"product_category_id\": 3\n    }\n}"}],"_postman_id":"c94ef6a6-1f8c-4af7-9ed6-e8e7d980e0b5"}],"id":"d4de750d-b09c-4f13-a4c7-369c3995845d","description":"<p>Container Types are not available for every category of product. Please see the product field rules endpoint.</p>\n","_postman_id":"d4de750d-b09c-4f13-a4c7-369c3995845d","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}}},{"name":"Crude Extract Types","item":[{"name":"Crude Extract Types","id":"b492775c-6626-4e5f-a1bb-455c30c59890","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/v1/crude-extract-types","description":"<p><strong>Token Permissions</strong></p>\n<ul>\n<li>view:products</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}},"urlObject":{"path":["v1","crude-extract-types"],"host":["https://secure.bushel44.com/api/v1"],"query":[{"disabled":true,"description":{"content":"<p>Number of records to return per page</p>\n","type":"text/plain"},"key":"per_page","value":"15"}],"variable":[]}},"response":[{"id":"97f5cf03-a7d1-47b1-9783-3a427c8f105c","name":"Crude Extract Types","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"https://secure.bushel44.com/api/v1/crude-extract-types","host":["https://secure.bushel44.com/api/v1"],"path":["crude-extract-types"],"query":[{"key":"per_page","value":"15","description":"Number of records to return per page","type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 01:52:14 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Cache-Control","value":"no-cache, public, must-revalidate, proxy-revalidate"},{"key":"X-RateLimit-Limit","value":"5000"},{"key":"X-RateLimit-Remaining","value":"4999"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 1,\n            \"name\": \"Winterized\"\n        },\n        {\n            \"id\": 2,\n            \"name\": \"Decarbed\"\n        },\n        {\n            \"id\": 3,\n            \"name\": \"Dewaxed\"\n        }\n    ],\n    \"links\": {\n        \"first\": \"https://demo.bushel44.com/api/v1/crude-extract-types?page=1\",\n        \"last\": \"https://demo.bushel44.com/api/v1/crude-extract-types?page=1\",\n        \"prev\": null,\n        \"next\": null\n    },\n    \"meta\": {\n        \"current_page\": 1,\n        \"from\": 1,\n        \"last_page\": 1,\n        \"links\": [\n            {\n                \"url\": null,\n                \"label\": \"&laquo; Previous\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.bushel44.com/api/v1/crude-extract-types?page=1\",\n                \"label\": \"1\",\n                \"active\": true\n            },\n            {\n                \"url\": null,\n                \"label\": \"Next &raquo;\",\n                \"active\": false\n            }\n        ],\n        \"path\": \"https://demo.bushel44.com/api/v1/crude-extract-types\",\n        \"per_page\": 15,\n        \"to\": 3,\n        \"total\": 3\n    },\n    \"status\": \"success\"\n}"}],"_postman_id":"b492775c-6626-4e5f-a1bb-455c30c59890"},{"name":"Crude Extract Type","id":"ab046517-2ea1-48bb-8c16-d236509fe39a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/v1/crude-extract-types/{{crude_extract_type_id}}","description":"<p><strong>Token Permissions</strong></p>\n<ul>\n<li>view:products</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}},"urlObject":{"path":["v1","crude-extract-types","{{crude_extract_type_id}}"],"host":["https://secure.bushel44.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"b69eb724-60f6-444b-b8af-9245b42ef459","name":"Crude Extract Type","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/crude-extract-types/{{crude_extract_type_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 01:52:24 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Cache-Control","value":"no-cache, public, must-revalidate, proxy-revalidate"},{"key":"X-RateLimit-Limit","value":"5000"},{"key":"X-RateLimit-Remaining","value":"4998"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 2,\n        \"name\": \"Decarbed\"\n    }\n}"}],"_postman_id":"ab046517-2ea1-48bb-8c16-d236509fe39a"}],"id":"911d8e49-e2d2-4046-8a3d-5b8fa82fcf10","_postman_id":"911d8e49-e2d2-4046-8a3d-5b8fa82fcf10","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}}},{"name":"Cultivars","item":[{"name":"Cultivars","id":"146c1442-1ca4-441a-a13d-0cc91e0d69da","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/v1/cultivars","description":"<p><strong>Token Permissions</strong></p>\n<ul>\n<li>view:products</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}},"urlObject":{"path":["v1","cultivars"],"host":["https://secure.bushel44.com/api/v1"],"query":[{"disabled":true,"description":{"content":"<p>Number of records to return per page</p>\n","type":"text/plain"},"key":"per_page","value":"15"}],"variable":[]}},"response":[{"id":"4ac5e430-55a5-4ec4-a3b7-9241dd1adbea","name":"Cultivars","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"https://secure.bushel44.com/api/v1/cultivars","host":["https://secure.bushel44.com/api/v1"],"path":["cultivars"],"query":[{"key":"per_page","value":"15","description":"Number of records to return per page","type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 01:56:44 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Cache-Control","value":"no-cache, public, must-revalidate, proxy-revalidate"},{"key":"X-RateLimit-Limit","value":"5000"},{"key":"X-RateLimit-Remaining","value":"4999"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 1,\n            \"name\": \"3 Peacemaker\",\n            \"company_id\": null\n        },\n        {\n            \"id\": 2,\n            \"name\": \"A 9 Auto\",\n            \"company_id\": null\n        },\n        {\n            \"id\": 3,\n            \"name\": \"A11 Auto\",\n            \"company_id\": null\n        },\n        {\n            \"id\": 4,\n            \"name\": \"Abacus\",\n            \"company_id\": null\n        },\n        {\n            \"id\": 5,\n            \"name\": \"ACDC\",\n            \"company_id\": null\n        },\n        {\n            \"id\": 6,\n            \"name\": \"Adzelvieši\",\n            \"company_id\": null\n        },\n        {\n            \"id\": 7,\n            \"name\": \"Afternoon Delight\",\n            \"company_id\": null\n        },\n        {\n            \"id\": 8,\n            \"name\": \"Altair\",\n            \"company_id\": null\n        },\n        {\n            \"id\": 9,\n            \"name\": \"Altitude\",\n            \"company_id\": null\n        },\n        {\n            \"id\": 10,\n            \"name\": \"Altitude 1\",\n            \"company_id\": null\n        },\n        {\n            \"id\": 11,\n            \"name\": \"Alyssa\",\n            \"company_id\": null\n        },\n        {\n            \"id\": 12,\n            \"name\": \"Angie\",\n            \"company_id\": null\n        },\n        {\n            \"id\": 13,\n            \"name\": \"Anka\",\n            \"company_id\": null\n        },\n        {\n            \"id\": 14,\n            \"name\": \"Apollo\",\n            \"company_id\": null\n        },\n        {\n            \"id\": 15,\n            \"name\": \"Armanca\",\n            \"company_id\": null\n        }\n    ],\n    \"links\": {\n        \"first\": \"https://demo.bushel44.com/api/v1/cultivars?page=1\",\n        \"last\": \"https://demo.bushel44.com/api/v1/cultivars?page=19\",\n        \"prev\": null,\n        \"next\": \"https://demo.bushel44.com/api/v1/cultivars?page=2\"\n    },\n    \"meta\": {\n        \"current_page\": 1,\n        \"from\": 1,\n        \"last_page\": 19,\n        \"links\": [\n            {\n                \"url\": null,\n                \"label\": \"&laquo; Previous\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.bushel44.com/api/v1/cultivars?page=1\",\n                \"label\": \"1\",\n                \"active\": true\n            },\n            {\n                \"url\": \"https://demo.bushel44.com/api/v1/cultivars?page=2\",\n                \"label\": \"2\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.bushel44.com/api/v1/cultivars?page=3\",\n                \"label\": \"3\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.bushel44.com/api/v1/cultivars?page=4\",\n                \"label\": \"4\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.bushel44.com/api/v1/cultivars?page=5\",\n                \"label\": \"5\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.bushel44.com/api/v1/cultivars?page=6\",\n                \"label\": \"6\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.bushel44.com/api/v1/cultivars?page=7\",\n                \"label\": \"7\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.bushel44.com/api/v1/cultivars?page=8\",\n                \"label\": \"8\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.bushel44.com/api/v1/cultivars?page=9\",\n                \"label\": \"9\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.bushel44.com/api/v1/cultivars?page=10\",\n                \"label\": \"10\",\n                \"active\": false\n            },\n            {\n                \"url\": null,\n                \"label\": \"...\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.bushel44.com/api/v1/cultivars?page=18\",\n                \"label\": \"18\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.bushel44.com/api/v1/cultivars?page=19\",\n                \"label\": \"19\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.bushel44.com/api/v1/cultivars?page=2\",\n                \"label\": \"Next &raquo;\",\n                \"active\": false\n            }\n        ],\n        \"path\": \"https://demo.bushel44.com/api/v1/cultivars\",\n        \"per_page\": 15,\n        \"to\": 15,\n        \"total\": 273\n    },\n    \"status\": \"success\"\n}"}],"_postman_id":"146c1442-1ca4-441a-a13d-0cc91e0d69da"},{"name":"Cultivar","id":"30af4616-25d1-4e16-a634-c8eb93c73f12","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/v1/cultivars/{{cultivar_id}}","description":"<p><strong>Token Permissions</strong></p>\n<ul>\n<li>view:products</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}},"urlObject":{"path":["v1","cultivars","{{cultivar_id}}"],"host":["https://secure.bushel44.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"1863ecf2-499d-4b6a-895b-319ebfe5eadd","name":"Cultivar","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/cultivars/{{cultivar_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 01:56:53 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Cache-Control","value":"no-cache, public, must-revalidate, proxy-revalidate"},{"key":"X-RateLimit-Limit","value":"5000"},{"key":"X-RateLimit-Remaining","value":"4998"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 3,\n        \"name\": \"A11 Auto\",\n        \"company_id\": null\n    }\n}"}],"_postman_id":"30af4616-25d1-4e16-a634-c8eb93c73f12"},{"name":"Cultivar","id":"075768d8-4539-449c-b3eb-59eb9b66e034","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"name","value":"my Cultivar name","description":"<p>optional, not nullable | </p>\n","type":"text","uuid":"74959067-3277-4cef-b960-ce3a565216ae"}]},"url":"https://secure.bushel44.com/api/v1/v1/cultivars/{{cultivar_id}}","description":"<p><strong>Token Permissions</strong></p>\n<ul>\n<li>update:products</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}},"urlObject":{"path":["v1","cultivars","{{cultivar_id}}"],"host":["https://secure.bushel44.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"bb22e814-10e3-40ce-a3d6-93dbe1617f8a","name":"Cultivar","originalRequest":{"method":"PATCH","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"name","value":"my Cultivar name","description":"optional, not nullable | <string>","type":"text","uuid":"74959067-3277-4cef-b960-ce3a565216ae"}]},"url":"https://secure.bushel44.com/api/v1/cultivars/{{cultivar_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 01:57:52 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Cache-Control","value":"no-cache, public, must-revalidate, proxy-revalidate"},{"key":"X-RateLimit-Limit","value":"5000"},{"key":"X-RateLimit-Remaining","value":"4999"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 274,\n        \"name\": \"my Cultivar name\",\n        \"company_id\": 4\n    }\n}"}],"_postman_id":"075768d8-4539-449c-b3eb-59eb9b66e034"},{"name":"Cultivar","id":"c5185784-033f-4f2f-bc33-f3981b1adf1c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/v1/cultivars/{{cultivar_id}}","description":"<p><strong>Token Permissions</strong></p>\n<ul>\n<li>update:products</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}},"urlObject":{"path":["v1","cultivars","{{cultivar_id}}"],"host":["https://secure.bushel44.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"3bfeba94-0122-4356-9845-19fcdec2806e","name":"Cultivar","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/cultivars/{{cultivar_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 01:58:02 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Cache-Control","value":"no-cache, public, must-revalidate, proxy-revalidate"},{"key":"X-RateLimit-Limit","value":"5000"},{"key":"X-RateLimit-Remaining","value":"4998"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Record deleted successfully\"\n}"}],"_postman_id":"c5185784-033f-4f2f-bc33-f3981b1adf1c"},{"name":"Cultivar","id":"dfef398a-0c0f-4a54-8c88-cfa700b46522","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"name","value":"my cultivar name","description":"<p>required | </p>\n","type":"text","uuid":"b7c06049-1d4c-4d0a-a052-7201a1296afb"}]},"url":"https://secure.bushel44.com/api/v1/v1/cultivars","description":"<p><strong>Token Permissions</strong></p>\n<ul>\n<li>update:products</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}},"urlObject":{"path":["v1","cultivars"],"host":["https://secure.bushel44.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"170d3c96-0357-4207-9c66-0b348c0830d3","name":"Cultivar","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"name","value":"my cultivar name","description":"required | <string>","type":"text","uuid":"b7c06049-1d4c-4d0a-a052-7201a1296afb"}]},"url":"https://secure.bushel44.com/api/v1/cultivars"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 01:57:15 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Cache-Control","value":"no-cache, public, must-revalidate, proxy-revalidate"},{"key":"X-RateLimit-Limit","value":"5000"},{"key":"X-RateLimit-Remaining","value":"4996"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 274,\n        \"name\": \"my cultivar name\",\n        \"company_id\": 4\n    }\n}"}],"_postman_id":"dfef398a-0c0f-4a54-8c88-cfa700b46522"}],"id":"8f5abd0c-f999-47bc-b2de-622d3f58dc68","_postman_id":"8f5abd0c-f999-47bc-b2de-622d3f58dc68","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}}},{"name":"Cultivar Types","item":[{"name":"Cultivar Types","id":"3e8a82a3-3c08-4256-90f8-6100acbda2da","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/v1/cultivar-types","description":"<p><strong>Token Permissions</strong></p>\n<ul>\n<li>view:products</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}},"urlObject":{"path":["v1","cultivar-types"],"host":["https://secure.bushel44.com/api/v1"],"query":[{"disabled":true,"description":{"content":"<p>Number of records to return per page</p>\n","type":"text/plain"},"key":"per_page","value":"15"}],"variable":[]}},"response":[{"id":"a1857ac7-946b-42ad-91ba-7b0c17605aa2","name":"Cultivar Types","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"https://secure.bushel44.com/api/v1/cultivar-types","host":["https://secure.bushel44.com/api/v1"],"path":["cultivar-types"],"query":[{"key":"per_page","value":"15","description":"Number of records to return per page","type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 01:52:36 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Cache-Control","value":"no-cache, public, must-revalidate, proxy-revalidate"},{"key":"X-RateLimit-Limit","value":"5000"},{"key":"X-RateLimit-Remaining","value":"4997"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 1,\n            \"name\": \"Indica\"\n        },\n        {\n            \"id\": 2,\n            \"name\": \"Sativa\"\n        },\n        {\n            \"id\": 3,\n            \"name\": \"Hybrid\"\n        },\n        {\n            \"id\": 4,\n            \"name\": \"Indica Dom. Hybrid\"\n        },\n        {\n            \"id\": 5,\n            \"name\": \"Sativa Dom. Hybrid\"\n        },\n        {\n            \"id\": 6,\n            \"name\": \"Non-Cultivar Specific\"\n        }\n    ],\n    \"links\": {\n        \"first\": \"https://demo.bushel44.com/api/v1/cultivar-types?page=1\",\n        \"last\": \"https://demo.bushel44.com/api/v1/cultivar-types?page=1\",\n        \"prev\": null,\n        \"next\": null\n    },\n    \"meta\": {\n        \"current_page\": 1,\n        \"from\": 1,\n        \"last_page\": 1,\n        \"links\": [\n            {\n                \"url\": null,\n                \"label\": \"&laquo; Previous\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.bushel44.com/api/v1/cultivar-types?page=1\",\n                \"label\": \"1\",\n                \"active\": true\n            },\n            {\n                \"url\": null,\n                \"label\": \"Next &raquo;\",\n                \"active\": false\n            }\n        ],\n        \"path\": \"https://demo.bushel44.com/api/v1/cultivar-types\",\n        \"per_page\": 15,\n        \"to\": 6,\n        \"total\": 6\n    },\n    \"status\": \"success\"\n}"}],"_postman_id":"3e8a82a3-3c08-4256-90f8-6100acbda2da"},{"name":"Cultivar Type","id":"056a41fb-a5ce-4113-9cac-0775f974eb45","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/v1/cultivar-types/{{cultivar_type_id}}","description":"<p><strong>Token Permissions</strong></p>\n<ul>\n<li>view:products</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}},"urlObject":{"path":["v1","cultivar-types","{{cultivar_type_id}}"],"host":["https://secure.bushel44.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"c5322099-fc8f-4f5c-a05a-9aa912e137b7","name":"Cultivar Type","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/cultivar-types/{{cultivar_type_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 01:52:46 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Cache-Control","value":"no-cache, public, must-revalidate, proxy-revalidate"},{"key":"X-RateLimit-Limit","value":"5000"},{"key":"X-RateLimit-Remaining","value":"4996"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 2,\n        \"name\": \"Sativa\"\n    }\n}"}],"_postman_id":"056a41fb-a5ce-4113-9cac-0775f974eb45"}],"id":"04be14b2-813a-4d45-a034-9e033b125e14","_postman_id":"04be14b2-813a-4d45-a034-9e033b125e14","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}}},{"name":"Deal Flows","item":[{"name":"Deal Flows","id":"a00a5dbc-6708-4887-9d53-2b097db10525","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer  ","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/v1/deal-flows?with_order_statuses=true","description":"<p><strong>Token Permissions</strong></p>\n<ul>\n<li>view:dealflows</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}},"urlObject":{"path":["v1","deal-flows"],"host":["https://secure.bushel44.com/api/v1"],"query":[{"disabled":true,"key":"with_documents","value":"true"},{"key":"with_order_statuses","value":"true"},{"disabled":true,"description":{"content":"<p>Number of records to return per page</p>\n","type":"text/plain"},"key":"per_page","value":"2"}],"variable":[]}},"response":[{"id":"0a402f47-e318-4b65-8c78-14acc47e796f","name":"Deal Flows","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer  ","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"https://secure.bushel44.com/api/v1/deal-flows?with_order_statuses=true","host":["https://secure.bushel44.com/api/v1"],"path":["deal-flows"],"query":[{"key":"with_documents","value":"true","disabled":true},{"key":"with_order_statuses","value":"true"},{"key":"per_page","value":"2","description":"Number of records to return per page","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 08 May 2025 11:51:33 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Cache-Control","value":"no-cache, public, must-revalidate, proxy-revalidate"},{"key":"X-RateLimit-Limit","value":"5000"},{"key":"X-RateLimit-Remaining","value":"4997"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"dealflows\": [\n        {\n            \"id\": 7,\n            \"name\": \"Default Standard\",\n            \"default\": true,\n            \"type\": null,\n            \"summary\": \"Defaults cannot be removed, but you may modify them to work however you like. This flow is used on Standard orders on the marketplace and buyers who you have not set a custom deal flow on.\",\n            \"uses_deal_flow_payments\": true,\n            \"created_at\": \"2020-03-26T16:32:58.000000Z\",\n            \"updated_at\": \"2021-06-23T23:18:43.000000Z\",\n            \"order_statuses\": [\n                {\n                    \"id\": 941,\n                    \"name\": \"Quote\",\n                    \"payment_percentage\": 0,\n                    \"archived\": false,\n                    \"position\": 1,\n                    \"parent_status\": null\n                },\n                {\n                    \"id\": 121,\n                    \"name\": \"Submitted\",\n                    \"payment_percentage\": 0,\n                    \"archived\": false,\n                    \"position\": 2,\n                    \"parent_status\": null\n                },\n                {\n                    \"id\": 122,\n                    \"name\": \"Change Order\",\n                    \"payment_percentage\": 0,\n                    \"archived\": false,\n                    \"position\": 3,\n                    \"parent_status\": null\n                },\n                {\n                    \"id\": 123,\n                    \"name\": \"Approved\",\n                    \"payment_percentage\": 25,\n                    \"archived\": false,\n                    \"position\": 4,\n                    \"parent_status\": null\n                },\n                {\n                    \"id\": 124,\n                    \"name\": \"Packing\",\n                    \"payment_percentage\": 0,\n                    \"archived\": false,\n                    \"position\": 5,\n                    \"parent_status\": null\n                },\n                {\n                    \"id\": 125,\n                    \"name\": \"Packed\",\n                    \"payment_percentage\": 0,\n                    \"archived\": false,\n                    \"position\": 6,\n                    \"parent_status\": null\n                },\n                {\n                    \"id\": 126,\n                    \"name\": \"Pending Shipment\",\n                    \"payment_percentage\": 25,\n                    \"archived\": false,\n                    \"position\": 7,\n                    \"parent_status\": null\n                },\n                {\n                    \"id\": 127,\n                    \"name\": \"In-Transit\",\n                    \"payment_percentage\": 0,\n                    \"archived\": false,\n                    \"position\": 8,\n                    \"parent_status\": null\n                },\n                {\n                    \"id\": 128,\n                    \"name\": \"Delivered\",\n                    \"payment_percentage\": 0,\n                    \"archived\": false,\n                    \"position\": 9,\n                    \"parent_status\": null\n                },\n                {\n                    \"id\": 129,\n                    \"name\": \"Product Approved\",\n                    \"payment_percentage\": 0,\n                    \"archived\": false,\n                    \"position\": 10,\n                    \"parent_status\": null\n                },\n                {\n                    \"id\": 133,\n                    \"name\": \"Complete\",\n                    \"payment_percentage\": 50,\n                    \"archived\": false,\n                    \"position\": 11,\n                    \"parent_status\": null\n                },\n                {\n                    \"id\": 132,\n                    \"name\": \"Cancelled\",\n                    \"payment_percentage\": 0,\n                    \"archived\": false,\n                    \"position\": 12,\n                    \"parent_status\": null\n                }\n            ]\n        },\n        {\n            \"id\": 8,\n            \"name\": \"Default White Label\",\n            \"default\": true,\n            \"type\": null,\n            \"summary\": \"Defaults cannot be removed, but you may modify them to work however you like. This flow is used on White Label orders on the marketplace and buyers who you have not set a custom deal flow on.\",\n            \"uses_deal_flow_payments\": false,\n            \"created_at\": \"2020-03-26T16:32:58.000000Z\",\n            \"updated_at\": \"2021-04-01T23:09:26.000000Z\",\n            \"order_statuses\": [\n                {\n                    \"id\": 134,\n                    \"name\": \"Backorder\",\n                    \"payment_percentage\": 0,\n                    \"archived\": false,\n                    \"position\": 1,\n                    \"parent_status\": null\n                },\n                {\n                    \"id\": 135,\n                    \"name\": \"In-Testing\",\n                    \"payment_percentage\": 0,\n                    \"archived\": false,\n                    \"position\": 2,\n                    \"parent_status\": null\n                },\n                {\n                    \"id\": 136,\n                    \"name\": \"Buyer Approved\",\n                    \"payment_percentage\": 0,\n                    \"archived\": false,\n                    \"position\": 3,\n                    \"parent_status\": null\n                },\n                {\n                    \"id\": 137,\n                    \"name\": \"Submitted\",\n                    \"payment_percentage\": 0,\n                    \"archived\": false,\n                    \"position\": 4,\n                    \"parent_status\": null\n                },\n                {\n                    \"id\": 138,\n                    \"name\": \"Change Order\",\n                    \"payment_percentage\": 0,\n                    \"archived\": false,\n                    \"position\": 5,\n                    \"parent_status\": null\n                },\n                {\n                    \"id\": 139,\n                    \"name\": \"Approved\",\n                    \"payment_percentage\": 0,\n                    \"archived\": false,\n                    \"position\": 6,\n                    \"parent_status\": null\n                },\n                {\n                    \"id\": 140,\n                    \"name\": \"Research & Development\",\n                    \"payment_percentage\": 0,\n                    \"archived\": false,\n                    \"position\": 7,\n                    \"parent_status\": null\n                },\n                {\n                    \"id\": 141,\n                    \"name\": \"Pending Label & Packaging Info\",\n                    \"payment_percentage\": 0,\n                    \"archived\": false,\n                    \"position\": 8,\n                    \"parent_status\": null\n                },\n                {\n                    \"id\": 142,\n                    \"name\": \"Label & Packaging Approval\",\n                    \"payment_percentage\": 0,\n                    \"archived\": false,\n                    \"position\": 9,\n                    \"parent_status\": null\n                },\n                {\n                    \"id\": 143,\n                    \"name\": \"Label & Packaging Printing\",\n                    \"payment_percentage\": 0,\n                    \"archived\": false,\n                    \"position\": 10,\n                    \"parent_status\": null\n                },\n                {\n                    \"id\": 144,\n                    \"name\": \"Components Ordered\",\n                    \"payment_percentage\": 0,\n                    \"archived\": false,\n                    \"position\": 11,\n                    \"parent_status\": null\n                },\n                {\n                    \"id\": 145,\n                    \"name\": \"Production\",\n                    \"payment_percentage\": 0,\n                    \"archived\": false,\n                    \"position\": 12,\n                    \"parent_status\": null\n                },\n                {\n                    \"id\": 146,\n                    \"name\": \"Testing\",\n                    \"payment_percentage\": 0,\n                    \"archived\": false,\n                    \"position\": 13,\n                    \"parent_status\": null\n                },\n                {\n                    \"id\": 147,\n                    \"name\": \"Packing\",\n                    \"payment_percentage\": 0,\n                    \"archived\": false,\n                    \"position\": 14,\n                    \"parent_status\": null\n                },\n                {\n                    \"id\": 148,\n                    \"name\": \"Packed\",\n                    \"payment_percentage\": 0,\n                    \"archived\": false,\n                    \"position\": 15,\n                    \"parent_status\": null\n                },\n                {\n                    \"id\": 149,\n                    \"name\": \"Pending Shipment\",\n                    \"payment_percentage\": 0,\n                    \"archived\": false,\n                    \"position\": 16,\n                    \"parent_status\": null\n                },\n                {\n                    \"id\": 150,\n                    \"name\": \"In-Transit\",\n                    \"payment_percentage\": 0,\n                    \"archived\": false,\n                    \"position\": 17,\n                    \"parent_status\": null\n                },\n                {\n                    \"id\": 151,\n                    \"name\": \"Delivered\",\n                    \"payment_percentage\": 0,\n                    \"archived\": false,\n                    \"position\": 18,\n                    \"parent_status\": null\n                },\n                {\n                    \"id\": 152,\n                    \"name\": \"Product Approved\",\n                    \"payment_percentage\": 0,\n                    \"archived\": false,\n                    \"position\": 19,\n                    \"parent_status\": null\n                },\n                {\n                    \"id\": 153,\n                    \"name\": \"Partial Rejection\",\n                    \"payment_percentage\": 0,\n                    \"archived\": false,\n                    \"position\": 20,\n                    \"parent_status\": null\n                },\n                {\n                    \"id\": 154,\n                    \"name\": \"Full Rejection\",\n                    \"payment_percentage\": 0,\n                    \"archived\": false,\n                    \"position\": 21,\n                    \"parent_status\": null\n                },\n                {\n                    \"id\": 155,\n                    \"name\": \"Cancelled\",\n                    \"payment_percentage\": 0,\n                    \"archived\": false,\n                    \"position\": 22,\n                    \"parent_status\": null\n                },\n                {\n                    \"id\": 156,\n                    \"name\": \"Complete\",\n                    \"payment_percentage\": 0,\n                    \"archived\": false,\n                    \"position\": 23,\n                    \"parent_status\": null\n                }\n            ]\n        },\n        {\n            \"id\": 9,\n            \"name\": \"ABC Customer\",\n            \"default\": false,\n            \"type\": null,\n            \"summary\": null,\n            \"uses_deal_flow_payments\": true,\n            \"created_at\": \"2020-03-26T20:10:27.000000Z\",\n            \"updated_at\": \"2021-03-09T20:11:07.000000Z\",\n            \"order_statuses\": [\n                {\n                    \"id\": 160,\n                    \"name\": \"Submitted\",\n                    \"payment_percentage\": 0,\n                    \"archived\": false,\n                    \"position\": 1,\n                    \"parent_status\": null\n                },\n                {\n                    \"id\": 161,\n                    \"name\": \"Change Order\",\n                    \"payment_percentage\": 0,\n                    \"archived\": false,\n                    \"position\": 2,\n                    \"parent_status\": null\n                },\n                {\n                    \"id\": 162,\n                    \"name\": \"Approved\",\n                    \"payment_percentage\": 25,\n                    \"archived\": false,\n                    \"position\": 3,\n                    \"parent_status\": null\n                },\n                {\n                    \"id\": 163,\n                    \"name\": \"Packing\",\n                    \"payment_percentage\": 0,\n                    \"archived\": false,\n                    \"position\": 4,\n                    \"parent_status\": null\n                },\n                {\n                    \"id\": 164,\n                    \"name\": \"Packed\",\n                    \"payment_percentage\": 0,\n                    \"archived\": false,\n                    \"position\": 5,\n                    \"parent_status\": null\n                },\n                {\n                    \"id\": 165,\n                    \"name\": \"Pending Shipment\",\n                    \"payment_percentage\": 0,\n                    \"archived\": false,\n                    \"position\": 6,\n                    \"parent_status\": null\n                },\n                {\n                    \"id\": 166,\n                    \"name\": \"In-Transit\",\n                    \"payment_percentage\": 0,\n                    \"archived\": false,\n                    \"position\": 7,\n                    \"parent_status\": null\n                },\n                {\n                    \"id\": 167,\n                    \"name\": \"Delivered\",\n                    \"payment_percentage\": 0,\n                    \"archived\": false,\n                    \"position\": 8,\n                    \"parent_status\": null\n                },\n                {\n                    \"id\": 168,\n                    \"name\": \"Product Approved\",\n                    \"payment_percentage\": 75,\n                    \"archived\": false,\n                    \"position\": 9,\n                    \"parent_status\": null\n                },\n                {\n                    \"id\": 169,\n                    \"name\": \"Partial Rejection\",\n                    \"payment_percentage\": 0,\n                    \"archived\": false,\n                    \"position\": 10,\n                    \"parent_status\": null\n                },\n                {\n                    \"id\": 170,\n                    \"name\": \"Full Rejection\",\n                    \"payment_percentage\": 0,\n                    \"archived\": false,\n                    \"position\": 11,\n                    \"parent_status\": null\n                },\n                {\n                    \"id\": 171,\n                    \"name\": \"Cancelled\",\n                    \"payment_percentage\": 0,\n                    \"archived\": false,\n                    \"position\": 12,\n                    \"parent_status\": null\n                },\n                {\n                    \"id\": 172,\n                    \"name\": \"Complete\",\n                    \"payment_percentage\": 0,\n                    \"archived\": false,\n                    \"position\": 13,\n                    \"parent_status\": null\n                }\n            ]\n        },\n        {\n            \"id\": 10,\n            \"name\": \"Apex Extracts - Sales Flow\",\n            \"default\": false,\n            \"type\": null,\n            \"summary\": null,\n            \"uses_deal_flow_payments\": false,\n            \"created_at\": \"2020-03-26T20:10:52.000000Z\",\n            \"updated_at\": \"2021-08-31T05:18:48.000000Z\",\n            \"order_statuses\": [\n                {\n                    \"id\": 177,\n                    \"name\": \"Change Order\",\n                    \"payment_percentage\": 0,\n                    \"archived\": false,\n                    \"position\": 1,\n                    \"parent_status\": null\n                },\n                {\n                    \"id\": 178,\n                    \"name\": \"Approved\",\n                    \"payment_percentage\": 0,\n                    \"archived\": false,\n                    \"position\": 2,\n                    \"parent_status\": null\n                },\n                {\n                    \"id\": 179,\n                    \"name\": \"Packing\",\n                    \"payment_percentage\": 0,\n                    \"archived\": false,\n                    \"position\": 3,\n                    \"parent_status\": null\n                },\n                {\n                    \"id\": 180,\n                    \"name\": \"Packed\",\n                    \"payment_percentage\": 0,\n                    \"archived\": false,\n                    \"position\": 4,\n                    \"parent_status\": null\n                },\n                {\n                    \"id\": 181,\n                    \"name\": \"Pending Shipment\",\n                    \"payment_percentage\": 0,\n                    \"archived\": false,\n                    \"position\": 5,\n                    \"parent_status\": null\n                },\n                {\n                    \"id\": 182,\n                    \"name\": \"In-Transit\",\n                    \"payment_percentage\": 0,\n                    \"archived\": false,\n                    \"position\": 6,\n                    \"parent_status\": null\n                },\n                {\n                    \"id\": 183,\n                    \"name\": \"Delivered\",\n                    \"payment_percentage\": 0,\n                    \"archived\": false,\n                    \"position\": 7,\n                    \"parent_status\": null\n                },\n                {\n                    \"id\": 184,\n                    \"name\": \"Product Approved\",\n                    \"payment_percentage\": 0,\n                    \"archived\": false,\n                    \"position\": 8,\n                    \"parent_status\": null\n                },\n                {\n                    \"id\": 185,\n                    \"name\": \"Partial Rejection\",\n                    \"payment_percentage\": 0,\n                    \"archived\": false,\n                    \"position\": 9,\n                    \"parent_status\": null\n                },\n                {\n                    \"id\": 186,\n                    \"name\": \"Full Rejection\",\n                    \"payment_percentage\": 0,\n                    \"archived\": false,\n                    \"position\": 10,\n                    \"parent_status\": null\n                },\n                {\n                    \"id\": 187,\n                    \"name\": \"Cancelled\",\n                    \"payment_percentage\": 0,\n                    \"archived\": false,\n                    \"position\": 11,\n                    \"parent_status\": null\n                },\n                {\n                    \"id\": 188,\n                    \"name\": \"Complete\",\n                    \"payment_percentage\": 0,\n                    \"archived\": false,\n                    \"position\": 12,\n                    \"parent_status\": null\n                }\n            ]\n        },\n        {\n            \"id\": 11,\n            \"name\": \"Bulk Smokeable Flower\",\n            \"default\": false,\n            \"type\": null,\n            \"summary\": null,\n            \"uses_deal_flow_payments\": true,\n            \"created_at\": \"2020-03-26T20:11:39.000000Z\",\n            \"updated_at\": \"2020-08-21T16:37:34.000000Z\",\n            \"order_statuses\": [\n                {\n                    \"id\": 191,\n                    \"name\": \"Sales Quote Created\",\n                    \"payment_percentage\": 0,\n                    \"archived\": false,\n                    \"position\": 1,\n                    \"parent_status\": null\n                },\n                {\n                    \"id\": 189,\n                    \"name\": \"Approved by Mgmt\",\n                    \"payment_percentage\": 0,\n                    \"archived\": false,\n                    \"position\": 2,\n                    \"parent_status\": null\n                },\n                {\n                    \"id\": 904,\n                    \"name\": \"Order Cancelled\",\n                    \"payment_percentage\": 0,\n                    \"archived\": false,\n                    \"position\": 3,\n                    \"parent_status\": null\n                },\n                {\n                    \"id\": 193,\n                    \"name\": \"Initial Payment Received\",\n                    \"payment_percentage\": 25,\n                    \"archived\": false,\n                    \"position\": 4,\n                    \"parent_status\": null\n                },\n                {\n                    \"id\": 194,\n                    \"name\": \"Pending Shipment\",\n                    \"payment_percentage\": 0,\n                    \"archived\": false,\n                    \"position\": 5,\n                    \"parent_status\": null\n                },\n                {\n                    \"id\": 195,\n                    \"name\": \"In-Transit\",\n                    \"payment_percentage\": 0,\n                    \"archived\": false,\n                    \"position\": 6,\n                    \"parent_status\": null\n                },\n                {\n                    \"id\": 196,\n                    \"name\": \"Delivered\",\n                    \"payment_percentage\": 0,\n                    \"archived\": false,\n                    \"position\": 7,\n                    \"parent_status\": null\n                },\n                {\n                    \"id\": 197,\n                    \"name\": \"Product Approved\",\n                    \"payment_percentage\": 0,\n                    \"archived\": false,\n                    \"position\": 8,\n                    \"parent_status\": null\n                },\n                {\n                    \"id\": 198,\n                    \"name\": \"Partial Rejection\",\n                    \"payment_percentage\": 0,\n                    \"archived\": false,\n                    \"position\": 9,\n                    \"parent_status\": null\n                },\n                {\n                    \"id\": 199,\n                    \"name\": \"Full Rejection\",\n                    \"payment_percentage\": 0,\n                    \"archived\": false,\n                    \"position\": 10,\n                    \"parent_status\": null\n                },\n                {\n                    \"id\": 200,\n                    \"name\": \"Cancelled\",\n                    \"payment_percentage\": 0,\n                    \"archived\": false,\n                    \"position\": 11,\n                    \"parent_status\": null\n                },\n                {\n                    \"id\": 201,\n                    \"name\": \"Complete\",\n                    \"payment_percentage\": 75,\n                    \"archived\": false,\n                    \"position\": 12,\n                    \"parent_status\": null\n                }\n            ]\n        }\n    ],\n    \"links\": {\n        \"first\": \"https://demo.bushel44.com/api/v1/deal-flows?page=1\",\n        \"last\": \"https://demo.bushel44.com/api/v1/deal-flows?page=1\",\n        \"prev\": null,\n        \"next\": null\n    },\n    \"meta\": {\n        \"current_page\": 1,\n        \"from\": 1,\n        \"last_page\": 1,\n        \"links\": [\n            {\n                \"url\": null,\n                \"label\": \"&laquo; Previous\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.bushel44.com/api/v1/deal-flows?page=1\",\n                \"label\": \"1\",\n                \"active\": true\n            },\n            {\n                \"url\": null,\n                \"label\": \"Next &raquo;\",\n                \"active\": false\n            }\n        ],\n        \"path\": \"https://demo.bushel44.com/api/v1/deal-flows\",\n        \"per_page\": 15,\n        \"to\": 5,\n        \"total\": 5\n    }\n}"}],"_postman_id":"a00a5dbc-6708-4887-9d53-2b097db10525"},{"name":"Deal Flow","id":"110e3283-6b0d-4331-a573-c7bb3ed6340c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer  ","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/v1/deal-flows/2","description":"<p><strong>Token Permissions</strong></p>\n<ul>\n<li>view:dealflows</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}},"urlObject":{"path":["v1","deal-flows","2"],"host":["https://secure.bushel44.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"25049a0e-b43a-44d5-af10-29c68fa404bb","name":"Deal Flow","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer  ","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/deal-flows/2"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 02:16:05 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Cache-Control","value":"no-cache, public, must-revalidate, proxy-revalidate"},{"key":"X-RateLimit-Limit","value":"5000"},{"key":"X-RateLimit-Remaining","value":"4999"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"dealflow\": {\n        \"id\": 7,\n        \"name\": \"Default Standard\",\n        \"default\": true,\n        \"type\": null,\n        \"summary\": \"Defaults cannot be removed, but you may modify them to work however you like. This flow is used on Standard orders on the marketplace and buyers who you have not set a custom deal flow on.\",\n        \"uses_deal_flow_payments\": true,\n        \"created_at\": \"2020-03-26T16:32:58.000000Z\",\n        \"updated_at\": \"2021-06-23T23:18:43.000000Z\",\n        \"documents\": [\n            {\n                \"uuid\": \"daae3465-4a4a-4804-a9b2-4021a773c201\",\n                \"name\": \"Purchase-Agreement.docx\",\n                \"label\": \"Purchase Agreement\",\n                \"type\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document\",\n                \"requires_signature\": true,\n                \"e_signable\": true,\n                \"show_url\": \"https://demo.bushel44.com/b-api/deal-docs/daae3465-4a4a-4804-a9b2-4021a773c201\",\n                \"download_url\": \"https://demo.bushel44.com/b-api/deal-docs/download/daae3465-4a4a-4804-a9b2-4021a773c201\",\n                \"created_at\": \"2020-03-26T18:52:29.000000Z\",\n                \"updated_at\": \"2020-03-26T18:52:29.000000Z\"\n            }\n        ],\n        \"order_statuses\": [\n            {\n                \"id\": 941,\n                \"name\": \"Quote\",\n                \"payment_percentage\": 0,\n                \"archived\": false,\n                \"position\": 1,\n                \"parent_status\": {\n                    \"id\": 1,\n                    \"name\": \"Submitted\"\n                }\n            },\n            {\n                \"id\": 121,\n                \"name\": \"Submitted\",\n                \"payment_percentage\": 0,\n                \"archived\": false,\n                \"position\": 2,\n                \"parent_status\": {\n                    \"id\": 1,\n                    \"name\": \"Submitted\"\n                }\n            },\n            {\n                \"id\": 122,\n                \"name\": \"Change Order\",\n                \"payment_percentage\": 0,\n                \"archived\": false,\n                \"position\": 3,\n                \"parent_status\": {\n                    \"id\": 1,\n                    \"name\": \"Submitted\"\n                }\n            },\n            {\n                \"id\": 123,\n                \"name\": \"Approved\",\n                \"payment_percentage\": 25,\n                \"archived\": false,\n                \"position\": 4,\n                \"parent_status\": {\n                    \"id\": 1,\n                    \"name\": \"Submitted\"\n                }\n            },\n            {\n                \"id\": 124,\n                \"name\": \"Packing\",\n                \"payment_percentage\": 0,\n                \"archived\": false,\n                \"position\": 5,\n                \"parent_status\": {\n                    \"id\": 1,\n                    \"name\": \"Submitted\"\n                }\n            },\n            {\n                \"id\": 125,\n                \"name\": \"Packed\",\n                \"payment_percentage\": 0,\n                \"archived\": false,\n                \"position\": 6,\n                \"parent_status\": {\n                    \"id\": 1,\n                    \"name\": \"Submitted\"\n                }\n            },\n            {\n                \"id\": 126,\n                \"name\": \"Pending Shipment\",\n                \"payment_percentage\": 25,\n                \"archived\": false,\n                \"position\": 7,\n                \"parent_status\": {\n                    \"id\": 1,\n                    \"name\": \"Submitted\"\n                }\n            },\n            {\n                \"id\": 127,\n                \"name\": \"In-Transit\",\n                \"payment_percentage\": 0,\n                \"archived\": false,\n                \"position\": 8,\n                \"parent_status\": {\n                    \"id\": 1,\n                    \"name\": \"Submitted\"\n                }\n            },\n            {\n                \"id\": 128,\n                \"name\": \"Delivered\",\n                \"payment_percentage\": 0,\n                \"archived\": false,\n                \"position\": 9,\n                \"parent_status\": {\n                    \"id\": 1,\n                    \"name\": \"Submitted\"\n                }\n            },\n            {\n                \"id\": 129,\n                \"name\": \"Product Approved\",\n                \"payment_percentage\": 0,\n                \"archived\": false,\n                \"position\": 10,\n                \"parent_status\": {\n                    \"id\": 1,\n                    \"name\": \"Submitted\"\n                }\n            },\n            {\n                \"id\": 133,\n                \"name\": \"Complete\",\n                \"payment_percentage\": 50,\n                \"archived\": false,\n                \"position\": 11,\n                \"parent_status\": {\n                    \"id\": 1,\n                    \"name\": \"Submitted\"\n                }\n            },\n            {\n                \"id\": 132,\n                \"name\": \"Cancelled\",\n                \"payment_percentage\": 0,\n                \"archived\": false,\n                \"position\": 12,\n                \"parent_status\": {\n                    \"id\": 1,\n                    \"name\": \"Submitted\"\n                }\n            }\n        ]\n    }\n}"}],"_postman_id":"110e3283-6b0d-4331-a573-c7bb3ed6340c"}],"id":"f1eb0967-fb04-4839-8823-ff05952f9323","description":"<p>A deal flow is a process that a company follows when handling and order.</p>\n<p>A company can have multiple different deal flows.</p>\n<p>A deal flow is made of many different order_statuses that each have a parent status. The order_statuses are dynamic and can differ even within a company, however the parent status will be static across all deal flows.</p>\n<ul>\n<li><p>Submitted</p>\n</li>\n<li><p>Accepted</p>\n</li>\n<li><p>Pending Shipment</p>\n</li>\n<li><p>In Transit</p>\n</li>\n<li><p>Delivered</p>\n</li>\n<li><p>Complete</p>\n</li>\n</ul>\n<p>Example:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code> \"dealflows\": [\n        {\n            \"id\": 25,\n            \"name\": \"Default\",\n            \"default\": true,\n            \"type\": null,\n            \"summary\": \"Defaults cannot be removed, but you may modify them to work however you like. This flow is used on Standard orders on the marketplace and buyers who you have not set a custom deal flow on.\",\n            \"uses_deal_flow_payments\": false,\n            \"created_at\": \"2020-07-28T18:07:18.000000Z\",\n            \"updated_at\": \"2022-10-03T23:10:54.000000Z\",\n            \"order_statuses\": [\n                {\n                    \"id\": 472,\n                    \"name\": \"Order Submitted - Confirm Inventory\",\n                    \"payment_percentage\": 0,\n                    \"archived\": false,\n                    \"position\": 1,\n                    \"parent_status\": {\n                        \"id\": 1,\n                        \"name\": \"Submitted\"\n                    }\n                },\n                {\n                    \"id\": 474,\n                    \"name\": \"Order Approved - Send to Packaging\",\n                    \"payment_percentage\": 0,\n                    \"archived\": false,\n                    \"position\": 2,\n                    \"parent_status\": {\n                        \"id\": 2,\n                        \"name\": \"Accepted\"\n                    }\n                },\n ...\n }]\n\n</code></pre><p>In the above deal flow return you can see 2 order_statuses, each with a different parent status. Each deal flow is required to have at least 1 order_status for each parent status, but can have many.</p>\n<p>A common need is to set the status of an order, for example when it has been delivered. As you see, in our system, you can't depend upon a static order_status. When building against this we recommend usually taking the first order_status_id that exists for a given parent.</p>\n<p>EG. To mark an order as 'delivered', you can get the deal flow for the order, filter for order_statuses where the parent_status.name = 'Delivered', sort by position and select the first.</p>\n<p>An alternative, but more brittle solution, is to require that the company has an order status with a specific name in all deal flows.</p>\n","_postman_id":"f1eb0967-fb04-4839-8823-ff05952f9323","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}}},{"name":"Deal Docs","item":[{"name":"Deal Docs","id":"33912734-265e-42e4-a66b-b24500a7a69c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer  ","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/v1/deal-docs","description":"<p><strong>Token Permissions</strong></p>\n<ul>\n<li>view:dealdocs</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}},"urlObject":{"path":["v1","deal-docs"],"host":["https://secure.bushel44.com/api/v1"],"query":[{"disabled":true,"description":{"content":"<p>Number of records to return per page</p>\n","type":"text/plain"},"key":"per_page","value":"15"}],"variable":[]}},"response":[],"_postman_id":"33912734-265e-42e4-a66b-b24500a7a69c"},{"name":"Deal Doc","id":"7d7c096f-5554-4da8-92a5-d6f474723c19","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer  ","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/v1/deal-docs/{{deal_doc_id}}","description":"<p><strong>Token Permissions</strong></p>\n<ul>\n<li>view:dealdocs</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}},"urlObject":{"path":["v1","deal-docs","{{deal_doc_id}}"],"host":["https://secure.bushel44.com/api/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"7d7c096f-5554-4da8-92a5-d6f474723c19"}],"id":"5a3b7b6d-c8fa-4fa2-95fa-321af79f10b4","_postman_id":"5a3b7b6d-c8fa-4fa2-95fa-321af79f10b4","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}}},{"name":"Environmental Issues","item":[{"name":"Environmental Issues","id":"e844e928-074a-468b-93dc-74f5e5e06886","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/v1/environmental-issues","description":"<p><strong>Token Permissions</strong></p>\n<ul>\n<li>view:products</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}},"urlObject":{"path":["v1","environmental-issues"],"host":["https://secure.bushel44.com/api/v1"],"query":[{"disabled":true,"description":{"content":"<p>Number of records to return per page</p>\n","type":"text/plain"},"key":"per_page","value":"15"}],"variable":[]}},"response":[{"id":"e7548d45-3b1c-40b8-835f-39e1e2fd4dba","name":"Environmental Issues","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"https://secure.bushel44.com/api/v1/environmental-issues","host":["https://secure.bushel44.com/api/v1"],"path":["environmental-issues"],"query":[{"key":"per_page","value":"15","description":"Number of records to return per page","type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 01:55:53 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Cache-Control","value":"no-cache, public, must-revalidate, proxy-revalidate"},{"key":"X-RateLimit-Limit","value":"5000"},{"key":"X-RateLimit-Remaining","value":"4998"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 1,\n            \"name\": \"Pest\",\n            \"company_id\": null\n        },\n        {\n            \"id\": 2,\n            \"name\": \"Microbial\",\n            \"company_id\": null\n        },\n        {\n            \"id\": 3,\n            \"name\": \"my environmental issue name\",\n            \"company_id\": 4\n        }\n    ],\n    \"links\": {\n        \"first\": \"https://demo.bushel44.com/api/v1/environmental-issues?page=1\",\n        \"last\": \"https://demo.bushel44.com/api/v1/environmental-issues?page=1\",\n        \"prev\": null,\n        \"next\": null\n    },\n    \"meta\": {\n        \"current_page\": 1,\n        \"from\": 1,\n        \"last_page\": 1,\n        \"links\": [\n            {\n                \"url\": null,\n                \"label\": \"&laquo; Previous\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.bushel44.com/api/v1/environmental-issues?page=1\",\n                \"label\": \"1\",\n                \"active\": true\n            },\n            {\n                \"url\": null,\n                \"label\": \"Next &raquo;\",\n                \"active\": false\n            }\n        ],\n        \"path\": \"https://demo.bushel44.com/api/v1/environmental-issues\",\n        \"per_page\": 15,\n        \"to\": 3,\n        \"total\": 3\n    },\n    \"status\": \"success\"\n}"}],"_postman_id":"e844e928-074a-468b-93dc-74f5e5e06886"},{"name":"Environmental Issue","id":"96691cdb-6f74-4285-8796-82608202ab5a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/v1/environmental-issues/{{environmental_issue_id}}","description":"<p><strong>Token Permissions</strong></p>\n<ul>\n<li>view:products</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}},"urlObject":{"path":["v1","environmental-issues","{{environmental_issue_id}}"],"host":["https://secure.bushel44.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"b041fb5b-7890-4de8-b774-dae28d8d2300","name":"Environmental Issue","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/environmental-issues/{{environmental_issue_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 01:56:03 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Cache-Control","value":"no-cache, public, must-revalidate, proxy-revalidate"},{"key":"X-RateLimit-Limit","value":"5000"},{"key":"X-RateLimit-Remaining","value":"4997"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 3,\n        \"name\": \"my environmental issue name\",\n        \"company_id\": 4\n    }\n}"}],"_postman_id":"96691cdb-6f74-4285-8796-82608202ab5a"},{"name":"Environmental Issue","id":"63713a5d-22cf-4d02-95f7-a4ac8bba23a6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"name","value":"my environmental issue name","description":"<p>optional, not nullable | </p>\n","type":"text","uuid":"737887a5-8ccc-4d74-aaaf-f001083159cb"}]},"url":"https://secure.bushel44.com/api/v1/v1/environmental-issues/{{environmental_issue_id}}","description":"<p><strong>Token Permissions</strong></p>\n<ul>\n<li>update:products</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}},"urlObject":{"path":["v1","environmental-issues","{{environmental_issue_id}}"],"host":["https://secure.bushel44.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"8bbd5e92-2bfe-408b-a1be-cdd2999cd2e3","name":"Environmental Issue","originalRequest":{"method":"PATCH","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"name","value":"my environmental issue name","description":"optional, not nullable | <string>","type":"text","uuid":"737887a5-8ccc-4d74-aaaf-f001083159cb"}]},"url":"https://secure.bushel44.com/api/v1/environmental-issues/{{environmental_issue_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 01:56:15 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Cache-Control","value":"no-cache, public, must-revalidate, proxy-revalidate"},{"key":"X-RateLimit-Limit","value":"5000"},{"key":"X-RateLimit-Remaining","value":"4996"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 3,\n        \"name\": \"my environmental issue name\",\n        \"company_id\": 4\n    }\n}"}],"_postman_id":"63713a5d-22cf-4d02-95f7-a4ac8bba23a6"},{"name":"Environmental Issue","id":"3278e3d5-1f73-48b8-b39f-fbdb7307e89b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/v1/environmental-issues/{{environmental_issue_id}}","description":"<p><strong>Token Permissions</strong></p>\n<ul>\n<li>update:products</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}},"urlObject":{"path":["v1","environmental-issues","{{environmental_issue_id}}"],"host":["https://secure.bushel44.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"9a745faf-2b3c-4e68-8d6e-7400d6199f02","name":"Environmental Issue","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/environmental-issues/{{environmental_issue_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 01:56:25 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Cache-Control","value":"no-cache, public, must-revalidate, proxy-revalidate"},{"key":"X-RateLimit-Limit","value":"5000"},{"key":"X-RateLimit-Remaining","value":"4995"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Record deleted successfully\"\n}"}],"_postman_id":"3278e3d5-1f73-48b8-b39f-fbdb7307e89b"},{"name":"Environmental Issue","id":"1f6dfc86-f5c9-4b8a-8792-cddd9439dba9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"name","value":"my environmental issue name","description":"<p>required | </p>\n","type":"text","uuid":"b7c06049-1d4c-4d0a-a052-7201a1296afb"}]},"url":"https://secure.bushel44.com/api/v1/v1/environmental-issues","description":"<p><strong>Token Permissions</strong></p>\n<ul>\n<li>update:products</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}},"urlObject":{"path":["v1","environmental-issues"],"host":["https://secure.bushel44.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"d2afbf5e-0f65-4518-988e-93b01dbfdd75","name":"Environmental Issue","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"name","value":"my environmental issue name","description":"required | <string>","type":"text","uuid":"b7c06049-1d4c-4d0a-a052-7201a1296afb"}]},"url":"https://secure.bushel44.com/api/v1/environmental-issues"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 01:55:34 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Cache-Control","value":"no-cache, public, must-revalidate, proxy-revalidate"},{"key":"X-RateLimit-Limit","value":"5000"},{"key":"X-RateLimit-Remaining","value":"4999"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 3,\n        \"name\": \"my environmental issue name\",\n        \"company_id\": 4\n    }\n}"}],"_postman_id":"1f6dfc86-f5c9-4b8a-8792-cddd9439dba9"}],"id":"31c6dfa1-0fb9-43c5-9771-d54a4b759e82","_postman_id":"31c6dfa1-0fb9-43c5-9771-d54a4b759e82","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}}},{"name":"Feminized Types","item":[{"name":"Feminized Types","id":"87f77a78-6cae-4dcd-8443-f81e514f4c04","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/v1/feminized-types","description":"<p><strong>Token Permissions</strong></p>\n<ul>\n<li>view:products</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}},"urlObject":{"path":["v1","feminized-types"],"host":["https://secure.bushel44.com/api/v1"],"query":[{"disabled":true,"description":{"content":"<p>Number of records to return per page</p>\n","type":"text/plain"},"key":"per_page","value":"15"}],"variable":[]}},"response":[{"id":"fb1c15ee-e2d3-4659-8248-1db084bb2d92","name":"Feminized Types","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"https://secure.bushel44.com/api/v1/feminized-types","host":["https://secure.bushel44.com/api/v1"],"path":["feminized-types"],"query":[{"key":"per_page","value":"15","description":"Number of records to return per page","type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 01:53:08 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Cache-Control","value":"no-cache, public, must-revalidate, proxy-revalidate"},{"key":"X-RateLimit-Limit","value":"5000"},{"key":"X-RateLimit-Remaining","value":"4995"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 1,\n            \"name\": \"Colloidal silver\"\n        },\n        {\n            \"id\": 2,\n            \"name\": \"STS (Silver Thiosulfate Solution)\"\n        },\n        {\n            \"id\": 3,\n            \"name\": \"Rodelization\"\n        }\n    ],\n    \"links\": {\n        \"first\": \"https://demo.bushel44.com/api/v1/feminized-types?page=1\",\n        \"last\": \"https://demo.bushel44.com/api/v1/feminized-types?page=1\",\n        \"prev\": null,\n        \"next\": null\n    },\n    \"meta\": {\n        \"current_page\": 1,\n        \"from\": 1,\n        \"last_page\": 1,\n        \"links\": [\n            {\n                \"url\": null,\n                \"label\": \"&laquo; Previous\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.bushel44.com/api/v1/feminized-types?page=1\",\n                \"label\": \"1\",\n                \"active\": true\n            },\n            {\n                \"url\": null,\n                \"label\": \"Next &raquo;\",\n                \"active\": false\n            }\n        ],\n        \"path\": \"https://demo.bushel44.com/api/v1/feminized-types\",\n        \"per_page\": 15,\n        \"to\": 3,\n        \"total\": 3\n    },\n    \"status\": \"success\"\n}"}],"_postman_id":"87f77a78-6cae-4dcd-8443-f81e514f4c04"},{"name":"Feminized Type","id":"4f944bf7-b862-4c66-8e2f-6023121bd5b2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/v1/feminized-types/{{feminized_type_id}}","description":"<p><strong>Token Permissions</strong></p>\n<ul>\n<li>view:products</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}},"urlObject":{"path":["v1","feminized-types","{{feminized_type_id}}"],"host":["https://secure.bushel44.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"a2f1fa04-d15f-4166-8485-9c5ed59fe55e","name":"Feminized Type","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/feminized-types/{{feminized_type_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 01:53:18 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Cache-Control","value":"no-cache, public, must-revalidate, proxy-revalidate"},{"key":"X-RateLimit-Limit","value":"5000"},{"key":"X-RateLimit-Remaining","value":"4999"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 2,\n        \"name\": \"STS (Silver Thiosulfate Solution)\"\n    }\n}"}],"_postman_id":"4f944bf7-b862-4c66-8e2f-6023121bd5b2"}],"id":"87465a94-77c4-422a-836d-bca1d87c7ab3","_postman_id":"87465a94-77c4-422a-836d-bca1d87c7ab3","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}}},{"name":"Flavors","item":[{"name":"Flavors","id":"1ff462e4-74e8-43af-9606-f5ffcc5372d0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/v1/flavors","description":"<p><strong>Token Permissions</strong></p>\n<ul>\n<li>view:products</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}},"urlObject":{"path":["v1","flavors"],"host":["https://secure.bushel44.com/api/v1"],"query":[{"disabled":true,"description":{"content":"<p>Number of records to return per page</p>\n","type":"text/plain"},"key":"per_page","value":"15"}],"variable":[]}},"response":[{"id":"568e0a2b-0c17-4dbc-a59c-d26976cb05c4","name":"Flavors","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"https://secure.bushel44.com/api/v1/flavors","host":["https://secure.bushel44.com/api/v1"],"path":["flavors"],"query":[{"key":"per_page","value":"15","description":"Number of records to return per page","type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 01:58:23 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Cache-Control","value":"no-cache, public, must-revalidate, proxy-revalidate"},{"key":"X-RateLimit-Limit","value":"5000"},{"key":"X-RateLimit-Remaining","value":"4997"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 28,\n            \"name\": \"Watermelon\",\n            \"company_id\": null\n        },\n        {\n            \"id\": 20,\n            \"name\": \"Orange\",\n            \"company_id\": null\n        },\n        {\n            \"id\": 21,\n            \"name\": \"Passion Fruit\",\n            \"company_id\": null\n        },\n        {\n            \"id\": 22,\n            \"name\": \"Peach\",\n            \"company_id\": null\n        },\n        {\n            \"id\": 23,\n            \"name\": \"Peppermint\",\n            \"company_id\": null\n        },\n        {\n            \"id\": 24,\n            \"name\": \"Pineapple\",\n            \"company_id\": null\n        },\n        {\n            \"id\": 25,\n            \"name\": \"Raspberry\",\n            \"company_id\": null\n        },\n        {\n            \"id\": 26,\n            \"name\": \"Strawberry\",\n            \"company_id\": null\n        },\n        {\n            \"id\": 27,\n            \"name\": \"Tangerine\",\n            \"company_id\": null\n        },\n        {\n            \"id\": 32,\n            \"name\": \"Straw-Nanna\",\n            \"company_id\": null\n        },\n        {\n            \"id\": 36,\n            \"name\": \"Bubble Gum\",\n            \"company_id\": null\n        },\n        {\n            \"id\": 35,\n            \"name\": \"Marionberry\",\n            \"company_id\": null\n        },\n        {\n            \"id\": 34,\n            \"name\": \"Wild Cherry\",\n            \"company_id\": null\n        },\n        {\n            \"id\": 33,\n            \"name\": \"Tropical Nectar\",\n            \"company_id\": null\n        },\n        {\n            \"id\": 30,\n            \"name\": \"Dreamsicle\",\n            \"company_id\": null\n        }\n    ],\n    \"links\": {\n        \"first\": \"https://demo.bushel44.com/api/v1/flavors?page=1\",\n        \"last\": \"https://demo.bushel44.com/api/v1/flavors?page=3\",\n        \"prev\": null,\n        \"next\": \"https://demo.bushel44.com/api/v1/flavors?page=2\"\n    },\n    \"meta\": {\n        \"current_page\": 1,\n        \"from\": 1,\n        \"last_page\": 3,\n        \"links\": [\n            {\n                \"url\": null,\n                \"label\": \"&laquo; Previous\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.bushel44.com/api/v1/flavors?page=1\",\n                \"label\": \"1\",\n                \"active\": true\n            },\n            {\n                \"url\": \"https://demo.bushel44.com/api/v1/flavors?page=2\",\n                \"label\": \"2\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.bushel44.com/api/v1/flavors?page=3\",\n                \"label\": \"3\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.bushel44.com/api/v1/flavors?page=2\",\n                \"label\": \"Next &raquo;\",\n                \"active\": false\n            }\n        ],\n        \"path\": \"https://demo.bushel44.com/api/v1/flavors\",\n        \"per_page\": 15,\n        \"to\": 15,\n        \"total\": 36\n    },\n    \"status\": \"success\"\n}"}],"_postman_id":"1ff462e4-74e8-43af-9606-f5ffcc5372d0"},{"name":"Flavor","id":"3453223a-0650-4fd5-adec-48c71576d155","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/v1/flavors/{{flavor_id}}","description":"<p><strong>Token Permissions</strong></p>\n<ul>\n<li>view:products</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}},"urlObject":{"path":["v1","flavors","{{flavor_id}}"],"host":["https://secure.bushel44.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"0cb287a3-cd0e-4974-bbd1-6f888c42f28f","name":"Flavor","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/flavors/{{flavor_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 01:58:37 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Cache-Control","value":"no-cache, public, must-revalidate, proxy-revalidate"},{"key":"X-RateLimit-Limit","value":"5000"},{"key":"X-RateLimit-Remaining","value":"4996"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 28,\n        \"name\": \"Watermelon\",\n        \"company_id\": null\n    }\n}"}],"_postman_id":"3453223a-0650-4fd5-adec-48c71576d155"},{"name":"Flavor","id":"cf2f782f-908d-4173-8dbc-c2a2738636e2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"name","value":"my flavor name","description":"<p>optional, not nullable | </p>\n","type":"text","uuid":"74959067-3277-4cef-b960-ce3a565216ae"}]},"url":"https://secure.bushel44.com/api/v1/v1/flavors/{{flavor_id}}","description":"<p><strong>Token Permissions</strong></p>\n<ul>\n<li>update:products</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}},"urlObject":{"path":["v1","flavors","{{flavor_id}}"],"host":["https://secure.bushel44.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"7d108930-d5f2-4148-8009-07f5c6742199","name":"Flavor","originalRequest":{"method":"PATCH","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"name","value":"my flavor name","description":"optional, not nullable | <string>","type":"text","uuid":"74959067-3277-4cef-b960-ce3a565216ae"}]},"url":"https://secure.bushel44.com/api/v1/flavors/{{flavor_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 01:59:01 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Cache-Control","value":"no-cache, public, must-revalidate, proxy-revalidate"},{"key":"X-RateLimit-Limit","value":"5000"},{"key":"X-RateLimit-Remaining","value":"4999"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 37,\n        \"name\": \"my flavor name\",\n        \"company_id\": 4\n    }\n}"}],"_postman_id":"cf2f782f-908d-4173-8dbc-c2a2738636e2"},{"name":"Flavor","id":"e0d755fc-f46b-4a96-89ef-ac3bad35be32","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/v1/flavors/{{flavor_id}}","description":"<p><strong>Token Permissions</strong></p>\n<ul>\n<li>update:products</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}},"urlObject":{"path":["v1","flavors","{{flavor_id}}"],"host":["https://secure.bushel44.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"64c39795-0e7b-483f-a8fd-a3cb034177bf","name":"Flavor","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/flavors/{{flavor_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 01:59:12 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Cache-Control","value":"no-cache, public, must-revalidate, proxy-revalidate"},{"key":"X-RateLimit-Limit","value":"5000"},{"key":"X-RateLimit-Remaining","value":"4998"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Record deleted successfully\"\n}"}],"_postman_id":"e0d755fc-f46b-4a96-89ef-ac3bad35be32"},{"name":"Flavor","id":"0fe3e117-e7ac-46b8-9b5f-bd27fcf4b96c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"name","value":"my flavor name","description":"<p>required | </p>\n","type":"text","uuid":"b7c06049-1d4c-4d0a-a052-7201a1296afb"}]},"url":"https://secure.bushel44.com/api/v1/v1/flavors","description":"<p><strong>Token Permissions</strong></p>\n<ul>\n<li>update:products</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}},"urlObject":{"path":["v1","flavors"],"host":["https://secure.bushel44.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"6afade9f-d765-4cac-bf27-2058c291346c","name":"Flavor","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"name","value":"my flavor name","description":"required | <string>","type":"text","uuid":"b7c06049-1d4c-4d0a-a052-7201a1296afb"}]},"url":"https://secure.bushel44.com/api/v1/flavors"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 01:58:47 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Cache-Control","value":"no-cache, public, must-revalidate, proxy-revalidate"},{"key":"X-RateLimit-Limit","value":"5000"},{"key":"X-RateLimit-Remaining","value":"4995"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 37,\n        \"name\": \"my flavor name\",\n        \"company_id\": 4\n    }\n}"}],"_postman_id":"0fe3e117-e7ac-46b8-9b5f-bd27fcf4b96c"}],"id":"cdd30641-ec24-4920-886a-1b5fcca45c5e","_postman_id":"cdd30641-ec24-4920-886a-1b5fcca45c5e","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}}},{"name":"Flowering Periods","item":[{"name":"Flowering Periods","id":"2e580c34-589e-4d96-9d50-45ce3e74e36f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/v1/flowering-periods","description":"<p><strong>Token Permissions</strong></p>\n<ul>\n<li>view:products</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}},"urlObject":{"path":["v1","flowering-periods"],"host":["https://secure.bushel44.com/api/v1"],"query":[{"disabled":true,"description":{"content":"<p>Number of records to return per page</p>\n","type":"text/plain"},"key":"per_page","value":"15"}],"variable":[]}},"response":[{"id":"73cb0336-fdcf-49b2-98cf-47b7029170da","name":"Flowering Periods","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"https://secure.bushel44.com/api/v1/flowering-periods","host":["https://secure.bushel44.com/api/v1"],"path":["flowering-periods"],"query":[{"key":"per_page","value":"15","description":"Number of records to return per page","type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 02:02:33 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Cache-Control","value":"no-cache, public, must-revalidate, proxy-revalidate"},{"key":"X-RateLimit-Limit","value":"5000"},{"key":"X-RateLimit-Remaining","value":"4998"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 1,\n            \"name\": \"60 days\",\n            \"company_id\": null\n        },\n        {\n            \"id\": 2,\n            \"name\": \"Auto\",\n            \"company_id\": null\n        },\n        {\n            \"id\": 3,\n            \"name\": \"Early Flowering\",\n            \"company_id\": null\n        }\n    ],\n    \"links\": {\n        \"first\": \"https://demo.bushel44.com/api/v1/flowering-periods?page=1\",\n        \"last\": \"https://demo.bushel44.com/api/v1/flowering-periods?page=1\",\n        \"prev\": null,\n        \"next\": null\n    },\n    \"meta\": {\n        \"current_page\": 1,\n        \"from\": 1,\n        \"last_page\": 1,\n        \"links\": [\n            {\n                \"url\": null,\n                \"label\": \"&laquo; Previous\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.bushel44.com/api/v1/flowering-periods?page=1\",\n                \"label\": \"1\",\n                \"active\": true\n            },\n            {\n                \"url\": null,\n                \"label\": \"Next &raquo;\",\n                \"active\": false\n            }\n        ],\n        \"path\": \"https://demo.bushel44.com/api/v1/flowering-periods\",\n        \"per_page\": 15,\n        \"to\": 3,\n        \"total\": 3\n    },\n    \"status\": \"success\"\n}"}],"_postman_id":"2e580c34-589e-4d96-9d50-45ce3e74e36f"},{"name":"Flowering Period","id":"b6373bd5-3cdd-4730-a7fb-43c3f60a2923","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/v1/flowering-periods/{{flowering_period_id}}","description":"<p><strong>Token Permissions</strong></p>\n<ul>\n<li>view:products</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}},"urlObject":{"path":["v1","flowering-periods","{{flowering_period_id}}"],"host":["https://secure.bushel44.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"6b804ee1-be39-46ff-9efc-df7b61e35f0e","name":"Flowering Period","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/flowering-periods/{{flowering_period_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 02:03:26 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Cache-Control","value":"no-cache, public, must-revalidate, proxy-revalidate"},{"key":"X-RateLimit-Limit","value":"5000"},{"key":"X-RateLimit-Remaining","value":"4998"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 4,\n        \"name\": \"my flowering name\",\n        \"company_id\": 4\n    }\n}"}],"_postman_id":"b6373bd5-3cdd-4730-a7fb-43c3f60a2923"},{"name":"Flowering Period","id":"ef46edbe-988c-46f8-af75-3b16f5b1cbe9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"name","value":"my flowering name","description":"<p>optional, not nullable | </p>\n","type":"text","uuid":"74959067-3277-4cef-b960-ce3a565216ae"}]},"url":"https://secure.bushel44.com/api/v1/v1/flowering-periods/{{flowering_period_id}}","description":"<p><strong>Token Permissions</strong></p>\n<ul>\n<li>update:products</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}},"urlObject":{"path":["v1","flowering-periods","{{flowering_period_id}}"],"host":["https://secure.bushel44.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"08462279-8157-4954-8729-444d223ab300","name":"Flowering Period","originalRequest":{"method":"PATCH","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"name","value":"my flowering name","description":"optional, not nullable | <string>","type":"text","uuid":"74959067-3277-4cef-b960-ce3a565216ae"}]},"url":"https://secure.bushel44.com/api/v1/flowering-periods/{{flowering_period_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 02:03:43 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Cache-Control","value":"no-cache, public, must-revalidate, proxy-revalidate"},{"key":"X-RateLimit-Limit","value":"5000"},{"key":"X-RateLimit-Remaining","value":"4997"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 4,\n        \"name\": \"my flowering name\",\n        \"company_id\": 4\n    }\n}"}],"_postman_id":"ef46edbe-988c-46f8-af75-3b16f5b1cbe9"},{"name":"Flowering Period","id":"648e2c94-48b9-4e54-b2e9-8d1a4c3db051","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/v1/flowering-periods/{{flowering_period_id}}","description":"<p><strong>Token Permissions</strong></p>\n<ul>\n<li>update:products</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}},"urlObject":{"path":["v1","flowering-periods","{{flowering_period_id}}"],"host":["https://secure.bushel44.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"c41216bf-2270-4b28-89ff-c7d04dc9f578","name":"Flowering Period","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/flowering-periods/{{flowering_period_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 02:03:59 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Cache-Control","value":"no-cache, public, must-revalidate, proxy-revalidate"},{"key":"X-RateLimit-Limit","value":"5000"},{"key":"X-RateLimit-Remaining","value":"4996"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Record deleted successfully\"\n}"}],"_postman_id":"648e2c94-48b9-4e54-b2e9-8d1a4c3db051"},{"name":"Flowering Period","id":"de0b573c-6a14-4080-8dc0-9ae9b76458de","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"name","value":"my flowering name","description":"<p>required | </p>\n","type":"text","uuid":"b7c06049-1d4c-4d0a-a052-7201a1296afb"}]},"url":"https://secure.bushel44.com/api/v1/v1/flowering-periods","description":"<p><strong>Token Permissions</strong></p>\n<ul>\n<li>update:products</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}},"urlObject":{"path":["v1","flowering-periods"],"host":["https://secure.bushel44.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"18fda9f6-7af6-40fb-aa3d-adc8daca7428","name":"Flowering Period","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"name","value":"my flowering name","description":"required | <string>","type":"text","uuid":"b7c06049-1d4c-4d0a-a052-7201a1296afb"}]},"url":"https://secure.bushel44.com/api/v1/flowering-periods"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 02:03:11 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Cache-Control","value":"no-cache, public, must-revalidate, proxy-revalidate"},{"key":"X-RateLimit-Limit","value":"5000"},{"key":"X-RateLimit-Remaining","value":"4999"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 4,\n        \"name\": \"my flowering name\",\n        \"company_id\": 4\n    }\n}"}],"_postman_id":"de0b573c-6a14-4080-8dc0-9ae9b76458de"}],"id":"787af1c5-5c71-4491-88c8-7dd8e998ce08","_postman_id":"787af1c5-5c71-4491-88c8-7dd8e998ce08","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}}},{"name":"Government Agencies","item":[{"name":"Government Agencies","id":"617af3b8-5249-42c7-8b2b-a255f444c9b9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/v1/government-agencies","description":"<p><strong>Token Permissions</strong></p>\n<ul>\n<li>view:products</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}},"urlObject":{"path":["v1","government-agencies"],"host":["https://secure.bushel44.com/api/v1"],"query":[{"disabled":true,"description":{"content":"<p>Number of records to return per page</p>\n","type":"text/plain"},"key":"per_page","value":"15"}],"variable":[]}},"response":[{"id":"5bfe97bf-aa91-48cb-883c-6ca6ad0ef4c3","name":"Government Agencies","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"https://secure.bushel44.com/api/v1/government-agencies","host":["https://secure.bushel44.com/api/v1"],"path":["government-agencies"],"query":[{"key":"per_page","value":"15","description":"Number of records to return per page","type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 01:53:34 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Cache-Control","value":"no-cache, public, must-revalidate, proxy-revalidate"},{"key":"X-RateLimit-Limit","value":"5000"},{"key":"X-RateLimit-Remaining","value":"4998"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 1,\n            \"name\": \"USDA\"\n        },\n        {\n            \"id\": 2,\n            \"name\": \"PPVA\"\n        },\n        {\n            \"id\": 3,\n            \"name\": \"CPVO\"\n        }\n    ],\n    \"links\": {\n        \"first\": \"https://demo.bushel44.com/api/v1/government-agencies?page=1\",\n        \"last\": \"https://demo.bushel44.com/api/v1/government-agencies?page=1\",\n        \"prev\": null,\n        \"next\": null\n    },\n    \"meta\": {\n        \"current_page\": 1,\n        \"from\": 1,\n        \"last_page\": 1,\n        \"links\": [\n            {\n                \"url\": null,\n                \"label\": \"&laquo; Previous\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.bushel44.com/api/v1/government-agencies?page=1\",\n                \"label\": \"1\",\n                \"active\": true\n            },\n            {\n                \"url\": null,\n                \"label\": \"Next &raquo;\",\n                \"active\": false\n            }\n        ],\n        \"path\": \"https://demo.bushel44.com/api/v1/government-agencies\",\n        \"per_page\": 15,\n        \"to\": 3,\n        \"total\": 3\n    },\n    \"status\": \"success\"\n}"}],"_postman_id":"617af3b8-5249-42c7-8b2b-a255f444c9b9"},{"name":"Government Agency","id":"acccc6b9-8907-47a2-ba81-f98a159373fa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/v1/government-agencies/{{government_agency_id}}","description":"<p><strong>Token Permissions</strong></p>\n<ul>\n<li>view:products</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}},"urlObject":{"path":["v1","government-agencies","{{government_agency_id}}"],"host":["https://secure.bushel44.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"8ce567a7-389e-41ea-b0b1-24a1638a1078","name":"Government Agency","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/government-agencies/{{government_agency_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 01:53:47 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Cache-Control","value":"no-cache, public, must-revalidate, proxy-revalidate"},{"key":"X-RateLimit-Limit","value":"5000"},{"key":"X-RateLimit-Remaining","value":"4997"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 2,\n        \"name\": \"PPVA\"\n    }\n}"}],"_postman_id":"acccc6b9-8907-47a2-ba81-f98a159373fa"}],"id":"83dc9e03-0c20-4fbe-adeb-c2d862470efa","_postman_id":"83dc9e03-0c20-4fbe-adeb-c2d862470efa","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}}},{"name":"Grow Environments","item":[{"name":"Grow Environments","id":"90abbdf0-8a0c-4dfb-9dd5-c596b9e28360","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/v1/grow-environments?per_page=15","description":"<p><strong>Token Permissions</strong></p>\n<ul>\n<li>view:products</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}},"urlObject":{"path":["v1","grow-environments"],"host":["https://secure.bushel44.com/api/v1"],"query":[{"description":{"content":"<p>Number of records to return per page</p>\n","type":"text/plain"},"key":"per_page","value":"15"}],"variable":[]}},"response":[{"id":"ba9a3fce-af24-46fb-a3c8-9bd675183a44","name":"Grow Environments","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"https://secure.bushel44.com/api/v1/grow-environments?per_page=15","host":["https://secure.bushel44.com/api/v1"],"path":["grow-environments"],"query":[{"key":"per_page","value":"15","description":"Number of records to return per page"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 01:49:13 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Cache-Control","value":"no-cache, public, must-revalidate, proxy-revalidate"},{"key":"X-RateLimit-Limit","value":"5000"},{"key":"X-RateLimit-Remaining","value":"4996"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 1,\n            \"name\": \"Indoor\"\n        },\n        {\n            \"id\": 2,\n            \"name\": \"Hybrid Indoor\"\n        },\n        {\n            \"id\": 3,\n            \"name\": \"Greenhouse\"\n        },\n        {\n            \"id\": 4,\n            \"name\": \"Light Dep. Greenhouse\"\n        },\n        {\n            \"id\": 5,\n            \"name\": \"Outdoor\"\n        },\n        {\n            \"id\": 6,\n            \"name\": \"Outdoor / Sun Grown\"\n        },\n        {\n            \"id\": 7,\n            \"name\": \"Light Assisted Greenhouse\"\n        }\n    ],\n    \"links\": {\n        \"first\": \"https://demo.bushel44.com/api/v1/grow-environments?page=1\",\n        \"last\": \"https://demo.bushel44.com/api/v1/grow-environments?page=1\",\n        \"prev\": null,\n        \"next\": null\n    },\n    \"meta\": {\n        \"current_page\": 1,\n        \"from\": 1,\n        \"last_page\": 1,\n        \"links\": [\n            {\n                \"url\": null,\n                \"label\": \"&laquo; Previous\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.bushel44.com/api/v1/grow-environments?page=1\",\n                \"label\": \"1\",\n                \"active\": true\n            },\n            {\n                \"url\": null,\n                \"label\": \"Next &raquo;\",\n                \"active\": false\n            }\n        ],\n        \"path\": \"https://demo.bushel44.com/api/v1/grow-environments\",\n        \"per_page\": 15,\n        \"to\": 7,\n        \"total\": 7\n    },\n    \"status\": \"success\"\n}"}],"_postman_id":"90abbdf0-8a0c-4dfb-9dd5-c596b9e28360"},{"name":"Grow Environment","id":"c1e11eef-bb62-4510-a577-87cb89454ca9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/v1/grow-environments/{{grow_environment_id}}","description":"<p><strong>Token Permissions</strong></p>\n<ul>\n<li>view:products</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}},"urlObject":{"path":["v1","grow-environments","{{grow_environment_id}}"],"host":["https://secure.bushel44.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"5824deea-9cb4-45f0-b592-4e8cb6812c41","name":"Grow Environment","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/grow-environments/{{grow_environment_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 01:49:21 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Cache-Control","value":"no-cache, public, must-revalidate, proxy-revalidate"},{"key":"X-RateLimit-Limit","value":"5000"},{"key":"X-RateLimit-Remaining","value":"4995"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 2,\n        \"name\": \"Hybrid Indoor\"\n    }\n}"}],"_postman_id":"c1e11eef-bb62-4510-a577-87cb89454ca9"}],"id":"a17a4ce3-91da-4462-bb5c-b1a7ddedabea","_postman_id":"a17a4ce3-91da-4462-bb5c-b1a7ddedabea","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}}},{"name":"Grow Mediums","item":[{"name":"Grow Mediums","id":"5a358322-565d-48b1-b65b-ebac7e6ad264","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/v1/grow-mediums?per_page=15","description":"<p><strong>Token Permissions</strong></p>\n<ul>\n<li>view:products</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}},"urlObject":{"path":["v1","grow-mediums"],"host":["https://secure.bushel44.com/api/v1"],"query":[{"description":{"content":"<p>Number of records to return per page</p>\n","type":"text/plain"},"key":"per_page","value":"15"}],"variable":[]}},"response":[{"id":"c1754804-c29b-4d1f-96a8-2cdcd5894fb8","name":"Grow Mediums","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"https://secure.bushel44.com/api/v1/grow-mediums?per_page=15","host":["https://secure.bushel44.com/api/v1"],"path":["grow-mediums"],"query":[{"key":"per_page","value":"15","description":"Number of records to return per page"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 01:49:35 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Cache-Control","value":"no-cache, public, must-revalidate, proxy-revalidate"},{"key":"X-RateLimit-Limit","value":"5000"},{"key":"X-RateLimit-Remaining","value":"4994"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 1,\n            \"name\": \"Medium\"\n        },\n        {\n            \"id\": 2,\n            \"name\": \"Black Gold Soil\"\n        },\n        {\n            \"id\": 3,\n            \"name\": \"Cocoa\"\n        },\n        {\n            \"id\": 4,\n            \"name\": \"Soil\"\n        },\n        {\n            \"id\": 5,\n            \"name\": \"Soilles Medium\"\n        },\n        {\n            \"id\": 6,\n            \"name\": \"Hydro\"\n        },\n        {\n            \"id\": 7,\n            \"name\": \"Organic Soil\"\n        },\n        {\n            \"id\": 8,\n            \"name\": \"Living Organic\"\n        },\n        {\n            \"id\": 9,\n            \"name\": \"Living Soil Organic\"\n        },\n        {\n            \"id\": 10,\n            \"name\": \"Grodan Cubes\"\n        },\n        {\n            \"id\": 11,\n            \"name\": \"Craft Cocoa Hybrid Hydropronic\"\n        },\n        {\n            \"id\": 12,\n            \"name\": \"Hybrid = Hydropronic & Organic\"\n        },\n        {\n            \"id\": 13,\n            \"name\": \"Grodan\"\n        },\n        {\n            \"id\": 14,\n            \"name\": \"DNA Cocoa / Cork Blend\"\n        },\n        {\n            \"id\": 15,\n            \"name\": \"Soil & Cocoa\"\n        }\n    ],\n    \"links\": {\n        \"first\": \"https://demo.bushel44.com/api/v1/grow-mediums?page=1\",\n        \"last\": \"https://demo.bushel44.com/api/v1/grow-mediums?page=2\",\n        \"prev\": null,\n        \"next\": \"https://demo.bushel44.com/api/v1/grow-mediums?page=2\"\n    },\n    \"meta\": {\n        \"current_page\": 1,\n        \"from\": 1,\n        \"last_page\": 2,\n        \"links\": [\n            {\n                \"url\": null,\n                \"label\": \"&laquo; Previous\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.bushel44.com/api/v1/grow-mediums?page=1\",\n                \"label\": \"1\",\n                \"active\": true\n            },\n            {\n                \"url\": \"https://demo.bushel44.com/api/v1/grow-mediums?page=2\",\n                \"label\": \"2\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.bushel44.com/api/v1/grow-mediums?page=2\",\n                \"label\": \"Next &raquo;\",\n                \"active\": false\n            }\n        ],\n        \"path\": \"https://demo.bushel44.com/api/v1/grow-mediums\",\n        \"per_page\": 15,\n        \"to\": 15,\n        \"total\": 16\n    },\n    \"status\": \"success\"\n}"}],"_postman_id":"5a358322-565d-48b1-b65b-ebac7e6ad264"},{"name":"Grow Medium","id":"49ba5de4-38c0-459a-8105-1dec83fb6517","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/v1/grow-mediums/{{grow-medium_id}}","description":"<p><strong>Token Permissions</strong></p>\n<ul>\n<li>view:products</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}},"urlObject":{"path":["v1","grow-mediums","{{grow-medium_id}}"],"host":["https://secure.bushel44.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"5152921f-cf5d-4da9-bba1-6090538ba0f6","name":"Grow Medium","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/grow-mediums/{{grow-medium_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 01:49:43 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Cache-Control","value":"no-cache, public, must-revalidate, proxy-revalidate"},{"key":"X-RateLimit-Limit","value":"5000"},{"key":"X-RateLimit-Remaining","value":"4999"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 2,\n        \"name\": \"Black Gold Soil\"\n    }\n}"}],"_postman_id":"49ba5de4-38c0-459a-8105-1dec83fb6517"}],"id":"c5452c6a-1061-44d2-b61a-0311108b0c8e","_postman_id":"c5452c6a-1061-44d2-b61a-0311108b0c8e","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}}},{"name":"Infusion Methods","item":[{"name":"Infusion Methods","id":"596340fa-d5a4-4ed3-8336-11d394751c97","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/v1/infusion-methods","description":"<p><strong>Token Permissions</strong></p>\n<ul>\n<li>view:products</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}},"urlObject":{"path":["v1","infusion-methods"],"host":["https://secure.bushel44.com/api/v1"],"query":[{"disabled":true,"description":{"content":"<p>Number of records to return per page</p>\n","type":"text/plain"},"key":"per_page","value":"15"}],"variable":[]}},"response":[{"id":"a6c2c0c3-88d9-4d85-9d1b-8acf0b2dd4fc","name":"Infusion Methods","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"https://secure.bushel44.com/api/v1/infusion-methods","host":["https://secure.bushel44.com/api/v1"],"path":["infusion-methods"],"query":[{"key":"per_page","value":"15","description":"Number of records to return per page","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 01:46:35 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Cache-Control","value":"no-cache, public, must-revalidate, proxy-revalidate"},{"key":"X-RateLimit-Limit","value":"5000"},{"key":"X-RateLimit-Remaining","value":"4999"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"infusion_methods\": [\n        {\n            \"id\": 1,\n            \"name\": \"Oil\"\n        },\n        {\n            \"id\": 2,\n            \"name\": \"Butter\"\n        },\n        {\n            \"id\": 3,\n            \"name\": \"Distillate\"\n        },\n        {\n            \"id\": 4,\n            \"name\": \"Full Spectrum Oil\"\n        }\n    ],\n    \"links\": {\n        \"first\": \"https://demo.bushel44.com/api/v1/infusion-methods?page=1\",\n        \"last\": \"https://demo.bushel44.com/api/v1/infusion-methods?page=1\",\n        \"prev\": null,\n        \"next\": null\n    },\n    \"meta\": {\n        \"current_page\": 1,\n        \"from\": 1,\n        \"last_page\": 1,\n        \"links\": [\n            {\n                \"url\": null,\n                \"label\": \"&laquo; Previous\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.bushel44.com/api/v1/infusion-methods?page=1\",\n                \"label\": \"1\",\n                \"active\": true\n            },\n            {\n                \"url\": null,\n                \"label\": \"Next &raquo;\",\n                \"active\": false\n            }\n        ],\n        \"path\": \"https://demo.bushel44.com/api/v1/infusion-methods\",\n        \"per_page\": 15,\n        \"to\": 4,\n        \"total\": 4\n    }\n}"}],"_postman_id":"596340fa-d5a4-4ed3-8336-11d394751c97"},{"name":"Infusion Method","id":"d710eab9-953f-4494-9956-de05b5959bfb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/v1/infusion-methods/{{infusion_method_id}}","description":"<p><strong>Token Permissions</strong></p>\n<ul>\n<li>view:products</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}},"urlObject":{"path":["v1","infusion-methods","{{infusion_method_id}}"],"host":["https://secure.bushel44.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"36a688da-31bb-4a08-9b70-c965c0780cef","name":"Infusion Method","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/infusion-methods/{{infusion_method_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 01:46:43 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Cache-Control","value":"no-cache, public, must-revalidate, proxy-revalidate"},{"key":"X-RateLimit-Limit","value":"5000"},{"key":"X-RateLimit-Remaining","value":"4998"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 2,\n        \"name\": \"Butter\"\n    }\n}"}],"_postman_id":"d710eab9-953f-4494-9956-de05b5959bfb"}],"id":"23366a68-08e6-4505-95b5-d9fe0a84d1bc","_postman_id":"23366a68-08e6-4505-95b5-d9fe0a84d1bc","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}}},{"name":"Leads","item":[{"name":"Buyer Leads","id":"54a08927-6195-4d67-af77-f491c479cd76","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer  ","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/v1/buyer-leads","description":"<p><strong>Token Permissions</strong></p>\n<ul>\n<li>view:buyerleads</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}},"urlObject":{"path":["v1","buyer-leads"],"host":["https://secure.bushel44.com/api/v1"],"query":[{"disabled":true,"description":{"content":"<p>include notes</p>\n","type":"text/plain"},"key":"with_notes","value":"true"},{"disabled":true,"description":{"content":"<p>Number of records to return per page</p>\n","type":"text/plain"},"key":"per_page","value":"15"},{"disabled":true,"description":{"content":"<p>filter by ignored. All returned if no key present</p>\n","type":"text/plain"},"key":"ignore","value":"true"},{"disabled":true,"description":{"content":"<p>Filter by ids</p>\n","type":"text/plain"},"key":"ids[]","value":"3"},{"disabled":true,"description":{"content":"<p>filter by created after query in UTC</p>\n","type":"text/plain"},"key":"created_at_from","value":"2025-04-20T22:04:50Z"},{"disabled":true,"description":{"content":"<p>filter by created before query in UTC</p>\n","type":"text/plain"},"key":"created_at_to","value":"2025-04-22T22:04:50Z"},{"disabled":true,"description":{"content":"<p>filter by updated after query in UTC</p>\n","type":"text/plain"},"key":"updated_at_from","value":"2025-04-20T22:04:50Z"},{"disabled":true,"description":{"content":"<p>filter by updated before query in UTC</p>\n","type":"text/plain"},"key":"updated_at_to","value":"2025-04-22T22:04:50Z"}],"variable":[]}},"response":[],"_postman_id":"54a08927-6195-4d67-af77-f491c479cd76"},{"name":"Buyer Lead","id":"5f0689a8-2875-44ae-bea1-f6ab00740d49","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer  ","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/v1/buyer-leads/{{id}}","description":"<p><strong>Token Permissions</strong></p>\n<ul>\n<li>view:buyerleads</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}},"urlObject":{"path":["v1","buyer-leads","{{id}}"],"host":["https://secure.bushel44.com/api/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"5f0689a8-2875-44ae-bea1-f6ab00740d49"}],"id":"26074aa6-bd3d-43f7-b65c-561fc1d58bf9","_postman_id":"26074aa6-bd3d-43f7-b65c-561fc1d58bf9","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}}},{"name":"Net Terms","item":[{"name":"Net Terms","id":"2f3c7018-d791-4508-bbe6-5ba6d2d02eed","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer  ","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/v1/net-terms","description":"<p><strong>Token Permissions</strong></p>\n<ul>\n<li>view:netterms</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}},"urlObject":{"path":["v1","net-terms"],"host":["https://secure.bushel44.com/api/v1"],"query":[{"disabled":true,"description":{"content":"<p>Number of records to return per page</p>\n","type":"text/plain"},"key":"per_page","value":"15"}],"variable":[]}},"response":[],"_postman_id":"2f3c7018-d791-4508-bbe6-5ba6d2d02eed"},{"name":"Net Term","id":"6e45604c-39fe-4952-a706-12831ad15c2c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer  ","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/v1/net-terms/2","description":"<p><strong>Token Permissions</strong></p>\n<ul>\n<li>view:netterms</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}},"urlObject":{"path":["v1","net-terms","2"],"host":["https://secure.bushel44.com/api/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"6e45604c-39fe-4952-a706-12831ad15c2c"}],"id":"ff68e55f-c295-409d-ae74-f7598f3e1beb","_postman_id":"ff68e55f-c295-409d-ae74-f7598f3e1beb","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}}},{"name":"Operations","item":[{"name":"Operations","id":"80c329cc-f71c-409d-a7f8-692dbd26353e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/v1/operations?per_page=15","description":"<p><strong>Token Permissions</strong></p>\n<ul>\n<li>view:company</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}},"urlObject":{"path":["v1","operations"],"host":["https://secure.bushel44.com/api/v1"],"query":[{"description":{"content":"<p>Number of records to return per page</p>\n","type":"text/plain"},"key":"per_page","value":"15"}],"variable":[]}},"response":[{"id":"06d4d16b-1b7e-43ae-aa79-4e97429c3604","name":"Operations","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"https://secure.bushel44.com/api/v1/operations?per_page=15","host":["https://secure.bushel44.com/api/v1"],"path":["operations"],"query":[{"key":"per_page","value":"15","description":"Number of records to return per page"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 01:48:22 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Cache-Control","value":"no-cache, public, must-revalidate, proxy-revalidate"},{"key":"X-RateLimit-Limit","value":"5000"},{"key":"X-RateLimit-Remaining","value":"4995"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 3,\n            \"name\": \"High Hopes Farm\"\n        },\n        {\n            \"id\": 4,\n            \"name\": \"Apex Extractions\"\n        },\n        {\n            \"id\": 5,\n            \"name\": \"Hippy Trip Creative Creations\"\n        },\n        {\n            \"id\": 7,\n            \"name\": \"Fern Ridge Farm\"\n        },\n        {\n            \"id\": 14,\n            \"name\": \"Test Operation for Bushel44\"\n        }\n    ],\n    \"links\": {\n        \"first\": \"https://demo.bushel44.com/api/v1/operations?page=1\",\n        \"last\": \"https://demo.bushel44.com/api/v1/operations?page=1\",\n        \"prev\": null,\n        \"next\": null\n    },\n    \"meta\": {\n        \"current_page\": 1,\n        \"from\": 1,\n        \"last_page\": 1,\n        \"links\": [\n            {\n                \"url\": null,\n                \"label\": \"&laquo; Previous\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.bushel44.com/api/v1/operations?page=1\",\n                \"label\": \"1\",\n                \"active\": true\n            },\n            {\n                \"url\": null,\n                \"label\": \"Next &raquo;\",\n                \"active\": false\n            }\n        ],\n        \"path\": \"https://demo.bushel44.com/api/v1/operations\",\n        \"per_page\": 15,\n        \"to\": 5,\n        \"total\": 5\n    },\n    \"status\": \"success\"\n}"}],"_postman_id":"80c329cc-f71c-409d-a7f8-692dbd26353e"},{"name":"Operations","id":"63f42134-a601-4b12-a968-c7cde639cf6b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/v1/operations/{{operation_id}}","description":"<p><strong>Token Permissions</strong></p>\n<ul>\n<li>view:company</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}},"urlObject":{"path":["v1","operations","{{operation_id}}"],"host":["https://secure.bushel44.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"727290fc-d33a-48c6-a9a5-d1f694a992d7","name":"Operations","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/operations/{{operation_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 01:48:43 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Cache-Control","value":"no-cache, public, must-revalidate, proxy-revalidate"},{"key":"X-RateLimit-Limit","value":"5000"},{"key":"X-RateLimit-Remaining","value":"4999"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 3,\n        \"name\": \"High Hopes Farm\"\n    }\n}"}],"_postman_id":"63f42134-a601-4b12-a968-c7cde639cf6b"}],"id":"2206bac1-d6a1-44d4-bb87-b08c12780ea4","_postman_id":"2206bac1-d6a1-44d4-bb87-b08c12780ea4","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}}},{"name":"Package Sizes","item":[{"name":"Package Sizes","id":"b1b4a192-b198-4ea9-ab1c-c3cab11a1d1e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/v1/package-sizes","description":"<p><strong>Token Permissions</strong></p>\n<ul>\n<li>view:products</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}},"urlObject":{"path":["v1","package-sizes"],"host":["https://secure.bushel44.com/api/v1"],"query":[{"disabled":true,"description":{"content":"<p>Number of records to return per page</p>\n","type":"text/plain"},"key":"per_page","value":"15"}],"variable":[]}},"response":[{"id":"30f0bba2-214a-40a7-be1f-1c960c653e31","name":"Package Sizes","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"https://secure.bushel44.com/api/v1/package-sizes","host":["https://secure.bushel44.com/api/v1"],"path":["package-sizes"],"query":[{"key":"per_page","value":"15","description":"Number of records to return per page","type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 01:50:48 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Cache-Control","value":"no-cache, public, must-revalidate, proxy-revalidate"},{"key":"X-RateLimit-Limit","value":"5000"},{"key":"X-RateLimit-Remaining","value":"4994"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 1,\n            \"name\": \"Gram\"\n        },\n        {\n            \"id\": 2,\n            \"name\": \"2 Gram\"\n        },\n        {\n            \"id\": 3,\n            \"name\": \"1/8 Oz\"\n        },\n        {\n            \"id\": 4,\n            \"name\": \"1/4 Oz\"\n        },\n        {\n            \"id\": 5,\n            \"name\": \"1/2 Oz\"\n        },\n        {\n            \"id\": 6,\n            \"name\": \"3/4 Oz\"\n        },\n        {\n            \"id\": 7,\n            \"name\": \"1 Oz\"\n        },\n        {\n            \"id\": 8,\n            \"name\": \"1/4 Lb\"\n        },\n        {\n            \"id\": 9,\n            \"name\": \"1/2 Lb\"\n        },\n        {\n            \"id\": 10,\n            \"name\": \"3/4 Lb\"\n        },\n        {\n            \"id\": 11,\n            \"name\": \"1 Lb\"\n        },\n        {\n            \"id\": 12,\n            \"name\": \"Per Seed\"\n        },\n        {\n            \"id\": 13,\n            \"name\": \"Per Gram\"\n        },\n        {\n            \"id\": 14,\n            \"name\": \"Per Oz\"\n        },\n        {\n            \"id\": 15,\n            \"name\": \"Per Lb\"\n        }\n    ],\n    \"links\": {\n        \"first\": \"https://demo.bushel44.com/api/v1/package-sizes?page=1\",\n        \"last\": \"https://demo.bushel44.com/api/v1/package-sizes?page=1\",\n        \"prev\": null,\n        \"next\": null\n    },\n    \"meta\": {\n        \"current_page\": 1,\n        \"from\": 1,\n        \"last_page\": 1,\n        \"links\": [\n            {\n                \"url\": null,\n                \"label\": \"&laquo; Previous\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.bushel44.com/api/v1/package-sizes?page=1\",\n                \"label\": \"1\",\n                \"active\": true\n            },\n            {\n                \"url\": null,\n                \"label\": \"Next &raquo;\",\n                \"active\": false\n            }\n        ],\n        \"path\": \"https://demo.bushel44.com/api/v1/package-sizes\",\n        \"per_page\": 15,\n        \"to\": 15,\n        \"total\": 15\n    },\n    \"status\": \"success\"\n}"}],"_postman_id":"b1b4a192-b198-4ea9-ab1c-c3cab11a1d1e"},{"name":"Package Size","id":"4f3d9fb8-b60e-49c5-add4-104b4ee4226a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/v1/package-sizes/{{unit_measurement_id}}","description":"<p><strong>Token Permissions</strong></p>\n<ul>\n<li>view:products</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}},"urlObject":{"path":["v1","package-sizes","{{unit_measurement_id}}"],"host":["https://secure.bushel44.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"b5446320-b572-4780-ad16-b78e9da8bcdf","name":"Package Size","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/package-sizes/{{unit_measurement_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 01:50:58 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Cache-Control","value":"no-cache, public, must-revalidate, proxy-revalidate"},{"key":"X-RateLimit-Limit","value":"5000"},{"key":"X-RateLimit-Remaining","value":"4999"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 2,\n        \"name\": \"2 Gram\"\n    }\n}"}],"_postman_id":"4f3d9fb8-b60e-49c5-add4-104b4ee4226a"}],"id":"612e634b-af62-4012-8e1d-a167df120447","_postman_id":"612e634b-af62-4012-8e1d-a167df120447","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}}},{"name":"Products","item":[{"name":"Images","item":[{"name":"Image","id":"b1ff3da8-ecf4-48e3-a145-3b22d9109301","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"image","type":"file","uuid":"26b61182-5c84-4755-a03d-fcbe74d8c2b9","value":null}]},"url":"https://secure.bushel44.com/api/v1/v1/products/2/images","description":"<p><strong>Token Permissions</strong></p>\n<ul>\n<li>update:batches</li>\n</ul>\n<p><strong>Notes</strong></p>\n<p>Images will display in the product in the order in which they are uploaded</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}},"urlObject":{"path":["v1","products","2","images"],"host":["https://secure.bushel44.com/api/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"b1ff3da8-ecf4-48e3-a145-3b22d9109301"},{"name":"Image","id":"b988f8e3-4dbb-4a03-b804-f959ea55c3a0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://secure.bushel44.com/api/v1/v1/products/2/images/{{product_image_id}}","description":"<p><strong>Token Permissions</strong></p>\n<ul>\n<li>update:batches</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}},"urlObject":{"path":["v1","products","2","images","{{product_image_id}}"],"host":["https://secure.bushel44.com/api/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"b988f8e3-4dbb-4a03-b804-f959ea55c3a0"}],"id":"765779ca-64af-43ac-8a5f-1943ef628286","_postman_id":"765779ca-64af-43ac-8a5f-1943ef628286","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}}},{"name":"Products","id":"9cce4f4e-b820-4fc7-8344-bef1992ac481","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer  ","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/v1/products?per_page=2&has_available_batches=false&include_sold_out_batches=false","description":"<p><strong>Required Filters</strong></p>\n<p><strong>updated_at_from</strong> is a required filter.</p>\n<p>The first time you call this endpoint you should call it from the date the company first joined, but subsequent calls should be restricted to only search for records updated since the last call if possible.</p>\n<p><strong>Token Permissions</strong></p>\n<ul>\n<li>view:products</li>\n</ul>\n<p><strong>Note on building an inventory sync with external system</strong></p>\n<p>Do not rely on the with_batches option for building an inventory sync. An update to a batch does not update the updated_at field on a product and so your inventory sync won't work. To build an inventory sync, call both the /products and /batches endpoints separately with an updated_at_from field set at the time of your last call.</p>\n<p><strong>Example Daily Inventory Sync getting data that changed in last 24 hours</strong></p>\n<p>day 1  (2025-04-21)</p>\n<p>/products?updated_at_from=2025-04-20T22:00:00Z</p>\n<p>/batches?updated_at_from=2025-04-20T22:00:00Z</p>\n<p>day 2  (2025-04-22)</p>\n<p>/products?updated_at_from=2025-04-21T22:00:00Z</p>\n<p>/batches?updated_at_from=2025-04-21T22:00:00Z</p>\n<p>day 3  (2025-04-23)</p>\n<p>/products?updated_at_from=2025-04-22T22:00:00Z</p>\n<p>/batches?updated_at_from=2025-04-22T22:00:00Z</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}},"urlObject":{"path":["v1","products"],"host":["https://secure.bushel44.com/api/v1"],"query":[{"disabled":true,"description":{"content":"<p>include batches. IMPORTANT. Do not rely on this for building an inventory sync. An update to a batch does not update the updated_at field on a product and so your inventory sync won't work. To build an inventory sync, use both the product and the batches endpoints</p>\n","type":"text/plain"},"key":"with_batches","value":"false"},{"disabled":true,"description":{"content":"<p>filter by archived products. All returned if no key present</p>\n","type":"text/plain"},"key":"archived","value":"false"},{"disabled":true,"description":{"content":"<p>filter by ids</p>\n","type":"text/plain"},"key":"ids[]","value":"3"},{"disabled":true,"description":{"content":"<p>filter by brand id (deprecated)</p>\n","type":"text/plain"},"key":"brand_id","value":"3"},{"disabled":true,"description":{"content":"<p>filter by brand ids</p>\n","type":"text/plain"},"key":"brand_ids[]","value":"3"},{"disabled":true,"description":{"content":"<p>filter by category id  (deprecated)</p>\n","type":"text/plain"},"key":"product_category_id","value":"3"},{"disabled":true,"description":{"content":"<p>filter by category ids</p>\n","type":"text/plain"},"key":"product_category_ids[]","value":"3"},{"disabled":true,"description":{"content":"<p>filter by product type ids</p>\n","type":"text/plain"},"key":"product_type_ids[]","value":"3"},{"disabled":true,"description":{"content":"<p>filter by created before query in UTC</p>\n","type":"text/plain"},"key":"updated_at_to","value":"2025-04-22T22:04:50Z"},{"disabled":true,"description":{"content":"<p>filter by updated after query in UTC</p>\n","type":"text/plain"},"key":"created_at_from","value":"2025-04-20T22:04:50Z"},{"disabled":true,"description":{"content":"<p>filter by updated before query in UTC</p>\n","type":"text/plain"},"key":"created_at_to","value":"2025-04-22T22:04:50Z"},{"description":{"content":"<p>Number of records to return per page</p>\n","type":"text/plain"},"key":"per_page","value":"2"},{"disabled":true,"description":{"content":"<p>**REQUIRED **</p>\n","type":"text/plain"},"key":"updated_at_from","value":"2025-05-03T22:04:50Z"},{"description":{"content":"<p>only return products that have batches with inventory that are not archived</p>\n","type":"text/plain"},"key":"has_available_batches","value":"false"},{"description":{"content":"<p>if with_batches flag is set, also return batches that have no inventory or are archived</p>\n","type":"text/plain"},"key":"include_sold_out_batches","value":"false"}],"variable":[]}},"response":[],"_postman_id":"9cce4f4e-b820-4fc7-8344-bef1992ac481"},{"name":"Product","id":"eea987bf-a8d4-43b8-a410-be5e65f37589","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer  ","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/v1/products/2","description":"<p>If your token has the view batches permission, this response will also include the batches that belong to the product</p>\n<p><strong>Token Permissions</strong></p>\n<ul>\n<li>view:products</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}},"urlObject":{"path":["v1","products","2"],"host":["https://secure.bushel44.com/api/v1"],"query":[{"disabled":true,"description":{"content":"<p>include batches in response (requires batch permission on key)</p>\n","type":"text/plain"},"key":"with_batches","value":"false"},{"disabled":true,"description":{"content":"<p>include metrc labs and tabs</p>\n","type":"text/plain"},"key":"with_metrc","value":"false"},{"disabled":true,"description":{"content":"<p>include product history</p>\n","type":"text/plain"},"key":"with_history","value":"false"},{"disabled":true,"description":{"content":"<p>only return products that have batches with inventory that are not archived</p>\n","type":"text/plain"},"key":"has_available_batches","value":"false"}],"variable":[]}},"response":[],"_postman_id":"eea987bf-a8d4-43b8-a410-be5e65f37589"},{"name":"Product","id":"a660ee0b-d597-41a7-afa1-782b3f38c9ed","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"Premium Blue Dream Flower 4\", // required | string\n  \"product_category_id\": 1, // required | integer\n  \"product_type_id\": null, // required except for on category Seed | integer\n  \"listing_price\": 5000, // optional | integer note: in cents. 35 = $0.35, 3500 = $35.00\n  \"product_sku\": \"SKU-BD-001\", // optional | string\n  \"dutchie_sku\": null, // optional | string\n  \"list_to_buyers\": true, // optional | boolean\n  \"list_to_clearinghouse\": false, // optional | boolean\n  \"description\": \"Premium indoor grown Blue Dream with exceptional terpene profile\", // optional | string\n  \"ingredients\": \"100% Cannabis Flower\", // optional | string\n  \"brand_id\": null, // optional | integer\n  \"product_cultivar_id\": null, // optional | integer\n  \"product_cultivar_type_id\": null, // optional | integer\n  \"product_crude_extract_type_id\": null, // optional (use when product type is crude) | integer\n  \"product_distillate_extract_sub_type_id\": null, // optional (use when product type is distillate) | integer\n  \"product_unit_measurement_id\": null, // required | integer\n  \"unit_size_unit_measurement_id\": null, // optional | integer\n  \"state_of_material_id\": null, // optional | integer\n  \"product_grow_environment_id\": null, // optional | integer\n  \"product_grow_medium_id\": null, // optional | integer\n  \"product_drying_method_id\": null, // optional | integer\n  \"product_storage_type_id\": null, // optional | integer\n  \"product_container_type_id\": null, // optional | integer\n  \"product_trim_method_id\": null, // optional | integer\n  \"units_per_package\": 8, // optional | integer\n  \"units_per_case\": 48, // optional | integer\n  \"gram_per_preroll\": 1.0, // optional | float\n  \"lineage\": \"Blueberry x Haze\", // optional | string\n  \"feminized\": true, // optional | boolean\n  \"germination_rate\": 95.5, // optional | float percentage 0-100\n  \"herm_male_rate\": 2.1, // optional | float percentage 0-100\n  \"yields_per_acre_outdoor\": \"800-1200 lbs\", // optional | string\n  \"per_sq_ft_indoor\": \"1.5-2.0 oz\", // optional | string\n  \"curing_method\": \"60 day hang dry and cure\", // optional | string\n  \"extraction_method_id\": null, // optional | integer\n  \"flavor_id\": null, // optional | integer\n  \"unit_size\": 28.5, // optional | float\n  \"product_infusion_id\": null, // optional | integer\n  \"for_pets\": false, // optional | boolean\n  \"flowering_period_id\": null, // optional | integer\n  \"feminized_type_id\": null, // optional | integer\n  \"product_packaged_unit_size_id\": null, // required on category prepack, not used on other categories | integer\n  \"pto_oneg_listing_price\": 1500, // optional | integer note: in cents. 35 = $0.35, 3500 = $35.00\n  \"pto_twog_listing_price\": 2800, // optional | integer note: in cents. 35 = $0.35, 3500 = $35.00\n  \"pto_eighthoz_listing_price\": 10000, // optional | integer note: in cents. 35 = $0.35, 3500 = $35.00\n  \"pto_quarteroz_listing_price\": 18000, // optional | integer note: in cents. 35 = $0.35, 3500 = $35.00\n  \"pto_halfoz_listing_price\": 32000, // optional | integer note: in cents. 35 = $0.35, 3500 = $35.00\n  \"pto_oneoz_listing_price\": 60000, // optional | integer note: in cents. 35 = $0.35, 3500 = $35.00\n  \"pto_quarterpound_listing_price\": 220000, // optional | integer note: in cents. 35 = $0.35, 3500 = $35.00\n  \"pto_halfpound_listing_price\": 420000, // optional | integer note: in cents. 35 = $0.35, 3500 = $35.00\n  \"pto_onepound_listing_price\": 800000, // optional | integer note: in cents. 35 = $0.35, 3500 = $35.00\n  \"predominate_canabinoid_id\": null, // optional | integer\n  \"for_distributors\": true, // optional | boolean\n  \"for_retailers\": true, // optional | boolean\n  \"for_wholesalers\": false, // optional | boolean\n  \"internal_notes\": \"High demand product, monitor inventory closely\", // optional | string\n  \"featured\": true, // optional | boolean\n  \"featured_callout\": \"Top Seller!\", // optional | string\n  \"environmental_issue_ids\": [1, 2], // optional | array of integers\n  \"additive_ids\": [1, 2], // optional | array of integers\n  \"government_agency_ids\": [1, 2] // optional | array of integers\n}","options":{"raw":{"language":"json"}}},"url":"https://secure.bushel44.com/api/v1/v1/products","description":"<p><strong>Token Permissions</strong></p>\n<ul>\n<li>update:products</li>\n</ul>\n<p><strong>Product Field Rules</strong></p>\n<p>Available fields are gated by the product category &amp; sometimes also by the product type. Please see the Product Field Rules endpoint for the field logic. This will return an allow and deny list as the specifics for each field can be fairly complicated.</p>\n<p>If you pass in a field that is not supported, we will ignore it and accept the other fields.</p>\n<p>Some units of measurement are not available to be added to products as they are only used on order items. EG, a case might be a unit of measurement on an order item but it is not available to be added to a product.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}},"urlObject":{"path":["v1","products"],"host":["https://secure.bushel44.com/api/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"a660ee0b-d597-41a7-afa1-782b3f38c9ed"},{"name":"Product","id":"27326745-c7fe-4c74-97b8-67a27b28c684","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"Premium Blue Dream Flower 4\", // optional, not nullable | string\n  \"listing_price\": 5000, // optional | integer note: in cents. 35 = $0.35, 3500 = $35.00\n  \"product_sku\": \"SKU-BD-001\", // optional | string\n  \"dutchie_sku\": null, // optional | string\n  \"list_to_buyers\": true, // optional, not nullable  | boolean\n  \"list_to_clearinghouse\": false, // optional, not nullable  | boolean\n  \"description\": \"Premium indoor grown Blue Dream with exceptional terpene profile\", // optional | string\n  \"ingredients\": \"100% Cannabis Flower\", // optional | string\n  \"brand_id\": null, // optional | integer\n  \"product_cultivar_id\": null, // optional | integer\n  \"product_cultivar_type_id\": null, // optional | integer\n  \"product_type_id\": null, // optional, not nullable except for category Seed | integer\n  \"product_crude_extract_type_id\": null, // optional | integer\n  \"product_distillate_extract_sub_type_id\": null, // optional | integer\n  \"product_unit_measurement_id\": null, // optional, not nullable | integer\n  \"unit_size_unit_measurement_id\": null, // optional | integer\n  \"state_of_material_id\": null, // optional | integer\n  \"product_grow_environment_id\": null, // optional | integer\n  \"product_grow_medium_id\": null, // optional | integer\n  \"product_drying_method_id\": null, // optional | integer\n  \"product_storage_type_id\": null, // optional | integer\n  \"product_container_type_id\": null, // optional | integer\n  \"product_trim_method_id\": null, // optional | integer\n  \"units_per_package\": 8, // optional | integer\n  \"units_per_case\": 48, // optional | integer\n  \"gram_per_preroll\": 1.0, // optional | float\n  \"lineage\": \"Blueberry x Haze\", // optional | string\n  \"feminized\": true, // optional, not nullable  | boolean\n  \"germination_rate\": 95.5, // optional | float percentage 0-100\n  \"herm_male_rate\": 2.1, // optional | float percentage 0-100\n  \"yields_per_acre_outdoor\": \"800-1200 lbs\", // optional | string\n  \"per_sq_ft_indoor\": \"1.5-2.0 oz\", // optional | string\n  \"curing_method\": \"60 day hang dry and cure\", // optional | string\n  \"extraction_method_id\": null, // optional | integer\n  \"flavor_id\": null, // optional | integer\n  \"unit_size\": 28.5, // optional | float\n  \"product_infusion_id\": null, // optional | integer\n  \"for_pets\": false, // optional, not nullable  | boolean\n  \"flowering_period_id\": null, // optional | integer\n  \"feminized_type_id\": null, // optional | integer\n  \"product_packaged_unit_size_id\": null, // optional, not nullable on category prepack | integer\n  \"pto_oneg_listing_price\": 1500, // optional | integer note: in cents. 35 = $0.35, 3500 = $35.00\n  \"pto_twog_listing_price\": 2800, // optional | integer note: in cents. 35 = $0.35, 3500 = $35.00\n  \"pto_eighthoz_listing_price\": 10000, // optional | integer note: in cents. 35 = $0.35, 3500 = $35.00\n  \"pto_quarteroz_listing_price\": 18000, // optional | integer note: in cents. 35 = $0.35, 3500 = $35.00\n  \"pto_halfoz_listing_price\": 32000, // optional | integer note: in cents. 35 = $0.35, 3500 = $35.00\n  \"pto_oneoz_listing_price\": 60000, // optional | integer note: in cents. 35 = $0.35, 3500 = $35.00\n  \"pto_quarterpound_listing_price\": 220000, // optional | integer note: in cents. 35 = $0.35, 3500 = $35.00\n  \"pto_halfpound_listing_price\": 420000, // optional | integer note: in cents. 35 = $0.35, 3500 = $35.00\n  \"pto_onepound_listing_price\": 800000, // optional | integer note: in cents. 35 = $0.35, 3500 = $35.00\n  \"predominate_canabinoid_id\": null, // optional | integer\n  \"for_distributors\": true, // optional, not nullable  | boolean\n  \"for_retailers\": true, // optional, not nullable  | boolean\n  \"for_wholesalers\": false, // optional, not nullable  | boolean\n  \"internal_notes\": \"High demand product, monitor inventory closely\", // optional | string\n  \"featured\": true, // optional, not nullable  | boolean\n  \"featured_callout\": \"Top Seller!\", // optional | string\n  \"environmental_issue_ids\": [1, 2], // optional | array of integers\n  \"additive_ids\": [1, 2], // optional | array of integers\n  \"government_agency_ids\": [1, 2], // optional | array of integers\n  \"archived\": false // optional, not nullable | boolean\n}","options":{"raw":{"language":"json"}}},"url":"https://secure.bushel44.com/api/v1/v1/products/2","description":"<p><strong>Token Permissions</strong></p>\n<ul>\n<li>update:products</li>\n</ul>\n<p><strong>Product Field Rules</strong></p>\n<p>Available fields are gated by the product category &amp; sometimes also by the product type. Please see the Product Field Rules endpoint for the field logic. This will return an allow and deny list as the specifics for each field can be fairly complicated.</p>\n<p>If you pass in a field that is not supported, we will ignore it and accept the other fields.</p>\n<p>Category_id cannot be altered.</p>\n<p>Some units of measurement are not available to be added to products as they are only used on order items. EG, a case might be a unit of measurement on an order item but it is not available to be added to a product.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}},"urlObject":{"path":["v1","products","2"],"host":["https://secure.bushel44.com/api/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"27326745-c7fe-4c74-97b8-67a27b28c684"},{"name":"Field Rules","id":"e57d38df-fed0-4967-bed4-9efaec60e77a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer  ","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/v1/products/meta/field-rules","description":"<p><strong>Token Permissions</strong></p>\n<ul>\n<li>view:products</li>\n</ul>\n<p>Note: You may notice an industry flag that could be cannabis or hemp. For the purpose of this API, you are industry == cannabis.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}},"urlObject":{"path":["v1","products","meta","field-rules"],"host":["https://secure.bushel44.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"27d99934-3e9e-47ae-9f6d-26c8c2100eaa","name":"Field Rules","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer  ","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/products/meta/field-rules"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 30 May 2025 15:01:45 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Cache-Control","value":"no-cache, public, must-revalidate, proxy-revalidate"},{"key":"X-RateLimit-Limit","value":"5000"},{"key":"X-RateLimit-Remaining","value":"4997"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": {\n        \"gramPerPreroll\": {\n            \"allow\": [\n                {\n                    \"category\": \"Preroll\"\n                }\n            ]\n        },\n        \"predominateCanabinoidDetails\": {\n            \"allow\": [\n                {\n                    \"category\": \"Plant Material\"\n                },\n                {\n                    \"category\": \"Flower\"\n                },\n                {\n                    \"category\": \"Prepack\"\n                },\n                {\n                    \"category\": \"Preroll\"\n                },\n                {\n                    \"category\": \"Seed\"\n                },\n                {\n                    \"category\": \"Live Plant\"\n                },\n                {\n                    \"category\": \"Bulk Extract\"\n                },\n                {\n                    \"category\": \"Extract\"\n                },\n                {\n                    \"category\": \"Cartridge\"\n                },\n                {\n                    \"category\": \"Edibles & Drink\"\n                },\n                {\n                    \"category\": \"Tincture\"\n                },\n                {\n                    \"category\": \"Topicals & Wellness\"\n                },\n                {\n                    \"category\": \"Pack To Order\"\n                }\n            ]\n        },\n        \"containerType\": {\n            \"allow\": [\n                {\n                    \"category\": \"Plant Material\"\n                },\n                {\n                    \"category\": \"Pack To Order\"\n                },\n                {\n                    \"category\": \"Prepack\"\n                },\n                {\n                    \"category\": \"Preroll\"\n                },\n                {\n                    \"category\": \"Seed\"\n                },\n                {\n                    \"category\": \"Bulk Extract\"\n                },\n                {\n                    \"category\": \"Extract\"\n                }\n            ]\n        },\n        \"packToOrderPrices\": {\n            \"allow\": [\n                {\n                    \"category\": \"Pack To Order\"\n                }\n            ]\n        },\n        \"listingPrice\": {\n            \"deny\": [\n                {\n                    \"category\": \"Pack To Order\"\n                }\n            ],\n            \"allow\": [\n                {\n                    \"category\": \"*\"\n                }\n            ]\n        },\n        \"packagedUnitSize\": {\n            \"allow\": [\n                {\n                    \"category\": \"Prepack\"\n                }\n            ]\n        },\n        \"feminized\": {\n            \"allow\": [\n                {\n                    \"category\": \"Seed\"\n                }\n            ]\n        },\n        \"perSqFtIndoor\": {\n            \"allow\": [\n                {\n                    \"category\": \"Seed\"\n                },\n                {\n                    \"category\": \"Live Plant\"\n                }\n            ]\n        },\n        \"germinationRate\": {\n            \"allow\": [\n                {\n                    \"category\": \"Seed\"\n                }\n            ]\n        },\n        \"hermMaleRate\": {\n            \"allow\": [\n                {\n                    \"category\": \"Seed\"\n                },\n                {\n                    \"category\": \"Live Plant\",\n                    \"type\": [\n                        \"Starts\",\n                        \"Seedlings\"\n                    ]\n                }\n            ]\n        },\n        \"lineage\": {\n            \"allow\": [\n                {\n                    \"category\": \"Seed\"\n                },\n                {\n                    \"category\": \"Live Plant\"\n                }\n            ]\n        },\n        \"type\": {\n            \"allow\": [\n                {\n                    \"category\": \"Bulk Extract\"\n                },\n                {\n                    \"category\": \"Extract\"\n                },\n                {\n                    \"category\": \"Cartridge\"\n                },\n                {\n                    \"category\": \"Edibles & Drink\"\n                },\n                {\n                    \"category\": \"Tincture\"\n                },\n                {\n                    \"category\": \"Topicals & Wellness\"\n                },\n                {\n                    \"category\": \"Plant Material\"\n                },\n                {\n                    \"category\": \"Flower\"\n                },\n                {\n                    \"category\": \"Merchandise\"\n                },\n                {\n                    \"category\": \"Live Plant\"\n                },\n                {\n                    \"category\": \"Pack To Order\"\n                },\n                {\n                    \"category\": \"Prepack\"\n                },\n                {\n                    \"category\": \"Preroll\"\n                }\n            ]\n        },\n        \"extractionMethod\": {\n            \"allow\": [\n                {\n                    \"category\": \"Bulk Extract\"\n                },\n                {\n                    \"category\": \"Cartridge\"\n                }\n            ]\n        },\n        \"productFlavor\": {\n            \"allow\": [\n                {\n                    \"category\": \"Cartridge\"\n                }\n            ]\n        },\n        \"productAdditive\": {\n            \"allow\": [\n                {\n                    \"category\": \"Cartridge\"\n                }\n            ]\n        },\n        \"unitSize\": {\n            \"allow\": [\n                {\n                    \"category\": \"Cartridge\"\n                },\n                {\n                    \"category\": \"Merchandise\"\n                },\n                {\n                    \"category\": \"Edibles & Drink\"\n                },\n                {\n                    \"category\": \"Tincture\"\n                },\n                {\n                    \"category\": \"Extract\"\n                },\n                {\n                    \"category\": \"Topicals & Wellness\"\n                }\n            ]\n        },\n        \"unitOfMeasurement\": {\n            \"deny\": [\n                {\n                    \"category\": \"Prepack\"\n                },\n                {\n                    \"category\": \"Live Plant\"\n                },\n                {\n                    \"category\": \"Preroll\"\n                },\n                {\n                    \"category\": \"Merchandise\"\n                },\n                {\n                    \"category\": \"Cartridge\"\n                },\n                {\n                    \"category\": \"Edibles & Drink\"\n                },\n                {\n                    \"category\": \"Tincture\"\n                },\n                {\n                    \"category\": \"Extract\"\n                },\n                {\n                    \"category\": \"Topicals & Wellness\"\n                }\n            ],\n            \"allow\": [\n                {\n                    \"category\": \"*\"\n                }\n            ]\n        },\n        \"unitSizeUnitOfMeasurement\": {\n            \"allow\": [\n                {\n                    \"category\": \"Merchandise\"\n                },\n                {\n                    \"category\": \"Cartridge\"\n                },\n                {\n                    \"category\": \"Edibles & Drink\"\n                },\n                {\n                    \"category\": \"Tincture\"\n                },\n                {\n                    \"category\": \"Extract\"\n                },\n                {\n                    \"category\": \"Topicals & Wellness\"\n                }\n            ]\n        },\n        \"packageAndCaseOption\": {\n            \"allow\": [\n                {\n                    \"category\": \"Cartridge\"\n                },\n                {\n                    \"category\": \"Preroll\"\n                },\n                {\n                    \"category\": \"Live Plant\"\n                },\n                {\n                    \"category\": \"Prepack\"\n                },\n                {\n                    \"category\": \"Edibles & Drink\"\n                },\n                {\n                    \"category\": \"Tincture\"\n                },\n                {\n                    \"category\": \"Topicals & Wellness\"\n                },\n                {\n                    \"category\": \"Merchandise\"\n                },\n                {\n                    \"category\": \"Extract\"\n                }\n            ]\n        },\n        \"infusionMethod\": {\n            \"allow\": [\n                {\n                    \"category\": \"Edibles & Drink\"\n                },\n                {\n                    \"category\": \"Tincture\"\n                },\n                {\n                    \"category\": \"Topicals & Wellness\"\n                },\n                {\n                    \"category\": \"Extract\",\n                    \"type\": [\n                        \"Isolate\",\n                        \"Water Soluble\",\n                        \"Distillate\"\n                    ]\n                },\n                {\n                    \"category\": \"Bulk Extract\",\n                    \"type\": [\n                        \"Isolate\",\n                        \"Water Soluble\",\n                        \"Distillate\"\n                    ]\n                }\n            ]\n        },\n        \"forPets\": {\n            \"allow\": [\n                {\n                    \"category\": \"Topicals & Wellness\"\n                },\n                {\n                    \"category\": \"Edibles & Drink\"\n                },\n                {\n                    \"category\": \"Tincture\"\n                }\n            ]\n        },\n        \"prePopulate\": {\n            \"deny\": [\n                {\n                    \"category\": \"Merchandise\"\n                }\n            ],\n            \"allow\": [\n                {\n                    \"category\": \"*\"\n                }\n            ]\n        },\n        \"cultivar\": {\n            \"deny\": [\n                {\n                    \"category\": \"Merchandise\"\n                },\n                {\n                    \"category\": \"Topicals & Wellness\"\n                },\n                {\n                    \"category\": \"Tincture\",\n                    \"type\": \"Isolate\"\n                },\n                {\n                    \"category\": \"Bulk Extract\",\n                    \"type\": [\n                        \"Isolate\",\n                        \"Water Soluble\"\n                    ]\n                },\n                {\n                    \"category\": \"Extract\",\n                    \"type\": [\n                        \"Isolate\",\n                        \"Water Soluble\"\n                    ]\n                }\n            ],\n            \"allow\": [\n                {\n                    \"category\": \"*\"\n                }\n            ]\n        },\n        \"cultivarType\": {\n            \"deny\": [\n                {\n                    \"category\": \"Merchandise\"\n                },\n                {\n                    \"category\": \"Topicals & Wellness\"\n                },\n                {\n                    \"category\": \"Tincture\",\n                    \"type\": \"Isolate\"\n                },\n                {\n                    \"category\": \"Bulk Extract\",\n                    \"type\": [\n                        \"Isolate\",\n                        \"Water Soluble\"\n                    ]\n                },\n                {\n                    \"category\": \"Extract\",\n                    \"type\": [\n                        \"Isolate\",\n                        \"Water Soluble\"\n                    ]\n                }\n            ],\n            \"allow\": [\n                {\n                    \"category\": \"*\"\n                }\n            ]\n        },\n        \"crudeExtractType\": {\n            \"allow\": [\n                {\n                    \"category\": \"Extract\",\n                    \"type\": \"Crude\"\n                },\n                {\n                    \"category\": \"Bulk Extract\",\n                    \"type\": \"Crude\"\n                }\n            ]\n        },\n        \"distillateExtractType\": {\n            \"allow\": [\n                {\n                    \"category\": \"Extract\",\n                    \"type\": \"Distillate\"\n                },\n                {\n                    \"category\": \"Bulk Extract\",\n                    \"type\": \"Distillate\"\n                }\n            ]\n        },\n        \"growMedium\": {\n            \"allow\": [\n                {\n                    \"category\": \"Plant Material\"\n                },\n                {\n                    \"category\": \"Flower\"\n                },\n                {\n                    \"category\": \"Prepack\"\n                },\n                {\n                    \"category\": \"Live Plant\"\n                },\n                {\n                    \"category\": \"Pack To Order\"\n                }\n            ]\n        },\n        \"stateOfMaterial\": {\n            \"allow\": [\n                {\n                    \"category\": \"Plant Material\",\n                    \"type\": \"Biomass\"\n                }\n            ]\n        },\n        \"trimmingMethod\": {\n            \"allow\": [\n                {\n                    \"category\": \"Plant Material\"\n                },\n                {\n                    \"category\": \"Flower\"\n                },\n                {\n                    \"category\": \"Prepack\"\n                },\n                {\n                    \"category\": \"Pack To Order\"\n                }\n            ]\n        },\n        \"dryingMethod\": {\n            \"allow\": [\n                {\n                    \"category\": \"Plant Material\"\n                },\n                {\n                    \"category\": \"Flower\"\n                },\n                {\n                    \"category\": \"Prepack\"\n                },\n                {\n                    \"category\": \"Pack To Order\"\n                }\n            ]\n        },\n        \"storageType\": {\n            \"allow\": [\n                {\n                    \"category\": \"Plant Material\"\n                }\n            ]\n        },\n        \"documentUpload\": {\n            \"allow\": [\n                {\n                    \"category\": \"Plant Material\"\n                },\n                {\n                    \"category\": \"Flower\"\n                },\n                {\n                    \"category\": \"Prepack\"\n                },\n                {\n                    \"category\": \"Preroll\"\n                },\n                {\n                    \"category\": \"Bulk Extract\"\n                },\n                {\n                    \"category\": \"Extract\"\n                },\n                {\n                    \"category\": \"Cartridge\"\n                },\n                {\n                    \"category\": \"Topicals & Wellness\"\n                },\n                {\n                    \"category\": \"Edibles & Drink\"\n                },\n                {\n                    \"category\": \"Pack To Order\"\n                }\n            ]\n        },\n        \"ingredient\": {\n            \"allow\": [\n                {\n                    \"category\": \"Plant Material\"\n                },\n                {\n                    \"category\": \"Flower\"\n                },\n                {\n                    \"category\": \"Prepack\"\n                },\n                {\n                    \"category\": \"Preroll\"\n                },\n                {\n                    \"category\": \"Bulk Extract\"\n                },\n                {\n                    \"category\": \"Extract\"\n                },\n                {\n                    \"category\": \"Cartridge\"\n                },\n                {\n                    \"category\": \"Topicals & Wellness\"\n                },\n                {\n                    \"category\": \"Edibles & Drink\"\n                },\n                {\n                    \"category\": \"Pack To Order\"\n                }\n            ]\n        },\n        \"growEnvironment\": {\n            \"allow\": [\n                {\n                    \"category\": \"Plant Material\"\n                },\n                {\n                    \"category\": \"Flower\"\n                },\n                {\n                    \"category\": \"Prepack\"\n                },\n                {\n                    \"category\": \"Preroll\"\n                },\n                {\n                    \"category\": \"Seed\"\n                },\n                {\n                    \"category\": \"Live Plant\"\n                },\n                {\n                    \"category\": \"Pack To Order\"\n                }\n            ]\n        },\n        \"governmentAgency\": {\n            \"allow\": [\n                {\n                    \"category\": \"Seed\",\n                    \"industry\": \"hemp\"\n                },\n                {\n                    \"category\": \"Live Plant\",\n                    \"industry\": \"hemp\"\n                }\n            ]\n        },\n        \"floweringPeriod\": {\n            \"allow\": [\n                {\n                    \"category\": \"Seed\"\n                },\n                {\n                    \"category\": \"Live Plant\"\n                }\n            ]\n        },\n        \"yieldsPerAcreOutdoor\": {\n            \"allow\": [\n                {\n                    \"category\": \"Seed\"\n                },\n                {\n                    \"category\": \"Live Plant\"\n                }\n            ]\n        },\n        \"curingMethod\": {\n            \"allow\": [\n                {\n                    \"category\": \"Plant Material\",\n                    \"type\": {\n                        \"not\": \"Biomass\"\n                    }\n                },\n                {\n                    \"category\": \"Flower\",\n                    \"type\": {\n                        \"not\": \"Biomass\"\n                    }\n                },\n                {\n                    \"category\": \"Prepack\",\n                    \"type\": {\n                        \"not\": \"Biomass\"\n                    }\n                },\n                {\n                    \"category\": \"Pack To Order\",\n                    \"type\": {\n                        \"not\": \"Biomass\"\n                    }\n                }\n            ]\n        },\n        \"environmentalIssue\": {\n            \"allow\": [\n                {\n                    \"category\": \"Live Plant\"\n                }\n            ]\n        }\n    }\n}"}],"_postman_id":"e57d38df-fed0-4967-bed4-9efaec60e77a"},{"name":"Ingredients Upload","id":"bcaa7a6f-a40a-49b5-a5b7-183b5b502934","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"file","type":"file","uuid":"26b61182-5c84-4755-a03d-fcbe74d8c2b9","value":null}]},"url":"https://secure.bushel44.com/api/v1/v1/products/2/ingredients-upload","description":"<p><strong>Token Permissions</strong></p>\n<ul>\n<li>update:products</li>\n</ul>\n<p>If you pass an empty value, any ingredients-upload on the product will be removed, though you may need to change to type of string.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}},"urlObject":{"path":["v1","products","2","ingredients-upload"],"host":["https://secure.bushel44.com/api/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"bcaa7a6f-a40a-49b5-a5b7-183b5b502934"}],"id":"54add10f-525e-4c59-9a7b-8e310692a5b5","description":"<p>The inventory system is fairly complex. We recommend you build your API integration while also simultaneously using the apex GUI to see what form fields are required and options are available. In general, create a product name and product category. For every category besides seeds you also need to create a subtype (product_type_id). Each product will also need a product_unit_measurement_id set, and certain categories also need further measurements.</p>\n<p>Our application has a parent child relationship with inventory. There is a parent product with many child batches. The batches are connected to the parent through a product_id on the batch.</p>\n<p>Any prices added at the product level will be used as the default prices for batches</p>\n<ul>\n<li><p>product_category_id: The main category for the product, determines what fields will be available on the product</p>\n</li>\n<li><p>product_type_id: The subtype. For instance, if the category is flower, the type might be A-Bud</p>\n</li>\n<li><p>units_per_case: If this field is filled in, the product is sold in cases. You would multiple the units_per_case by the quantity on the batch to get the total number of units.</p>\n</li>\n<li><p>units_per_package: If this field is filled in, it represents the number of units in a single sellable case. Eg, 3 pack of joints.</p>\n</li>\n<li><p>ingredients_upload: file</p>\n</li>\n<li><p>ingredients: text field</p>\n</li>\n<li><p>for_distributors, for_retailers, for_wholesalers. Booleans that mark the type of buyers that can see these products</p>\n</li>\n<li><p>Measurements:</p>\n<ul>\n<li><p>Products have different types of measurements depending on their category.</p>\n<ul>\n<li><p>product_unit_measurement_id: See /unit-measurements endpoint. This is the fundamental measurement, a required field for all products. For Categories: \"Edibles &amp; Drink, Topicals &amp; Wellness, Tincture, Cartridge, Live Plant, Prepack, Preroll, Merchandise, Extract\" use the measurement \"Unit\". For other categories use the appropriate unit. Eg, In the case of flower, this is often 'Pound'. An order might contain 10(quantity) pounds(unit measurement) flower.</p>\n</li>\n<li><p>unit_size: See /unit-measurements endpoint. For instance, this might be the '2' in a 2 gram cartridge. This coresponds to categories that are sold in units, At the time of writing this is available on categories [Cartridge, Merchandise, Edibles &amp; Drink, Tincture, Extract, Topicals &amp; Wellness]. An order might contain 10(quantity) 2(unit size) gram(unit measurement) cartridges.</p>\n</li>\n<li><p>unit_size_unit_measurement_id: See /unit-measurements endpoint. This is linked to the unit_size field. In the above example, this would be the 'gram' part of 2 grams.</p>\n</li>\n<li><p>packagedUnitSize: See /package-sizes endpoint. Used for Prepack.</p>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n<p><strong>Note on building an inventory sync with external system</strong></p>\n<p>Do not rely on the with_batches option for building an inventory sync. An update to a batch does not update the updated_at field on a product and so your inventory sync won't work. To build an inventory sync, call both the /products and /batches endpoints separately with an updated_at_from field set at the time of your last call.</p>\n<p><strong>Example Daily Inventory Sync getting data that changed in last 24 hours</strong></p>\n<p>day 1 (2025-04-21)</p>\n<p>/products?updated_at_from=2025-04-20T22:00:00Z</p>\n<p>/batches?updated_at_from=2025-04-20T22:00:00Z</p>\n<p>day 2 (2025-04-22)</p>\n<p>/products?updated_at_from=2025-04-21T22:00:00Z</p>\n<p>/batches?updated_at_from=2025-04-21T22:00:00Z</p>\n<p>day 3 (2025-04-23)</p>\n<p>/products?updated_at_from=2025-04-22T22:00:00Z</p>\n<p>/batches?updated_at_from=2025-04-22T22:00:00Z</p>\n","_postman_id":"54add10f-525e-4c59-9a7b-8e310692a5b5","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}}},{"name":"Product Additives","item":[{"name":"Product Additives","id":"d9e2657b-f8c0-4b70-bf79-4dfc91607f91","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/v1/product-additives?per_page=15","description":"<p><strong>Token Permissions</strong></p>\n<ul>\n<li>view:products</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}},"urlObject":{"path":["v1","product-additives"],"host":["https://secure.bushel44.com/api/v1"],"query":[{"description":{"content":"<p>Number of records to return per page</p>\n","type":"text/plain"},"key":"per_page","value":"15"}],"variable":[]}},"response":[{"id":"515f09d2-2079-46cd-95d0-7198b7dc61fc","name":"Product Additives","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"https://secure.bushel44.com/api/v1/product-additives?per_page=15","host":["https://secure.bushel44.com/api/v1"],"path":["product-additives"],"query":[{"key":"per_page","value":"15","description":"Number of records to return per page"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 01:51:35 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Cache-Control","value":"no-cache, public, must-revalidate, proxy-revalidate"},{"key":"X-RateLimit-Limit","value":"5000"},{"key":"X-RateLimit-Remaining","value":"4996"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 1,\n            \"name\": \"Polyethylene Glycol\",\n            \"abbreviation\": \"PEG\"\n        },\n        {\n            \"id\": 2,\n            \"name\": \"Propylene Glycol\",\n            \"abbreviation\": \"PG\"\n        },\n        {\n            \"id\": 3,\n            \"name\": \"Vegetable Glycerin\",\n            \"abbreviation\": \"VG\"\n        },\n        {\n            \"id\": 4,\n            \"name\": \"Medium Chain Triglycerides\",\n            \"abbreviation\": \"MCT\"\n        },\n        {\n            \"id\": 5,\n            \"name\": \"UNCUT\",\n            \"abbreviation\": null\n        }\n    ],\n    \"links\": {\n        \"first\": \"https://demo.bushel44.com/api/v1/product-additives?page=1\",\n        \"last\": \"https://demo.bushel44.com/api/v1/product-additives?page=1\",\n        \"prev\": null,\n        \"next\": null\n    },\n    \"meta\": {\n        \"current_page\": 1,\n        \"from\": 1,\n        \"last_page\": 1,\n        \"links\": [\n            {\n                \"url\": null,\n                \"label\": \"&laquo; Previous\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.bushel44.com/api/v1/product-additives?page=1\",\n                \"label\": \"1\",\n                \"active\": true\n            },\n            {\n                \"url\": null,\n                \"label\": \"Next &raquo;\",\n                \"active\": false\n            }\n        ],\n        \"path\": \"https://demo.bushel44.com/api/v1/product-additives\",\n        \"per_page\": 15,\n        \"to\": 5,\n        \"total\": 5\n    },\n    \"status\": \"success\"\n}"}],"_postman_id":"d9e2657b-f8c0-4b70-bf79-4dfc91607f91"},{"name":"Product Additive","id":"aaf6f494-b6cf-4b74-8e33-a21889eac16f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/v1/product-additives/{{product_additive_id}}","description":"<p><strong>Token Permissions</strong></p>\n<ul>\n<li>view:products</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}},"urlObject":{"path":["v1","product-additives","{{product_additive_id}}"],"host":["https://secure.bushel44.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"1bf46a90-ad4b-415b-b83c-f5fbb41ee5dc","name":"Product Additive","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/product-additives/{{product_additive_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 01:51:48 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Cache-Control","value":"no-cache, public, must-revalidate, proxy-revalidate"},{"key":"X-RateLimit-Limit","value":"5000"},{"key":"X-RateLimit-Remaining","value":"4995"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 2,\n        \"name\": \"Propylene Glycol\",\n        \"abbreviation\": \"PG\"\n    }\n}"}],"_postman_id":"aaf6f494-b6cf-4b74-8e33-a21889eac16f"}],"id":"33873653-be80-4cf9-b06d-1dca4fad9bb8","_postman_id":"33873653-be80-4cf9-b06d-1dca4fad9bb8","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}}},{"name":"Product Categories","item":[{"name":"Product Categories","id":"7ead472c-1939-41f1-a0c0-393b0f21f471","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[]},"url":"https://secure.bushel44.com/api/v1/v1/product-categories?with_types=true&per_page=15","description":"<p><strong>Token Permissions</strong></p>\n<ul>\n<li>view:products</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}},"urlObject":{"path":["v1","product-categories"],"host":["https://secure.bushel44.com/api/v1"],"query":[{"description":{"content":"<p>Include product types that belong to the categories</p>\n","type":"text/plain"},"key":"with_types","value":"true"},{"description":{"content":"<p>Number of records to return per page</p>\n","type":"text/plain"},"key":"per_page","value":"15"}],"variable":[]}},"response":[{"id":"9c92c54c-1688-4d86-92f5-315a5c2c75e4","name":"Product Categories","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[]},"url":{"raw":"https://secure.bushel44.com/api/v1/product-categories?with_types=true&per_page=15","host":["https://secure.bushel44.com/api/v1"],"path":["product-categories"],"query":[{"key":"with_types","value":"true","description":"Include product types that belong to the categories"},{"key":"per_page","value":"15","description":"Number of records to return per page"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 01:51:12 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Cache-Control","value":"no-cache, public, must-revalidate, proxy-revalidate"},{"key":"X-RateLimit-Limit","value":"5000"},{"key":"X-RateLimit-Remaining","value":"4998"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 1,\n            \"name\": \"Plant Material\",\n            \"short_display_name\": \"Plant Material\",\n            \"long_display_name\": \"Plant Material\",\n            \"product_types\": [\n                {\n                    \"id\": 1,\n                    \"name\": \"Biomass\",\n                    \"product_category_id\": 1,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 2,\n                    \"name\": \"Smokeable\",\n                    \"product_category_id\": 1,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 93,\n                    \"name\": \"Herd\",\n                    \"product_category_id\": 1,\n                    \"company_id\": 4\n                },\n                {\n                    \"id\": 94,\n                    \"name\": \"Moonrocks\",\n                    \"product_category_id\": 1,\n                    \"company_id\": 4\n                }\n            ]\n        },\n        {\n            \"id\": 2,\n            \"name\": \"Prepack\",\n            \"short_display_name\": \"Prepack\",\n            \"long_display_name\": \"Prepack\",\n            \"product_types\": [\n                {\n                    \"id\": 96,\n                    \"name\": \"A Bud\",\n                    \"product_category_id\": 2,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 97,\n                    \"name\": \"B Bud\",\n                    \"product_category_id\": 2,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 98,\n                    \"name\": \"Popcorn\",\n                    \"product_category_id\": 2,\n                    \"company_id\": null\n                }\n            ]\n        },\n        {\n            \"id\": 3,\n            \"name\": \"Preroll\",\n            \"short_display_name\": \"Prerolls\",\n            \"long_display_name\": \"Prerolls\",\n            \"product_types\": [\n                {\n                    \"id\": 60,\n                    \"name\": \"Trim / Shake\",\n                    \"product_category_id\": 3,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 61,\n                    \"name\": \"Whole Flower\",\n                    \"product_category_id\": 3,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 62,\n                    \"name\": \"Whole Flower Infused\",\n                    \"product_category_id\": 3,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 63,\n                    \"name\": \"Whole Flower Blunt\",\n                    \"product_category_id\": 3,\n                    \"company_id\": null\n                }\n            ]\n        },\n        {\n            \"id\": 4,\n            \"name\": \"Seed\",\n            \"short_display_name\": \"Seeds\",\n            \"long_display_name\": \"Seeds\",\n            \"product_types\": []\n        },\n        {\n            \"id\": 5,\n            \"name\": \"Live Plant\",\n            \"short_display_name\": \"Live Plants\",\n            \"long_display_name\": \"Live Plants\",\n            \"product_types\": [\n                {\n                    \"id\": 71,\n                    \"name\": \"Seedlings\",\n                    \"product_category_id\": 5,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 72,\n                    \"name\": \"Clones\",\n                    \"product_category_id\": 5,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 73,\n                    \"name\": \"Starts\",\n                    \"product_category_id\": 5,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 74,\n                    \"name\": \"Tissue Culture\",\n                    \"product_category_id\": 5,\n                    \"company_id\": null\n                }\n            ]\n        },\n        {\n            \"id\": 6,\n            \"name\": \"Bulk Extract\",\n            \"short_display_name\": \"Bulk Extracts\",\n            \"long_display_name\": \"Bulk Extracts\",\n            \"product_types\": [\n                {\n                    \"id\": 34,\n                    \"name\": \"Crude\",\n                    \"product_category_id\": 6,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 35,\n                    \"name\": \"Distillate\",\n                    \"product_category_id\": 6,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 36,\n                    \"name\": \"Isolate\",\n                    \"product_category_id\": 6,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 37,\n                    \"name\": \"Full Plant\",\n                    \"product_category_id\": 6,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 38,\n                    \"name\": \"Water Soluble\",\n                    \"product_category_id\": 6,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 39,\n                    \"name\": \"Crystals\",\n                    \"product_category_id\": 6,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 40,\n                    \"name\": \"Wax\",\n                    \"product_category_id\": 6,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 41,\n                    \"name\": \"Shatter\",\n                    \"product_category_id\": 6,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 42,\n                    \"name\": \"Crumble\",\n                    \"product_category_id\": 6,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 43,\n                    \"name\": \"Terpsolate\",\n                    \"product_category_id\": 6,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 44,\n                    \"name\": \"RSO\",\n                    \"product_category_id\": 6,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 45,\n                    \"name\": \"Kief\",\n                    \"product_category_id\": 6,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 46,\n                    \"name\": \"Terpenes\",\n                    \"product_category_id\": 6,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 95,\n                    \"name\": \"Organic Hemp Seed Oil\",\n                    \"product_category_id\": 6,\n                    \"company_id\": 4\n                }\n            ]\n        },\n        {\n            \"id\": 7,\n            \"name\": \"Extract\",\n            \"short_display_name\": \"Extracts\",\n            \"long_display_name\": \"Extracts\",\n            \"product_types\": [\n                {\n                    \"id\": 47,\n                    \"name\": \"Crude\",\n                    \"product_category_id\": 7,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 48,\n                    \"name\": \"Distillate\",\n                    \"product_category_id\": 7,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 49,\n                    \"name\": \"Isolate\",\n                    \"product_category_id\": 7,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 50,\n                    \"name\": \"Full Plant\",\n                    \"product_category_id\": 7,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 51,\n                    \"name\": \"Water Soluble\",\n                    \"product_category_id\": 7,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 52,\n                    \"name\": \"Crystals\",\n                    \"product_category_id\": 7,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 53,\n                    \"name\": \"Wax\",\n                    \"product_category_id\": 7,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 54,\n                    \"name\": \"Shatter\",\n                    \"product_category_id\": 7,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 55,\n                    \"name\": \"Crumble\",\n                    \"product_category_id\": 7,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 56,\n                    \"name\": \"Terpsolate\",\n                    \"product_category_id\": 7,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 57,\n                    \"name\": \"RSO\",\n                    \"product_category_id\": 7,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 58,\n                    \"name\": \"Kief\",\n                    \"product_category_id\": 7,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 59,\n                    \"name\": \"Terpenes\",\n                    \"product_category_id\": 7,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 76,\n                    \"name\": \"Rosin\",\n                    \"product_category_id\": 7,\n                    \"company_id\": null\n                }\n            ]\n        },\n        {\n            \"id\": 8,\n            \"name\": \"Cartridge\",\n            \"short_display_name\": \"Cartridges\",\n            \"long_display_name\": \"Cartridges\",\n            \"product_types\": [\n                {\n                    \"id\": 64,\n                    \"name\": \"Distillate\",\n                    \"product_category_id\": 8,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 65,\n                    \"name\": \"CO2\",\n                    \"product_category_id\": 8,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 66,\n                    \"name\": \"Live Resin\",\n                    \"product_category_id\": 8,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 67,\n                    \"name\": \"CO2 Disposable\",\n                    \"product_category_id\": 8,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 68,\n                    \"name\": \"Distillate Disposable\",\n                    \"product_category_id\": 8,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 69,\n                    \"name\": \"Inhaler\",\n                    \"product_category_id\": 8,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 70,\n                    \"name\": \"Syringe\",\n                    \"product_category_id\": 8,\n                    \"company_id\": null\n                }\n            ]\n        },\n        {\n            \"id\": 10,\n            \"name\": \"Merchandise\",\n            \"short_display_name\": \"Merchandise\",\n            \"long_display_name\": \"Merchandise\",\n            \"product_types\": [\n                {\n                    \"id\": 75,\n                    \"name\": \"PPE\",\n                    \"product_category_id\": 10,\n                    \"company_id\": 4\n                },\n                {\n                    \"id\": 77,\n                    \"name\": \"Hats\",\n                    \"product_category_id\": 10,\n                    \"company_id\": 7\n                }\n            ]\n        },\n        {\n            \"id\": 11,\n            \"name\": \"Edibles & Drink\",\n            \"short_display_name\": \"Edibles & Drinks\",\n            \"long_display_name\": \"Edibles & Drinks\",\n            \"product_types\": [\n                {\n                    \"id\": 15,\n                    \"name\": \"Beverage\",\n                    \"product_category_id\": 11,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 16,\n                    \"name\": \"Brownie\",\n                    \"product_category_id\": 11,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 17,\n                    \"name\": \"Candy\",\n                    \"product_category_id\": 11,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 18,\n                    \"name\": \"Chocolate\",\n                    \"product_category_id\": 11,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 19,\n                    \"name\": \"Condiment\",\n                    \"product_category_id\": 11,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 20,\n                    \"name\": \"Cookie\",\n                    \"product_category_id\": 11,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 21,\n                    \"name\": \"Cooking\",\n                    \"product_category_id\": 11,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 22,\n                    \"name\": \"Frozen\",\n                    \"product_category_id\": 11,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 23,\n                    \"name\": \"Snack Food\",\n                    \"product_category_id\": 11,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 24,\n                    \"name\": \"Coffee\",\n                    \"product_category_id\": 11,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 25,\n                    \"name\": \"Popcorn\",\n                    \"product_category_id\": 11,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 26,\n                    \"name\": \"Gummies\",\n                    \"product_category_id\": 11,\n                    \"company_id\": null\n                }\n            ]\n        },\n        {\n            \"id\": 12,\n            \"name\": \"Tincture\",\n            \"short_display_name\": \"Tinctures\",\n            \"long_display_name\": \"Tinctures\",\n            \"product_types\": [\n                {\n                    \"id\": 27,\n                    \"name\": \"Isolate\",\n                    \"product_category_id\": 12,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 28,\n                    \"name\": \"Full Spectrum\",\n                    \"product_category_id\": 12,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 29,\n                    \"name\": \"Broad Spectrum\",\n                    \"product_category_id\": 12,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 30,\n                    \"name\": \"THC Free\",\n                    \"product_category_id\": 12,\n                    \"company_id\": null\n                }\n            ]\n        },\n        {\n            \"id\": 13,\n            \"name\": \"Topicals & Wellness\",\n            \"short_display_name\": \"Topicals & Wellness\",\n            \"long_display_name\": \"Topicals & Wellness\",\n            \"product_types\": [\n                {\n                    \"id\": 3,\n                    \"name\": \"Salve\",\n                    \"product_category_id\": 13,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 4,\n                    \"name\": \"Shampoo\",\n                    \"product_category_id\": 13,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 5,\n                    \"name\": \"Lotion\",\n                    \"product_category_id\": 13,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 6,\n                    \"name\": \"Soap\",\n                    \"product_category_id\": 13,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 7,\n                    \"name\": \"Balm\",\n                    \"product_category_id\": 13,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 8,\n                    \"name\": \"Mask\",\n                    \"product_category_id\": 13,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 9,\n                    \"name\": \"Serum\",\n                    \"product_category_id\": 13,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 10,\n                    \"name\": \"Cleanser\",\n                    \"product_category_id\": 13,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 11,\n                    \"name\": \"Toner\",\n                    \"product_category_id\": 13,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 12,\n                    \"name\": \"Bath Bomb\",\n                    \"product_category_id\": 13,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 13,\n                    \"name\": \"Lip Balm\",\n                    \"product_category_id\": 13,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 14,\n                    \"name\": \"Massage Oil\",\n                    \"product_category_id\": 13,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 31,\n                    \"name\": \"Suppositories\",\n                    \"product_category_id\": 13,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 32,\n                    \"name\": \"Transdermal Patches\",\n                    \"product_category_id\": 13,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 33,\n                    \"name\": \"Capsules\",\n                    \"product_category_id\": 13,\n                    \"company_id\": null\n                }\n            ]\n        },\n        {\n            \"id\": 14,\n            \"name\": \"Pack To Order\",\n            \"short_display_name\": \"Pack to Order\",\n            \"long_display_name\": \"Pack to Order\",\n            \"product_types\": [\n                {\n                    \"id\": 99,\n                    \"name\": \"A Bud\",\n                    \"product_category_id\": 14,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 100,\n                    \"name\": \"B Bud\",\n                    \"product_category_id\": 14,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 101,\n                    \"name\": \"Popcorn\",\n                    \"product_category_id\": 14,\n                    \"company_id\": null\n                }\n            ]\n        }\n    ],\n    \"links\": {\n        \"first\": \"https://demo.bushel44.com/api/v1/product-categories?page=1\",\n        \"last\": \"https://demo.bushel44.com/api/v1/product-categories?page=1\",\n        \"prev\": null,\n        \"next\": null\n    },\n    \"meta\": {\n        \"current_page\": 1,\n        \"from\": 1,\n        \"last_page\": 1,\n        \"links\": [\n            {\n                \"url\": null,\n                \"label\": \"&laquo; Previous\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.bushel44.com/api/v1/product-categories?page=1\",\n                \"label\": \"1\",\n                \"active\": true\n            },\n            {\n                \"url\": null,\n                \"label\": \"Next &raquo;\",\n                \"active\": false\n            }\n        ],\n        \"path\": \"https://demo.bushel44.com/api/v1/product-categories\",\n        \"per_page\": 15,\n        \"to\": 13,\n        \"total\": 13\n    },\n    \"status\": \"success\"\n}"}],"_postman_id":"7ead472c-1939-41f1-a0c0-393b0f21f471"},{"name":"Product Category","id":"551b5efd-9fcd-41ea-9c0c-d9f34b0ecf65","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/v1/product-categories/{{product_category_id}}","description":"<p><strong>Token Permissions</strong></p>\n<ul>\n<li>view:products</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}},"urlObject":{"path":["v1","product-categories","{{product_category_id}}"],"host":["https://secure.bushel44.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"8b4df145-a5f0-41cf-9d61-d1242782c27b","name":"Product Category","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/product-categories/{{product_category_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 01:51:21 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Cache-Control","value":"no-cache, public, must-revalidate, proxy-revalidate"},{"key":"X-RateLimit-Limit","value":"5000"},{"key":"X-RateLimit-Remaining","value":"4997"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"product_category\": {\n        \"id\": 2,\n        \"name\": \"Prepack\",\n        \"short_display_name\": \"Prepack\",\n        \"long_display_name\": \"Prepack\",\n        \"product_types\": [\n            {\n                \"id\": 96,\n                \"name\": \"A Bud\",\n                \"product_category_id\": 2,\n                \"company_id\": null\n            },\n            {\n                \"id\": 97,\n                \"name\": \"B Bud\",\n                \"product_category_id\": 2,\n                \"company_id\": null\n            },\n            {\n                \"id\": 98,\n                \"name\": \"Popcorn\",\n                \"product_category_id\": 2,\n                \"company_id\": null\n            }\n        ]\n    }\n}"}],"_postman_id":"551b5efd-9fcd-41ea-9c0c-d9f34b0ecf65"}],"id":"b68e709c-aac3-4d5e-988f-7c6190df333c","_postman_id":"b68e709c-aac3-4d5e-988f-7c6190df333c","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}}},{"name":"Product Types","item":[{"name":"Product Types","id":"8832f41b-9fc7-41f0-97b5-011572bfefe8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/v1/product-types","description":"<p><strong>Token Permissions</strong></p>\n<ul>\n<li>view:products</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}},"urlObject":{"path":["v1","product-types"],"host":["https://secure.bushel44.com/api/v1"],"query":[{"disabled":true,"description":{"content":"<p>Number of records to return per page</p>\n","type":"text/plain"},"key":"per_page","value":"15"}],"variable":[]}},"response":[{"id":"e5f3f894-1c84-4ea5-ba62-6a025bc87e33","name":"Product Types","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"https://secure.bushel44.com/api/v1/product-types","host":["https://secure.bushel44.com/api/v1"],"path":["product-types"],"query":[{"key":"per_page","value":"15","description":"Number of records to return per page","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 01:46:55 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Cache-Control","value":"no-cache, public, must-revalidate, proxy-revalidate"},{"key":"X-RateLimit-Limit","value":"5000"},{"key":"X-RateLimit-Remaining","value":"4997"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 1,\n            \"name\": \"Biomass\",\n            \"product_category_id\": 1,\n            \"company_id\": null\n        },\n        {\n            \"id\": 2,\n            \"name\": \"Smokeable\",\n            \"product_category_id\": 1,\n            \"company_id\": null\n        },\n        {\n            \"id\": 3,\n            \"name\": \"Salve\",\n            \"product_category_id\": 13,\n            \"company_id\": null\n        },\n        {\n            \"id\": 4,\n            \"name\": \"Shampoo\",\n            \"product_category_id\": 13,\n            \"company_id\": null\n        },\n        {\n            \"id\": 5,\n            \"name\": \"Lotion\",\n            \"product_category_id\": 13,\n            \"company_id\": null\n        },\n        {\n            \"id\": 6,\n            \"name\": \"Soap\",\n            \"product_category_id\": 13,\n            \"company_id\": null\n        },\n        {\n            \"id\": 7,\n            \"name\": \"Balm\",\n            \"product_category_id\": 13,\n            \"company_id\": null\n        },\n        {\n            \"id\": 8,\n            \"name\": \"Mask\",\n            \"product_category_id\": 13,\n            \"company_id\": null\n        },\n        {\n            \"id\": 9,\n            \"name\": \"Serum\",\n            \"product_category_id\": 13,\n            \"company_id\": null\n        },\n        {\n            \"id\": 10,\n            \"name\": \"Cleanser\",\n            \"product_category_id\": 13,\n            \"company_id\": null\n        },\n        {\n            \"id\": 11,\n            \"name\": \"Toner\",\n            \"product_category_id\": 13,\n            \"company_id\": null\n        },\n        {\n            \"id\": 12,\n            \"name\": \"Bath Bomb\",\n            \"product_category_id\": 13,\n            \"company_id\": null\n        },\n        {\n            \"id\": 13,\n            \"name\": \"Lip Balm\",\n            \"product_category_id\": 13,\n            \"company_id\": null\n        },\n        {\n            \"id\": 14,\n            \"name\": \"Massage Oil\",\n            \"product_category_id\": 13,\n            \"company_id\": null\n        },\n        {\n            \"id\": 15,\n            \"name\": \"Beverage\",\n            \"product_category_id\": 11,\n            \"company_id\": null\n        }\n    ],\n    \"links\": {\n        \"first\": \"https://demo.bushel44.com/api/v1/product-types?page=1\",\n        \"last\": \"https://demo.bushel44.com/api/v1/product-types?page=6\",\n        \"prev\": null,\n        \"next\": \"https://demo.bushel44.com/api/v1/product-types?page=2\"\n    },\n    \"meta\": {\n        \"current_page\": 1,\n        \"from\": 1,\n        \"last_page\": 6,\n        \"links\": [\n            {\n                \"url\": null,\n                \"label\": \"&laquo; Previous\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.bushel44.com/api/v1/product-types?page=1\",\n                \"label\": \"1\",\n                \"active\": true\n            },\n            {\n                \"url\": \"https://demo.bushel44.com/api/v1/product-types?page=2\",\n                \"label\": \"2\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.bushel44.com/api/v1/product-types?page=3\",\n                \"label\": \"3\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.bushel44.com/api/v1/product-types?page=4\",\n                \"label\": \"4\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.bushel44.com/api/v1/product-types?page=5\",\n                \"label\": \"5\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.bushel44.com/api/v1/product-types?page=6\",\n                \"label\": \"6\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.bushel44.com/api/v1/product-types?page=2\",\n                \"label\": \"Next &raquo;\",\n                \"active\": false\n            }\n        ],\n        \"path\": \"https://demo.bushel44.com/api/v1/product-types\",\n        \"per_page\": 15,\n        \"to\": 15,\n        \"total\": 85\n    },\n    \"status\": \"success\"\n}"}],"_postman_id":"8832f41b-9fc7-41f0-97b5-011572bfefe8"},{"name":"Product Type","id":"92e16c0c-5a60-453f-bc62-d147aca99a2d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/v1/product-types/{{product_type_id}}","description":"<p><strong>Token Permissions</strong></p>\n<ul>\n<li>view:products</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}},"urlObject":{"path":["v1","product-types","{{product_type_id}}"],"host":["https://secure.bushel44.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"9e4c379b-10d6-4ae2-8738-1cfc75e0bad3","name":"Product Type","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/product-types/{{product_type_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 01:47:02 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Cache-Control","value":"no-cache, public, must-revalidate, proxy-revalidate"},{"key":"X-RateLimit-Limit","value":"5000"},{"key":"X-RateLimit-Remaining","value":"4996"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"product_type\": {\n        \"id\": 2,\n        \"name\": \"Smokeable\",\n        \"product_category_id\": 1,\n        \"company_id\": null\n    }\n}"}],"_postman_id":"92e16c0c-5a60-453f-bc62-d147aca99a2d"}],"id":"4188ed9c-e690-4297-b5ba-d9d1e7be7849","description":"<p>Product types cannot be created through the API due to manual association needed for marketplace grouping. Please reach out to support if you need a type created.</p>\n<p>Product Types belong to a Product Category. When attaching a product type to a product, First choose the product category and then use a type available to that category.</p>\n","_postman_id":"4188ed9c-e690-4297-b5ba-d9d1e7be7849","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}}},{"name":"Receiving Orders","item":[{"name":"Receiving Orders","id":"13f4ed12-1d23-475f-8d3f-6e86c11842f9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer ","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/v1/receiving-orders","description":"<p><strong>Required Filters</strong></p>\n<p><strong>updated_at_from</strong> is a required filter.</p>\n<p>The first time you call this endpoint you should call it from the date the company first joined, but subsequent calls should be restricted to only search for records updated since the last call if possible.</p>\n<p><strong>Token Permissions</strong></p>\n<ul>\n<li>view:receiving-orders</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}},"urlObject":{"path":["v1","receiving-orders"],"host":["https://secure.bushel44.com/api/v1"],"query":[{"disabled":true,"description":{"content":"<p>include order items</p>\n","type":"text/plain"},"key":"with_items","value":"false"},{"disabled":true,"description":{"content":"<p>include payments made on order</p>\n","type":"text/plain"},"key":"with_payments","value":"false"},{"disabled":true,"description":{"content":"<p>filter by ids</p>\n","type":"text/plain"},"key":"ids[]","value":"3"},{"disabled":true,"description":{"content":"<p>filter by created after query in UTC</p>\n","type":"text/plain"},"key":"created_at_from","value":"2025-04-20T22:04:50Z"},{"disabled":true,"description":{"content":"<p>filter by created before query in UTC</p>\n","type":"text/plain"},"key":"created_at_to","value":"2025-04-22T22:04:50Z"},{"disabled":true,"description":{"content":"<p>filter by updated after query in UTC **REQUIRED **</p>\n","type":"text/plain"},"key":"updated_at_from","value":"2025-04-20T22:04:50Z"},{"disabled":true,"description":{"content":"<p>filter by updated before query in UTC</p>\n","type":"text/plain"},"key":"updated_at_to","value":"2025-04-22T22:04:50Z"},{"disabled":true,"description":{"content":"<p>deprecated, will be removed in future version</p>\n","type":"text/plain"},"key":"order_data_from","value":"2025-04-20T22:04:50Z"},{"disabled":true,"description":{"content":"<p>deprecated, will be removed in future version</p>\n","type":"text/plain"},"key":"order_date_to","value":"2025-04-22T22:04:50Z"},{"disabled":true,"description":{"content":"<p>deprecated, will be removed in future version</p>\n","type":"text/plain"},"key":"delivery_date_from","value":"2025-04-20T22:04:50Z"},{"disabled":true,"description":{"content":"<p>deprecated, will be removed in future version</p>\n","type":"text/plain"},"key":"delivery_date_to","value":"2025-04-22T22:04:50Z"},{"disabled":true,"description":{"content":"<p>Number of records to return per page</p>\n","type":"text/plain"},"key":"per_page","value":"15"},{"disabled":true,"description":{"content":"<p>filter by seller company ids</p>\n","type":"text/plain"},"key":"seller_company_ids[]","value":"3"},{"disabled":true,"description":{"content":"<p>filter by cancelled. All returned if no key present</p>\n","type":"text/plain"},"key":"cancelled","value":"false"},{"disabled":true,"description":{"content":"<p>filter by invoice number</p>\n","type":"text/plain"},"key":"invoice_number","value":"high-hopes-3"}],"variable":[]}},"response":[],"_postman_id":"13f4ed12-1d23-475f-8d3f-6e86c11842f9"},{"name":"Receiving Order","id":"16701e83-c9da-46c4-82db-38d9f4a8fac7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer ","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/v1/receiving-orders/2","description":"<p><strong>Required Filters</strong></p>\n<p><strong>updated_at_from</strong> is a required filter.</p>\n<p>The first time you call this endpoint you should call it from the date the company first joined, but subsequent calls should be restricted to only search for records updated since the last call if possible.</p>\n<p><strong>Token Permissions</strong></p>\n<ul>\n<li>view:receiving-orders</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}},"urlObject":{"path":["v1","receiving-orders","2"],"host":["https://secure.bushel44.com/api/v1"],"query":[{"disabled":true,"description":{"content":"<p>include order history</p>\n","type":"text/plain"},"key":"with_history","value":"false"}],"variable":[]}},"response":[],"_postman_id":"16701e83-c9da-46c4-82db-38d9f4a8fac7"}],"id":"6a83d17c-475a-4a89-8402-43abbb1c35ed","description":"<p>A receiving order is for the purchaser.</p>\n<ul>\n<li><p>The seller_company_id is the company_id of the seller</p>\n</li>\n<li><p>The buyer_company_id is the company_id of the purchaser, the owner of the api token that can access it through these endpoints</p>\n</li>\n<li><p>The buyer_id is the seller's CRM relation of the buyer.</p>\n</li>\n</ul>\n<p>Order Item Information</p>\n<ul>\n<li><p>order_quantity should be pared with order_unit_measurement to determine the sales quantities. Eg 5 2gram packs, or 3 cases (units_per_case of 3).</p>\n</li>\n<li><p>inventory_quantity should be pared with unit_measurement to determine base units of measure, in above example it would be 10 grams and 9 units.</p>\n</li>\n<li><p>A unit_size_unit_measurement is also available on some categories. This will allow you to see the size of items listed in single units, eg containers are sold in units but their size is in pounds.</p>\n</li>\n</ul>\n","_postman_id":"6a83d17c-475a-4a89-8402-43abbb1c35ed","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}}},{"name":"Shipping Orders","item":[{"name":"Payment","item":[{"name":"Payment","id":"f70a28bb-f002-47eb-bad1-5ed20a998700","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer ","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/v1/shipping-orders/2/payments/2","description":"<p><strong>Token Permissions</strong></p>\n<ul>\n<li>view:shipping-orders</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}},"urlObject":{"path":["v1","shipping-orders","2","payments","2"],"host":["https://secure.bushel44.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"376e2ce2-33f4-4e5a-b97a-18d7414f0ed8","name":"Payment","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer ","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/shipping-orders/2/payments/2"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 02:18:31 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Cache-Control","value":"no-cache, public, must-revalidate, proxy-revalidate"},{"key":"X-RateLimit-Limit","value":"5000"},{"key":"X-RateLimit-Remaining","value":"4998"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"payment\": {\n        \"id\": 308,\n        \"order_id\": 20090,\n        \"amount\": \"35.00\",\n        \"payment_date\": \"2025-02-23T00:00:00.000000Z\",\n        \"type\": \"payment\",\n        \"pay_type\": \"Cash\",\n        \"note\": \"This is a note\",\n        \"created_at\": \"2025-05-21T02:17:49.000000Z\",\n        \"updated_at\": \"2025-05-21T02:17:49.000000Z\"\n    }\n}"}],"_postman_id":"f70a28bb-f002-47eb-bad1-5ed20a998700"},{"name":"Payment","id":"78c5bc63-ca21-4523-bee9-edf4c563337d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer ","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/v1/shipping-orders/2/payments/2","description":"<p><strong>Token Permissions</strong></p>\n<ul>\n<li>update:shipping-orders</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}},"urlObject":{"path":["v1","shipping-orders","2","payments","2"],"host":["https://secure.bushel44.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"d78686bd-77d6-41ee-8da3-08a50f3143f6","name":"Payment","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer ","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/shipping-orders/2/payments/2"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 02:18:45 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Cache-Control","value":"no-cache, public, must-revalidate, proxy-revalidate"},{"key":"X-RateLimit-Limit","value":"5000"},{"key":"X-RateLimit-Remaining","value":"4996"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Payment deleted successfully\"\n}"}],"_postman_id":"78c5bc63-ca21-4523-bee9-edf4c563337d"},{"name":"Payment","id":"aa19c68e-ce0e-4ced-99f4-84d999be4ca2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Authorization","value":"Bearer ","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"amount","value":"","description":"<p>optional, not nullable | [integer] note: in cents. 35 = $0.35, 3500 = $35.00</p>\n","type":"text","uuid":"3a1ad03e-2a2c-41b1-b8cc-ee640358ac7f","disabled":true},{"key":"note","value":"","description":"<p>optional, nullable | [string]</p>\n","type":"text","uuid":"aa6da355-da72-4aad-8047-1c17081280c7","disabled":true},{"key":"pay_type","value":"Check","description":"<p>optional, nullable | [string] enum [Cash,Check,Credit Card,ACH,Wire,Escrow,Venmo,Cash App,Zelle,Money Order]</p>\n","type":"text","uuid":"289a14fe-699d-4fe2-b6c9-ca988fbcb8a5"},{"key":"payment_date","value":"","description":"<p>optional, not nullable | [date] yyyy-mm-dd</p>\n","type":"text","uuid":"3a71cd6c-34f0-4f57-b639-07ebb00daa53","disabled":true}]},"url":"https://secure.bushel44.com/api/v1/v1/shipping-orders/2/payments/2","description":"<p><strong>Token Permissions</strong></p>\n<ul>\n<li>update:shipping-orders</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}},"urlObject":{"path":["v1","shipping-orders","2","payments","2"],"host":["https://secure.bushel44.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"f6bf4ab5-35ea-4bff-931c-9354e2f70716","name":"Payment","originalRequest":{"method":"PATCH","header":[{"key":"Authorization","value":"Bearer ","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"amount","value":"","description":"optional, not nullable | <integer> note: in cents. 35 = $0.35, 3500 = $35.00","type":"text","uuid":"3a1ad03e-2a2c-41b1-b8cc-ee640358ac7f","disabled":true},{"key":"note","value":"","description":"optional, nullable | <string>","type":"text","uuid":"aa6da355-da72-4aad-8047-1c17081280c7","disabled":true},{"key":"pay_type","value":"Check","description":"optional, nullable | <string> | enum [Cash,Check,Credit Card,ACH,Wire,Escrow,Venmo,Cash App,Zelle,Money Order]","type":"text","uuid":"289a14fe-699d-4fe2-b6c9-ca988fbcb8a5"},{"key":"payment_date","value":"","description":"optional, not nullable | <date> yyyy-mm-dd","type":"text","uuid":"3a71cd6c-34f0-4f57-b639-07ebb00daa53","disabled":true}]},"url":"https://secure.bushel44.com/api/v1/shipping-orders/2/payments/2"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 02:19:26 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Cache-Control","value":"no-cache, public, must-revalidate, proxy-revalidate"},{"key":"X-RateLimit-Limit","value":"5000"},{"key":"X-RateLimit-Remaining","value":"4999"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"payment\": {\n        \"id\": 309,\n        \"order_id\": 20090,\n        \"amount\": \"35.00\",\n        \"payment_date\": \"2025-02-23T00:00:00.000000Z\",\n        \"type\": \"payment\",\n        \"pay_type\": \"Check\",\n        \"note\": \"This is a note\",\n        \"created_at\": \"2025-05-21T02:18:59.000000Z\",\n        \"updated_at\": \"2025-05-21T02:19:26.000000Z\"\n    }\n}"}],"_postman_id":"aa19c68e-ce0e-4ced-99f4-84d999be4ca2"},{"name":"Payment","id":"c7890aff-7d62-4f23-ac43-8800163c398c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer ","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"amount","value":"3500","description":"<p>required | [integer] note: in cents. 35 = $0.35, 3500 = $35.00</p>\n","type":"text","uuid":"c386bbff-55e6-4644-a7b8-ba82d404dbe3"},{"key":"type","value":"payment","description":"<p>required | [string] enum[payment,write off,credit]</p>\n","type":"text","uuid":"d8436e8d-628e-427f-be00-63fcc3401556"},{"key":"payment_date","value":"2025-02-23","description":"<p>required | [date] yyyy-mm-dd</p>\n","type":"text","uuid":"678a6e95-ec84-4ade-af55-e2e2b9001371"},{"key":"pay_type","value":"Cash","description":"<p>optional | [string] enum[Cash,Check,Credit Card,ACH,Wire,Escrow,Venmo,Cash App,Zelle,Money Order]</p>\n","type":"text","uuid":"1079c13d-3f4f-47d7-9203-aac091a18720"},{"key":"note","value":"This is a note","description":"<p>optional | [string]</p>\n","type":"text","uuid":"b9cdd78c-e95b-4b62-97a8-97ca7b8be6c9"}]},"url":"https://secure.bushel44.com/api/v1/v1/shipping-orders/2/payments","description":"<p><strong>Token Permissions</strong></p>\n<ul>\n<li>update:shipping-orders</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}},"urlObject":{"path":["v1","shipping-orders","2","payments"],"host":["https://secure.bushel44.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"32c05f34-1049-42d3-bb53-1f31bda51d11","name":"Payment","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer ","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"amount","value":"3500","description":"required | <integer> note: in cents. 35 = $0.35, 3500 = $35.00","type":"text","uuid":"c386bbff-55e6-4644-a7b8-ba82d404dbe3"},{"key":"type","value":"payment","description":"required | <string> | enum[payment,write off,credit]","type":"text","uuid":"d8436e8d-628e-427f-be00-63fcc3401556"},{"key":"payment_date","value":"2025-02-23","description":"required | <date> yyyy-mm-dd","type":"text","uuid":"678a6e95-ec84-4ade-af55-e2e2b9001371"},{"key":"pay_type","value":"Cash","description":"optional | <string> enum[Cash,Check,Credit Card,ACH,Wire,Escrow,Venmo,Cash App,Zelle,Money Order]","type":"text","uuid":"1079c13d-3f4f-47d7-9203-aac091a18720"},{"key":"note","value":"This is a note","description":"optional | <string> ","type":"text","uuid":"b9cdd78c-e95b-4b62-97a8-97ca7b8be6c9"}]},"url":"https://secure.bushel44.com/api/v1/shipping-orders/2/payments"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 02:17:50 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Cache-Control","value":"no-cache, public, must-revalidate, proxy-revalidate"},{"key":"X-RateLimit-Limit","value":"5000"},{"key":"X-RateLimit-Remaining","value":"4997"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"payment\": {\n        \"id\": 308,\n        \"order_id\": 20090,\n        \"amount\": \"35.00\",\n        \"payment_date\": \"2025-02-23T00:00:00.000000Z\",\n        \"type\": \"payment\",\n        \"pay_type\": \"Cash\",\n        \"note\": \"This is a note\",\n        \"created_at\": \"2025-05-21T02:17:49.000000Z\",\n        \"updated_at\": \"2025-05-21T02:17:49.000000Z\"\n    }\n}"}],"_postman_id":"c7890aff-7d62-4f23-ac43-8800163c398c"}],"id":"562ed02c-fb0f-4f1f-a3a9-f64be2f511b7","description":"<p><strong>Token Permissions</strong></p>\n<ul>\n<li><p>view:shipping-orders</p>\n</li>\n<li><p>update:shipping-orders</p>\n</li>\n</ul>\n","_postman_id":"562ed02c-fb0f-4f1f-a3a9-f64be2f511b7","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}}},{"name":"Shipping Orders","id":"a953d4d1-7046-45fd-8b91-e69ac8d61525","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer ","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/v1/shipping-orders?per_page=2","description":"<p><strong>updated_at_from</strong> is a required filter.</p>\n<p>The first time you call this endpoint you should call it from the date the company first joined, but subsequent calls should be restricted to only search for records updated since the last call if possible.</p>\n<p><strong>Token Permissions</strong></p>\n<ul>\n<li>view:shipping-orders</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}},"urlObject":{"path":["v1","shipping-orders"],"host":["https://secure.bushel44.com/api/v1"],"query":[{"disabled":true,"description":{"content":"<p>include order items</p>\n","type":"text/plain"},"key":"with_items","value":"false"},{"disabled":true,"description":{"content":"<p>include payments made on order</p>\n","type":"text/plain"},"key":"with_payments","value":"false"},{"disabled":true,"description":{"content":"<p>filter by ids</p>\n","type":"text/plain"},"key":"ids[]","value":"3"},{"disabled":true,"description":{"content":"<p>filter by invoice number</p>\n","type":"text/plain"},"key":"invoice_number","value":"high-hopes-3"},{"disabled":true,"description":{"content":"<p>filter by buyer ids</p>\n","type":"text/plain"},"key":"buyer_ids[]","value":"3"},{"disabled":true,"description":{"content":"<p>filter by created after query in UTC</p>\n","type":"text/plain"},"key":"created_at_from","value":"2025-04-20T22:04:50Z"},{"disabled":true,"description":{"content":"<p>filter by created before query in UTC</p>\n","type":"text/plain"},"key":"created_at_to","value":"2025-04-22T22:04:50Z"},{"disabled":true,"description":{"content":"<p>filter by updated after query in UTC **REQUIRED **</p>\n","type":"text/plain"},"key":"updated_at_from","value":"2025-04-20T22:04:50Z"},{"disabled":true,"description":{"content":"<p>filter by updated before query in UTC</p>\n","type":"text/plain"},"key":"updated_at_to","value":"2025-04-21T22:04:50Z"},{"disabled":true,"description":{"content":"<p>deprecated, will be removed in future version</p>\n","type":"text/plain"},"key":"order_data_from","value":"2025-04-20T22:04:50Z"},{"disabled":true,"description":{"content":"<p>deprecated, will be removed in future version</p>\n","type":"text/plain"},"key":"order_date_to","value":"2025-04-22T22:04:50Z"},{"disabled":true,"description":{"content":"<p>deprecated, will be removed in future version</p>\n","type":"text/plain"},"key":"delivery_date_from","value":"2025-04-20T22:04:50Z"},{"disabled":true,"description":{"content":"<p>deprecated, will be removed in future version</p>\n","type":"text/plain"},"key":"delivery_date_to","value":"2025-04-22T22:04:50Z"},{"description":{"content":"<p>Number of records to return per page</p>\n","type":"text/plain"},"key":"per_page","value":"2"},{"disabled":true,"description":{"content":"<p>filter by cancelled. All returned if no key present</p>\n","type":"text/plain"},"key":"cancelled","value":"false"},{"disabled":true,"description":{"content":"<p>filter by order status ids</p>\n","type":"text/plain"},"key":"order_status_ids[]","value":"3"},{"disabled":true,"key":"","value":""}],"variable":[]}},"response":[],"_postman_id":"a953d4d1-7046-45fd-8b91-e69ac8d61525"},{"name":"Shipping Order","id":"9611ae75-b5b8-4f7c-989a-4714d5de0aa9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer ","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/v1/shipping-orders/2?with_deal_flow=true","description":"<p><strong>updated_at_from</strong> is a required filter.</p>\n<p>The first time you call this endpoint you should call it from the date the company first joined, but subsequent calls should be restricted to only search for records updated since the last call if possible.</p>\n<p><strong>Token Permissions</strong></p>\n<ul>\n<li>view:shipping-orders</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}},"urlObject":{"path":["v1","shipping-orders","2"],"host":["https://secure.bushel44.com/api/v1"],"query":[{"disabled":true,"description":{"content":"<p>include order history</p>\n","type":"text/plain"},"key":"with_history","value":"true"},{"description":{"content":"<p>include deal flow</p>\n","type":"text/plain"},"key":"with_deal_flow","value":"true"}],"variable":[]}},"response":[],"_postman_id":"9611ae75-b5b8-4f7c-989a-4714d5de0aa9"},{"name":"Shipping Order","id":"31873ad4-9c84-4797-928d-885a6b914895","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Authorization","value":"Bearer ","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"order_status_id","value":"941","description":"<p>optional, not nullable | [integer]</p>\n","type":"text","uuid":"7f42e408-2bb9-49e0-bab9-cf89ca935207"}]},"url":"https://secure.bushel44.com/api/v1/v1/shipping-orders/2","description":"<p>You may update a subset of the order fields. The only currently supported field is the order_status_id.</p>\n<p><strong>Token Permissions</strong></p>\n<ul>\n<li>update:shipping-orders</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}},"urlObject":{"path":["v1","shipping-orders","2"],"host":["https://secure.bushel44.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"0339bd04-e10e-44c1-9240-4f7f88d328f4","name":"Shipping Order","originalRequest":{"method":"PATCH","header":[{"key":"Authorization","value":"Bearer ","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"order_status_id","value":"941","description":"Integer | Optional, not nullable","type":"text","uuid":"7f42e408-2bb9-49e0-bab9-cf89ca935207"}]},"url":"https://secure.bushel44.com/api/v1/shipping-orders/2"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 02:17:20 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Cache-Control","value":"no-cache, public, must-revalidate, proxy-revalidate"},{"key":"X-RateLimit-Limit","value":"5000"},{"key":"X-RateLimit-Remaining","value":"4998"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"order\": {\n        \"id\": 20090,\n        \"uuid\": \"2df95c34-f00e-42cf-b100-f84bdd786618\",\n        \"invoice_number\": 20090,\n        \"subtotal\": \"36000.00\",\n        \"total\": \"31370.00\",\n        \"excise_tax\": \"0.00\",\n        \"excise_tax_percentage\": null,\n        \"additional_discount\": \"0.00\",\n        \"delivery_cost\": \"0.00\",\n        \"cultivation_tax\": \"0.00\",\n        \"cultivation_tax_percentage\": null,\n        \"order_date\": \"2020-07-07T07:00:00.000000Z\",\n        \"created_by\": \"Buyer\",\n        \"operation_id\": 4,\n        \"order_status_id\": 941,\n        \"cancelled\": false,\n        \"deal_flow_id\": 7,\n        \"net_terms_id\": 7,\n        \"pricing_tier_id\": 1,\n        \"delivery_date\": null,\n        \"due_date\": null,\n        \"estimated_departure_date\": null,\n        \"estimated_arrival_date\": null,\n        \"manifest_number\": null,\n        \"invoice_note\": null,\n        \"shipping_method\": \"TBD\",\n        \"ship_name\": \"Grateful CBD - Albuquerque\",\n        \"ship_line_one\": \"456 Route 1\",\n        \"ship_line_two\": null,\n        \"ship_city\": \"Albuquerque\",\n        \"ship_state\": \"New Mexico\",\n        \"ship_zip\": \"90343\",\n        \"ship_country\": \"United States\",\n        \"ship_from_name\": \"High Hopes Industries\",\n        \"ship_from_line_one\": \"35 Apex Way\",\n        \"ship_from_line_two\": null,\n        \"ship_from_city\": \"Atlanta\",\n        \"ship_from_state\": \"Georgia\",\n        \"ship_from_zip\": \"30301\",\n        \"ship_from_country\": \"US\",\n        \"turnaround_time\": \"3-5 Business Days\",\n        \"ship_tracking_number\": null,\n        \"ship_receiving_details\": null,\n        \"total_payments\": \"31370.00\",\n        \"total_credits\": \"0.00\",\n        \"payment_status\": \"completed\",\n        \"payments_currently_due\": \"0.00\",\n        \"total_write_offs\": \"0.00\",\n        \"backorder\": false,\n        \"backorder_status\": null,\n        \"buyer_note\": null,\n        \"seller_company_id\": 4,\n        \"buyer_id\": 2,\n        \"buyer_company_id\": 9,\n        \"buyer_contact_name\": null,\n        \"buyer_contact_phone\": null,\n        \"buyer_contact_email\": null,\n        \"buyer_state_license\": null,\n        \"buyer_location_id\": null,\n        \"created_at\": \"2020-06-10T16:33:55.000000Z\",\n        \"updated_at\": \"2025-05-08T13:10:58.000000Z\",\n        \"transporters\": [],\n        \"buyer\": {\n            \"id\": 2,\n            \"name\": \"Grateful CBD\"\n        },\n        \"payments\": [\n            {\n                \"id\": 29,\n                \"order_id\": 20090,\n                \"amount\": \"20000.00\",\n                \"payment_date\": \"2020-06-11T00:00:00.000000Z\",\n                \"type\": \"payment\",\n                \"pay_type\": null,\n                \"note\": null,\n                \"created_at\": \"2020-06-10T16:34:51.000000Z\",\n                \"updated_at\": \"2020-06-10T16:34:51.000000Z\"\n            },\n            {\n                \"id\": 101,\n                \"order_id\": 20090,\n                \"amount\": \"11370.00\",\n                \"payment_date\": \"2020-10-15T00:00:00.000000Z\",\n                \"type\": \"payment\",\n                \"pay_type\": null,\n                \"note\": null,\n                \"created_at\": \"2020-10-15T16:40:09.000000Z\",\n                \"updated_at\": \"2020-10-15T16:40:09.000000Z\"\n            }\n        ],\n        \"term\": {\n            \"name\": \"COD\"\n        },\n        \"pricing_tier\": {\n            \"name\": \"10% Off All Products\",\n            \"type\": \"Total\",\n            \"percent\": 10,\n            \"direction\": \"Discount\",\n            \"exclude_from_bulk_discounts\": true,\n            \"summary\": null,\n            \"expiration\": \"2022-02-11T08:00:00.000000Z\"\n        },\n        \"order_status\": {\n            \"id\": 941,\n            \"name\": \"Quote\",\n            \"payment_percentage\": 0,\n            \"archived\": false,\n            \"position\": 1,\n            \"parent_status\": {\n                \"id\": 1,\n                \"name\": \"Submitted\"\n            }\n        },\n        \"notes\": [],\n        \"sales_reps\": [\n            {\n                \"name\": \"John Manlove\",\n                \"phone\": \"9714076898\",\n                \"email\": \"john@bushel44.com\"\n            }\n        ],\n        \"metrc_transfer_template\": null,\n        \"items\": [\n            {\n                \"id\": 146,\n                \"order_id\": 20090,\n                \"operation_id\": 4,\n                \"brand_id\": null,\n                \"product_category_id\": 6,\n                \"order_quantity\": 30,\n                \"order_price\": \"1200.00\",\n                \"listing_price\": \"1400.00\",\n                \"product_type_id\": 35,\n                \"product_id\": 3,\n                \"batch_id\": 3,\n                \"order_sample\": 0,\n                \"sample_quantity_label\": \"Sample\",\n                \"sample_quantity_pulled_from_inventory\": 0,\n                \"sample_size\": null,\n                \"bulk_discounts_enabled\": true,\n                \"note\": null,\n                \"tiered_surcharge\": null,\n                \"metrc_package_label\": null,\n                \"operation_license\": null,\n                \"product_sku\": \"THCFDIST\",\n                \"description\": \"THC-free distillate is a broad-spectrum distillate with the THC removed using a proprietary extraction process. The result is an ingredient with 80–90% CBD potency, as well as terpenes and other minor cannabinoids such as CBG and CBN\",\n                \"ingredients\": \"Feather meal, bat guano, fish meal, seabird guano, oyster shell, alfalfa meal, volcanic ash, blood meal, crab meal, rock phosphate, fish bone meal, glacial rock dust, sulfate of potash, langbeinite, kelp meal\",\n                \"product_cultivar_id\": 177,\n                \"product_cultivar_type_id\": 5,\n                \"product_crude_extract_type_id\": null,\n                \"product_distillate_extract_sub_type_id\": null,\n                \"product_unit_measurement_id\": 6,\n                \"unit_size_unit_measurement_id\": null,\n                \"state_of_material_id\": null,\n                \"product_grow_environment_id\": null,\n                \"product_grow_medium_id\": null,\n                \"product_drying_method_id\": null,\n                \"product_storage_type_id\": null,\n                \"product_container_type_id\": null,\n                \"product_trim_method_id\": null,\n                \"flowering_period_id\": null,\n                \"product_packaged_unit_size_id\": null,\n                \"feminized\": null,\n                \"feminized_type_id\": null,\n                \"units_per_package\": null,\n                \"units_per_case\": null,\n                \"gram_per_preroll\": null,\n                \"lineage\": null,\n                \"germination_rate\": null,\n                \"herm_male_rate\": null,\n                \"ingredients_upload\": null,\n                \"yields_per_acre_outdoor\": null,\n                \"per_sq_ft_indoor\": null,\n                \"curing_method\": null,\n                \"extraction_method_id\": 7,\n                \"flavor_id\": null,\n                \"predominate_canabinoid_id\": 2,\n                \"unit_size\": null,\n                \"product_infusion_id\": null,\n                \"for_pets\": false,\n                \"minimum_sales_price\": null,\n                \"seeded\": null,\n                \"harvest_date\": null,\n                \"dry_date\": null,\n                \"extraction_date\": null,\n                \"best_by_date\": null,\n                \"production_date\": null,\n                \"test_date\": null,\n                \"thc_limit\": true,\n                \"back_order\": false,\n                \"predominate_canabinoid_min_or_only\": 85,\n                \"predominate_canabinoid_max\": null,\n                \"predominate_canabinoid_unit\": \"%\",\n                \"storage_location\": null,\n                \"cost_of_goods\": null,\n                \"true_cost\": null,\n                \"product_name\": \"THC Free Distillate\",\n                \"batch_name\": \"THCFDIST-1\",\n                \"created_at\": \"2020-06-10T16:33:55.000000Z\",\n                \"updated_at\": \"2020-06-10T16:35:27.000000Z\",\n                \"unit_price\": [],\n                \"operation\": {\n                    \"id\": 4,\n                    \"name\": \"Apex Extractions\",\n                    \"industry\": null,\n                    \"state_license\": null\n                },\n                \"product_category\": {\n                    \"id\": 6,\n                    \"name\": \"Bulk Extract\",\n                    \"short_display_name\": \"Bulk Extracts\",\n                    \"long_display_name\": \"Bulk Extracts\"\n                },\n                \"brand\": null,\n                \"product_type\": {\n                    \"id\": 35,\n                    \"name\": \"Distillate\",\n                    \"product_category_id\": 6,\n                    \"company_id\": null\n                },\n                \"modifiers\": [\n                    {\n                        \"amount\": \"4480.00\",\n                        \"type\": \"discount\",\n                        \"bulk_discount\": false,\n                        \"reason\": \"Pricing Tier\",\n                        \"created_at\": \"2020-06-10T16:33:55.000000Z\",\n                        \"updated_at\": \"2020-06-10T16:33:55.000000Z\"\n                    },\n                    {\n                        \"amount\": \"150.00\",\n                        \"type\": \"discount\",\n                        \"bulk_discount\": true,\n                        \"reason\": \"Bulk Discount\",\n                        \"created_at\": \"2020-06-10T16:35:46.000000Z\",\n                        \"updated_at\": \"2020-06-10T16:35:46.000000Z\"\n                    }\n                ],\n                \"distillate_extract_sub_type\": null,\n                \"crude_extract_sub_type\": null,\n                \"cultivar\": {\n                    \"id\": 177,\n                    \"name\": \"Lifter\"\n                },\n                \"cultivar_type\": {\n                    \"id\": 5,\n                    \"name\": \"Sativa Dom. Hybrid\"\n                },\n                \"unit_measurement\": {\n                    \"name\": \"Kilogram\",\n                    \"alias\": \"Kg\"\n                },\n                \"unit_size_unit_measurement\": null,\n                \"state_of_material\": null,\n                \"grow_environment\": null,\n                \"grow_medium\": null,\n                \"drying_method\": null,\n                \"storage_type\": null,\n                \"container_type\": null,\n                \"trim_method\": null,\n                \"packaged_unit_size\": null,\n                \"feminized_type\": null,\n                \"flowering_period\": null,\n                \"flavor\": null,\n                \"extraction_method\": {\n                    \"id\": 7,\n                    \"name\": \"Hydrocarbon\"\n                },\n                \"infusion_method\": null,\n                \"predominate_canabinoid\": {\n                    \"id\": 2,\n                    \"name\": \"Cannabidiol\",\n                    \"abbreviation\": \"CBD\",\n                    \"display_name\": \"(CBD) Cannabidiol\"\n                },\n                \"images\": [\n                    {\n                        \"link\": \"https://s3-us-west-2.amazonaws.com//public/companies/4/images/product/3/1585249569-distillate_processed.jpg\"\n                    }\n                ],\n                \"additional_cannabinoids\": [\n                    {\n                        \"id\": 4,\n                        \"batch_id\": 3,\n                        \"product_id\": 3,\n                        \"name\": \"Cannabielsoin\",\n                        \"abbreviation\": \"CBE\",\n                        \"display_name\": \"(CBE) Cannabielsoin\",\n                        \"measurement\": \"0.2\",\n                        \"measurement_type\": \"%\"\n                    },\n                    {\n                        \"id\": 5,\n                        \"batch_id\": 3,\n                        \"product_id\": 3,\n                        \"name\": \"Cannabigerol\",\n                        \"abbreviation\": \"CBG\",\n                        \"display_name\": \"(CBG) Cannabigerol\",\n                        \"measurement\": \"0.8\",\n                        \"measurement_type\": \"%\"\n                    },\n                    {\n                        \"id\": 14,\n                        \"batch_id\": 3,\n                        \"product_id\": 3,\n                        \"name\": \"Δ9-Tetrahydrocannabinol\",\n                        \"abbreviation\": \"Δ9-THC\",\n                        \"display_name\": \"(Δ9-THC) Δ9-Tetrahydrocannabinol\",\n                        \"measurement\": \"0.003\",\n                        \"measurement_type\": \"%\"\n                    }\n                ],\n                \"terpenes\": []\n            }\n        ]\n    }\n}"}],"_postman_id":"31873ad4-9c84-4797-928d-885a6b914895"}],"id":"9333780c-141a-4123-934d-ba43abd5a14c","description":"<p>A shipping order belongs to the seller on an order</p>\n<ul>\n<li><p>The seller_company_id is the company_id of the seller, the owner of the api token that can access it through these endpoints</p>\n</li>\n<li><p>The buyer_company_id is the company_id of the purchaser</p>\n</li>\n<li><p>The buyer_id is the seller's CRM relation of the buyer.</p>\n</li>\n<li><p>order_status_id: The status of an order. Note that this status is dynamic. To learn more, please see the Deal Flow documentation</p>\n</li>\n</ul>\n<p>Order Item Information</p>\n<ul>\n<li><p>order_quantity should be pared with order_unit_measurement to determine the sales quantities. Eg 5 2gram packs, or 3 cases (units_per_case of 3).</p>\n</li>\n<li><p>inventory_quantity should be pared with unit_measurement to determine base units of measure, in above example it would be 10 grams and 9 units.</p>\n</li>\n<li><p>A unit_size_unit_measurement is also available on some categories. This will allow you to see the size of items listed in single units, eg containers are sold in units but their size is in pounds.</p>\n</li>\n<li><p>order_sales_unit_listing_price gives you the original listing price of the batch. This is the computed listing price that is determined based on the type of sale, eg unit or case.</p>\n</li>\n</ul>\n","_postman_id":"9333780c-141a-4123-934d-ba43abd5a14c","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}}},{"name":"State Of Materials","item":[{"name":"State Of Materials","id":"5631b97d-1786-49fa-a376-cf1bc50a347e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/v1/state-of-materials","description":"<p><strong>Token Permissions</strong></p>\n<ul>\n<li>view:products</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}},"urlObject":{"path":["v1","state-of-materials"],"host":["https://secure.bushel44.com/api/v1"],"query":[{"disabled":true,"description":{"content":"<p>Number of records to return per page</p>\n","type":"text/plain"},"key":"per_page","value":"15"}],"variable":[]}},"response":[{"id":"181f375a-5a2b-4b73-a7b3-3e9eadc14d3f","name":"State Of Materials","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"https://secure.bushel44.com/api/v1/state-of-materials","host":["https://secure.bushel44.com/api/v1"],"path":["state-of-materials"],"query":[{"key":"per_page","value":"15","description":"Number of records to return per page","type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 01:53:58 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Cache-Control","value":"no-cache, public, must-revalidate, proxy-revalidate"},{"key":"X-RateLimit-Limit","value":"5000"},{"key":"X-RateLimit-Remaining","value":"4996"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 1,\n            \"name\": \"Ground\"\n        },\n        {\n            \"id\": 2,\n            \"name\": \"Hammer Milled\"\n        },\n        {\n            \"id\": 3,\n            \"name\": \"Milled\"\n        },\n        {\n            \"id\": 4,\n            \"name\": \"Pelletized\"\n        },\n        {\n            \"id\": 5,\n            \"name\": \"Shucked\"\n        },\n        {\n            \"id\": 6,\n            \"name\": \"Shredded\"\n        },\n        {\n            \"id\": 7,\n            \"name\": \"Dry Bailed\"\n        },\n        {\n            \"id\": 8,\n            \"name\": \"Frozen\"\n        }\n    ],\n    \"links\": {\n        \"first\": \"https://demo.bushel44.com/api/v1/state-of-materials?page=1\",\n        \"last\": \"https://demo.bushel44.com/api/v1/state-of-materials?page=1\",\n        \"prev\": null,\n        \"next\": null\n    },\n    \"meta\": {\n        \"current_page\": 1,\n        \"from\": 1,\n        \"last_page\": 1,\n        \"links\": [\n            {\n                \"url\": null,\n                \"label\": \"&laquo; Previous\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.bushel44.com/api/v1/state-of-materials?page=1\",\n                \"label\": \"1\",\n                \"active\": true\n            },\n            {\n                \"url\": null,\n                \"label\": \"Next &raquo;\",\n                \"active\": false\n            }\n        ],\n        \"path\": \"https://demo.bushel44.com/api/v1/state-of-materials\",\n        \"per_page\": 15,\n        \"to\": 8,\n        \"total\": 8\n    },\n    \"status\": \"success\"\n}"}],"_postman_id":"5631b97d-1786-49fa-a376-cf1bc50a347e"},{"name":"State Of Material","id":"bd7feda8-d420-475b-8a86-7ef4602a9fb6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/v1/state-of-materials/{{state_of_material_id}}","description":"<p><strong>Token Permissions</strong></p>\n<ul>\n<li>view:products</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}},"urlObject":{"path":["v1","state-of-materials","{{state_of_material_id}}"],"host":["https://secure.bushel44.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"f71c4e9f-a458-4f9e-9cf4-fcd17ccde336","name":"State Of Material","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/state-of-materials/{{state_of_material_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 01:54:09 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Cache-Control","value":"no-cache, public, must-revalidate, proxy-revalidate"},{"key":"X-RateLimit-Limit","value":"5000"},{"key":"X-RateLimit-Remaining","value":"4995"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 2,\n        \"name\": \"Hammer Milled\"\n    }\n}"}],"_postman_id":"bd7feda8-d420-475b-8a86-7ef4602a9fb6"}],"id":"cd5eafcd-238c-4c24-9770-4bbf78e2df42","_postman_id":"cd5eafcd-238c-4c24-9770-4bbf78e2df42","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}}},{"name":"Storage Types","item":[{"name":"Storage Types","id":"802dc59e-67d4-4600-a24a-3141c31a1e93","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/v1/storage-types","description":"<p><strong>Token Permissions</strong></p>\n<ul>\n<li>view:products</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}},"urlObject":{"path":["v1","storage-types"],"host":["https://secure.bushel44.com/api/v1"],"query":[{"disabled":true,"description":{"content":"<p>Number of records to return per page</p>\n","type":"text/plain"},"key":"per_page","value":"15"}],"variable":[]}},"response":[{"id":"d61a2a38-901d-45e4-8e1a-fc2b4babe5c0","name":"Storage Types","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"https://secure.bushel44.com/api/v1/storage-types","host":["https://secure.bushel44.com/api/v1"],"path":["storage-types"],"query":[{"key":"per_page","value":"15","description":"Number of records to return per page","type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 01:59:39 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Cache-Control","value":"no-cache, public, must-revalidate, proxy-revalidate"},{"key":"X-RateLimit-Limit","value":"5000"},{"key":"X-RateLimit-Remaining","value":"4997"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 1,\n            \"name\": \"Cold Storage\",\n            \"company_id\": null,\n            \"product_category_id\": 1\n        },\n        {\n            \"id\": 2,\n            \"name\": \"Humidity/Temp Controlled Room\",\n            \"company_id\": null,\n            \"product_category_id\": 1\n        },\n        {\n            \"id\": 3,\n            \"name\": \"Barn\",\n            \"company_id\": null,\n            \"product_category_id\": 1\n        }\n    ],\n    \"links\": {\n        \"first\": \"https://demo.bushel44.com/api/v1/storage-types?page=1\",\n        \"last\": \"https://demo.bushel44.com/api/v1/storage-types?page=1\",\n        \"prev\": null,\n        \"next\": null\n    },\n    \"meta\": {\n        \"current_page\": 1,\n        \"from\": 1,\n        \"last_page\": 1,\n        \"links\": [\n            {\n                \"url\": null,\n                \"label\": \"&laquo; Previous\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.bushel44.com/api/v1/storage-types?page=1\",\n                \"label\": \"1\",\n                \"active\": true\n            },\n            {\n                \"url\": null,\n                \"label\": \"Next &raquo;\",\n                \"active\": false\n            }\n        ],\n        \"path\": \"https://demo.bushel44.com/api/v1/storage-types\",\n        \"per_page\": 15,\n        \"to\": 3,\n        \"total\": 3\n    },\n    \"status\": \"success\"\n}"}],"_postman_id":"802dc59e-67d4-4600-a24a-3141c31a1e93"},{"name":"Storage Type","id":"5c4a097f-b375-4849-a0fc-befaa7d9bfb8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/v1/storage-types/{{storage_type_id}}","description":"<p><strong>Token Permissions</strong></p>\n<ul>\n<li>view:products</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}},"urlObject":{"path":["v1","storage-types","{{storage_type_id}}"],"host":["https://secure.bushel44.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"095831ce-074e-4580-b94e-1cba68f5ed70","name":"Storage Type","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/storage-types/{{storage_type_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 01:59:52 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Cache-Control","value":"no-cache, public, must-revalidate, proxy-revalidate"},{"key":"X-RateLimit-Limit","value":"5000"},{"key":"X-RateLimit-Remaining","value":"4999"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 3,\n        \"name\": \"Barn\",\n        \"company_id\": null,\n        \"product_category_id\": 1\n    }\n}"}],"_postman_id":"5c4a097f-b375-4849-a0fc-befaa7d9bfb8"},{"name":"Storage Type","id":"6f66046a-cfda-4894-b030-f76ba7c47de8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"name","value":"my storage type name","description":"<p>optional, not nullable | </p>\n","type":"text","uuid":"74959067-3277-4cef-b960-ce3a565216ae"}]},"url":"https://secure.bushel44.com/api/v1/v1/storage-types/{{storage_type_id}}","description":"<p><strong>Token Permissions</strong></p>\n<ul>\n<li>update:products</li>\n</ul>\n<p>Note: Changing the category a storage type belongs to is not permitted.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}},"urlObject":{"path":["v1","storage-types","{{storage_type_id}}"],"host":["https://secure.bushel44.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"e61cd235-9f7c-4f77-b72a-cc2fc3eee3e5","name":"Storage Type","originalRequest":{"method":"PATCH","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"name","value":"my storage type name","description":"optional, not nullable | <string>","type":"text","uuid":"74959067-3277-4cef-b960-ce3a565216ae"}]},"url":"https://secure.bushel44.com/api/v1/storage-types/{{storage_type_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 02:00:18 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Cache-Control","value":"no-cache, public, must-revalidate, proxy-revalidate"},{"key":"X-RateLimit-Limit","value":"5000"},{"key":"X-RateLimit-Remaining","value":"4997"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 4,\n        \"name\": \"my storage type name\",\n        \"company_id\": 4,\n        \"product_category_id\": 3\n    }\n}"}],"_postman_id":"6f66046a-cfda-4894-b030-f76ba7c47de8"},{"name":"Storage Type","id":"87e1cf20-6932-4163-a312-531709a4ef3a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/v1/storage-types/{{storage_type_id}}","description":"<p><strong>Token Permissions</strong></p>\n<ul>\n<li>update:products</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}},"urlObject":{"path":["v1","storage-types","{{storage_type_id}}"],"host":["https://secure.bushel44.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"a8b6a59e-60ae-4ffe-a578-e957bee34695","name":"Storage Type","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/storage-types/{{storage_type_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 02:00:32 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Cache-Control","value":"no-cache, public, must-revalidate, proxy-revalidate"},{"key":"X-RateLimit-Limit","value":"5000"},{"key":"X-RateLimit-Remaining","value":"4996"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Record deleted successfully\"\n}"}],"_postman_id":"87e1cf20-6932-4163-a312-531709a4ef3a"},{"name":"Storage Type","id":"539bff88-798e-456e-803f-a215ec9abfef","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"name","value":"my storage type name","description":"<p>required | </p>\n","type":"text","uuid":"b7c06049-1d4c-4d0a-a052-7201a1296afb"},{"key":"product_category_id","value":"3","description":"<p>required | </p>\n","type":"text","uuid":"170e4bcb-9afd-4e31-bc1b-60a32f6635be"}]},"url":"https://secure.bushel44.com/api/v1/v1/storage-types","description":"<p><strong>Token Permissions</strong></p>\n<ul>\n<li>update:products</li>\n</ul>\n<p>A product category id is required. Please see the Product Categories endpoint.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}},"urlObject":{"path":["v1","storage-types"],"host":["https://secure.bushel44.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"6c7c2643-643b-4f61-941b-45d5b1659c05","name":"Storage Type","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"name","value":"my storage type name","description":"required | <string>","type":"text","uuid":"b7c06049-1d4c-4d0a-a052-7201a1296afb"},{"key":"product_category_id","value":"3","description":"required | <integer>","type":"text","uuid":"170e4bcb-9afd-4e31-bc1b-60a32f6635be"}]},"url":"https://secure.bushel44.com/api/v1/storage-types"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 02:00:04 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Cache-Control","value":"no-cache, public, must-revalidate, proxy-revalidate"},{"key":"X-RateLimit-Limit","value":"5000"},{"key":"X-RateLimit-Remaining","value":"4998"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 4,\n        \"name\": \"my storage type name\",\n        \"company_id\": 4,\n        \"product_category_id\": 3\n    }\n}"}],"_postman_id":"539bff88-798e-456e-803f-a215ec9abfef"}],"id":"494096e4-ff41-4f2a-98e0-bc70c016bfea","description":"<p>Storage Types are not available for every category of product. Please see the product field rules endpoint.</p>\n","_postman_id":"494096e4-ff41-4f2a-98e0-bc70c016bfea","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}}},{"name":"Tags","item":[{"name":"Tags","id":"4810ce41-8153-41e5-be0b-1f8b5b86de86","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer  ","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/v1/tags","description":"<p><strong>Token Permissions</strong></p>\n<ul>\n<li>view:tags</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}},"urlObject":{"path":["v1","tags"],"host":["https://secure.bushel44.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"eb6f603d-aeb4-498c-8725-f7a551109493","name":"Tags","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer  ","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/tags"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 08 May 2025 11:51:17 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Cache-Control","value":"no-cache, public, must-revalidate, proxy-revalidate"},{"key":"X-RateLimit-Limit","value":"5000"},{"key":"X-RateLimit-Remaining","value":"4998"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"tags\": [\n        {\n            \"id\": 1,\n            \"name\": \"Retail Buyer\",\n            \"color\": \"#333333\",\n            \"background_color\": \"#F1F1F1\",\n            \"type\": \"buyer\",\n            \"created_at\": \"2020-03-26T19:52:14.000000Z\",\n            \"updated_at\": \"2020-10-20T00:16:01.000000Z\",\n            \"tag_uses\": 4\n        },\n        {\n            \"id\": 2,\n            \"name\": \"Wholesale Buyer\",\n            \"color\": \"#F82222\",\n            \"background_color\": \"#F1F1F1\",\n            \"type\": \"buyer\",\n            \"created_at\": \"2020-03-26T19:52:34.000000Z\",\n            \"updated_at\": \"2020-10-20T00:16:06.000000Z\",\n            \"tag_uses\": 6\n        },\n        {\n            \"id\": 4,\n            \"name\": \"Distribution Buyer\",\n            \"color\": \"#2BD029\",\n            \"background_color\": \"#F1F1F1\",\n            \"type\": \"buyer\",\n            \"created_at\": \"2020-07-01T16:59:07.000000Z\",\n            \"updated_at\": \"2020-10-20T00:16:09.000000Z\",\n            \"tag_uses\": 2\n        },\n        {\n            \"id\": 5,\n            \"name\": \"Value Brand Buyer\",\n            \"color\": \"#1C2BFF\",\n            \"background_color\": \"#F1F1F1\",\n            \"type\": \"buyer\",\n            \"created_at\": \"2020-07-01T22:28:33.000000Z\",\n            \"updated_at\": \"2020-10-20T00:16:13.000000Z\",\n            \"tag_uses\": 2\n        },\n        {\n            \"id\": 10,\n            \"name\": \"Email Only\",\n            \"color\": \"#2EDCEA\",\n            \"background_color\": \"#F1F1F1\",\n            \"type\": \"contact\",\n            \"created_at\": \"2020-10-20T00:15:11.000000Z\",\n            \"updated_at\": \"2020-10-20T00:15:11.000000Z\",\n            \"tag_uses\": 0\n        },\n        {\n            \"id\": 11,\n            \"name\": \"Distribution Center\",\n            \"color\": \"#F421DC\",\n            \"background_color\": \"#F1F1F1\",\n            \"type\": \"location\",\n            \"created_at\": \"2020-10-20T00:15:44.000000Z\",\n            \"updated_at\": \"2020-10-20T00:15:44.000000Z\",\n            \"tag_uses\": 0\n        },\n        {\n            \"id\": 12,\n            \"name\": \"johnw@bushel44.com\",\n            \"color\": \"#333333\",\n            \"background_color\": \"#F1F1F1\",\n            \"type\": \"task\",\n            \"created_at\": \"2021-04-02T01:16:24.000000Z\",\n            \"updated_at\": \"2021-04-02T01:16:24.000000Z\",\n            \"tag_uses\": 1\n        },\n        {\n            \"id\": 13,\n            \"name\": \"tyler@bushel44.com\",\n            \"color\": \"#333333\",\n            \"background_color\": \"#F1F1F1\",\n            \"type\": \"task\",\n            \"created_at\": \"2021-04-07T00:41:13.000000Z\",\n            \"updated_at\": \"2021-04-07T00:41:13.000000Z\",\n            \"tag_uses\": 1\n        },\n        {\n            \"id\": 14,\n            \"name\": \"Genetics Buyer\",\n            \"color\": \"#22D0CA\",\n            \"background_color\": \"#F1F1F1\",\n            \"type\": \"buyer\",\n            \"created_at\": \"2021-04-07T22:41:32.000000Z\",\n            \"updated_at\": \"2021-04-07T22:41:32.000000Z\",\n            \"tag_uses\": 3\n        },\n        {\n            \"id\": 15,\n            \"name\": \"Bulk Extract Buyer\",\n            \"color\": \"#333333\",\n            \"background_color\": \"#F1F1F1\",\n            \"type\": \"buyer\",\n            \"created_at\": \"2021-08-31T03:23:50.000000Z\",\n            \"updated_at\": \"2021-08-31T03:23:50.000000Z\",\n            \"tag_uses\": 1\n        },\n        {\n            \"id\": 16,\n            \"name\": \"Weekly Order\",\n            \"color\": \"#333333\",\n            \"background_color\": \"#F1F1F1\",\n            \"type\": \"buyer\",\n            \"created_at\": \"2021-08-31T03:24:23.000000Z\",\n            \"updated_at\": \"2021-08-31T03:24:23.000000Z\",\n            \"tag_uses\": 1\n        }\n    ],\n    \"links\": {\n        \"first\": \"https://demo.bushel44.com/api/v1/tags?page=1\",\n        \"last\": \"https://demo.bushel44.com/api/v1/tags?page=1\",\n        \"prev\": null,\n        \"next\": null\n    },\n    \"meta\": {\n        \"current_page\": 1,\n        \"from\": 1,\n        \"last_page\": 1,\n        \"links\": [\n            {\n                \"url\": null,\n                \"label\": \"&laquo; Previous\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.bushel44.com/api/v1/tags?page=1\",\n                \"label\": \"1\",\n                \"active\": true\n            },\n            {\n                \"url\": null,\n                \"label\": \"Next &raquo;\",\n                \"active\": false\n            }\n        ],\n        \"path\": \"https://demo.bushel44.com/api/v1/tags\",\n        \"per_page\": 15,\n        \"to\": 11,\n        \"total\": 11\n    }\n}"}],"_postman_id":"4810ce41-8153-41e5-be0b-1f8b5b86de86"}],"id":"adfd21d2-d2e1-4051-bfae-05d4a714c719","_postman_id":"adfd21d2-d2e1-4051-bfae-05d4a714c719","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}}},{"name":"Terpenes","item":[{"name":"Terpenes","id":"b5deacfe-d2d9-4841-a8a4-7bc0199b27ff","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/v1/terpenes","description":"<p><strong>Token Permissions</strong></p>\n<ul>\n<li>view:products</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}},"urlObject":{"path":["v1","terpenes"],"host":["https://secure.bushel44.com/api/v1"],"query":[{"disabled":true,"description":{"content":"<p>Number of records to return per page</p>\n","type":"text/plain"},"key":"per_page","value":"15"}],"variable":[]}},"response":[{"id":"d3b36d6b-d1a9-4eac-839b-91d9ab840377","name":"Terpenes","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"https://secure.bushel44.com/api/v1/terpenes","host":["https://secure.bushel44.com/api/v1"],"path":["terpenes"],"query":[{"key":"per_page","value":"15","description":"Number of records to return per page","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 01:47:31 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Cache-Control","value":"no-cache, public, must-revalidate, proxy-revalidate"},{"key":"X-RateLimit-Limit","value":"5000"},{"key":"X-RateLimit-Remaining","value":"4993"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 1,\n            \"name\": \"a - Bisabolol\"\n        },\n        {\n            \"id\": 2,\n            \"name\": \"a - Pinene\"\n        },\n        {\n            \"id\": 3,\n            \"name\": \"b - Pinene\"\n        },\n        {\n            \"id\": 4,\n            \"name\": \"Borneol\"\n        },\n        {\n            \"id\": 5,\n            \"name\": \"Camphene\"\n        },\n        {\n            \"id\": 6,\n            \"name\": \"Caryophyllene\"\n        },\n        {\n            \"id\": 7,\n            \"name\": \"Delta 3 Carene\"\n        },\n        {\n            \"id\": 8,\n            \"name\": \"Eucalyptol\"\n        },\n        {\n            \"id\": 9,\n            \"name\": \"Geraniol\"\n        },\n        {\n            \"id\": 10,\n            \"name\": \"Humulene\"\n        },\n        {\n            \"id\": 11,\n            \"name\": \"Lenalool\"\n        },\n        {\n            \"id\": 12,\n            \"name\": \"Limonene\"\n        },\n        {\n            \"id\": 13,\n            \"name\": \"Myrcene\"\n        },\n        {\n            \"id\": 14,\n            \"name\": \"Ocimene\"\n        },\n        {\n            \"id\": 15,\n            \"name\": \"Terpineol\"\n        }\n    ],\n    \"links\": {\n        \"first\": \"https://demo.bushel44.com/api/v1/terpenes?page=1\",\n        \"last\": \"https://demo.bushel44.com/api/v1/terpenes?page=4\",\n        \"prev\": null,\n        \"next\": \"https://demo.bushel44.com/api/v1/terpenes?page=2\"\n    },\n    \"meta\": {\n        \"current_page\": 1,\n        \"from\": 1,\n        \"last_page\": 4,\n        \"links\": [\n            {\n                \"url\": null,\n                \"label\": \"&laquo; Previous\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.bushel44.com/api/v1/terpenes?page=1\",\n                \"label\": \"1\",\n                \"active\": true\n            },\n            {\n                \"url\": \"https://demo.bushel44.com/api/v1/terpenes?page=2\",\n                \"label\": \"2\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.bushel44.com/api/v1/terpenes?page=3\",\n                \"label\": \"3\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.bushel44.com/api/v1/terpenes?page=4\",\n                \"label\": \"4\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.bushel44.com/api/v1/terpenes?page=2\",\n                \"label\": \"Next &raquo;\",\n                \"active\": false\n            }\n        ],\n        \"path\": \"https://demo.bushel44.com/api/v1/terpenes\",\n        \"per_page\": 15,\n        \"to\": 15,\n        \"total\": 55\n    },\n    \"status\": \"success\"\n}"}],"_postman_id":"b5deacfe-d2d9-4841-a8a4-7bc0199b27ff"},{"name":"Terpene","id":"37dc9c58-2621-4cf2-8823-020c957a496e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/v1/terpenes/{{terpene_id}}","description":"<p><strong>Token Permissions</strong></p>\n<ul>\n<li>view:products</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}},"urlObject":{"path":["v1","terpenes","{{terpene_id}}"],"host":["https://secure.bushel44.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"3d6d0a86-5ea1-4529-b128-103c679016b3","name":"Terpene","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"","value":"","type":"text","disabled":true}],"url":"https://secure.bushel44.com/api/v1/terpenes/{{terpene_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 01:47:37 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Cache-Control","value":"no-cache, public, must-revalidate, proxy-revalidate"},{"key":"X-RateLimit-Limit","value":"5000"},{"key":"X-RateLimit-Remaining","value":"4999"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 2,\n        \"name\": \"a - Pinene\"\n    }\n}"}],"_postman_id":"37dc9c58-2621-4cf2-8823-020c957a496e"}],"id":"b2dbeb75-622c-4f5b-ad3f-3d208165408c","_postman_id":"b2dbeb75-622c-4f5b-ad3f-3d208165408c","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}}},{"name":"Transporter Orders","item":[{"name":"Transporter Orders","id":"4056b33a-d241-4685-89b6-3c1b77a65dd5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer ","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/v2/transporter-orders?updated_at_from=2025-04-20T22:04:50Z&cancelled=false","description":"<p><strong>Required Filters</strong></p>\n<p><strong>updated_at_from</strong> is a required filter.</p>\n<p>The first time you call this endpoint you should call it from the date the company first joined, but subsequent calls should be restricted to only search for records updated since the last call if possible.</p>\n<p><strong>Token Permissions</strong></p>\n<ul>\n<li>view:shipping-orders</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}},"urlObject":{"path":["v2","transporter-orders"],"host":["https://secure.bushel44.com/api/v1"],"query":[{"disabled":true,"description":{"content":"<p>include order items</p>\n","type":"text/plain"},"key":"with_items","value":"false"},{"disabled":true,"description":{"content":"<p>include payments made on order</p>\n","type":"text/plain"},"key":"with_payments","value":"false"},{"disabled":true,"description":{"content":"<p>filter by ids</p>\n","type":"text/plain"},"key":"ids[]","value":"3"},{"disabled":true,"description":{"content":"<p>filter by invoice number</p>\n","type":"text/plain"},"key":"invoice_number","value":"high-hopes-3"},{"disabled":true,"description":{"content":"<p>filter by buyer ids</p>\n","type":"text/plain"},"key":"buyer_ids[]","value":"3"},{"disabled":true,"description":{"content":"<p>filter by created after query in UTC</p>\n","type":"text/plain"},"key":"created_at_from","value":"2025-04-20T22:04:50Z"},{"disabled":true,"description":{"content":"<p>filter by created before query in UTC</p>\n","type":"text/plain"},"key":"created_at_to","value":"2025-04-22T22:04:50Z"},{"description":{"content":"<p>filter by updated after query in UTC <strong>REQUIRED ON 6/1/25</strong></p>\n","type":"text/plain"},"key":"updated_at_from","value":"2025-04-20T22:04:50Z"},{"disabled":true,"description":{"content":"<p>filter by updated before query in UTC</p>\n","type":"text/plain"},"key":"updated_at_to","value":"2025-04-22T22:04:50Z"},{"disabled":true,"description":{"content":"<p>deprecated, will be removed in future version</p>\n","type":"text/plain"},"key":"order_data_from","value":"2025-04-20T22:04:50Z"},{"disabled":true,"description":{"content":"<p>deprecated, will be removed in future version</p>\n","type":"text/plain"},"key":"order_date_to","value":"2025-04-22T22:04:50Z"},{"disabled":true,"description":{"content":"<p>deprecated, will be removed in future version</p>\n","type":"text/plain"},"key":"delivery_date_from","value":"2025-04-20T22:04:50Z"},{"disabled":true,"description":{"content":"<p>deprecated, will be removed in future version</p>\n","type":"text/plain"},"key":"delivery_date_to","value":"2025-04-22T22:04:50Z"},{"disabled":true,"description":{"content":"<p>Number of records to return per page</p>\n","type":"text/plain"},"key":"per_page","value":"15"},{"disabled":true,"description":{"content":"<p>filter by seller company ids</p>\n","type":"text/plain"},"key":"seller_company_ids[]","value":"3"},{"description":{"content":"<p>filter by cancelled</p>\n","type":"text/plain"},"key":"cancelled","value":"false"}],"variable":[]}},"response":[],"_postman_id":"4056b33a-d241-4685-89b6-3c1b77a65dd5"},{"name":"Transporter Order","id":"9061e077-549a-416a-8cea-55937eb5399b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer ","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/v2/transporter-orders/2?with_deal_flow=false","description":"<p><strong>Token Permissions</strong></p>\n<ul>\n<li>view:shipping-orders</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}},"urlObject":{"path":["v2","transporter-orders","2"],"host":["https://secure.bushel44.com/api/v1"],"query":[{"description":{"content":"<p>inclue deal flow</p>\n","type":"text/plain"},"key":"with_deal_flow","value":"false"}],"variable":[]}},"response":[],"_postman_id":"9061e077-549a-416a-8cea-55937eb5399b"}],"id":"eead0ca4-9c50-472a-aec4-33ce5961a191","description":"<p>Transporter Orders allows companies that are designated as transporters for an order to pull orders for companies that they work with.</p>\n<ul>\n<li><p>The seller_company_id is the company_id of the seller</p>\n</li>\n<li><p>The buyer_company_id is the company_id of the purchaser</p>\n</li>\n<li><p>The buyer_id is the seller's CRM relation of the buyer</p>\n</li>\n</ul>\n<p>Order Item Information</p>\n<ul>\n<li><p>order_quantity should be pared with order_unit_measurement to determine the sales quantities. Eg 5 2gram packs, or 3 cases (units_per_case of 3).</p>\n</li>\n<li><p>inventory_quantity should be pared with unit_measurement to determine base units of measure, in above example it would be 10 grams and 9 units.</p>\n</li>\n<li><p>A unit_size_unit_measurement is also available on some categories. This will allow you to see the size of items listed in single units, eg containers are sold in units but their size is in pounds.</p>\n</li>\n</ul>\n","_postman_id":"eead0ca4-9c50-472a-aec4-33ce5961a191","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}}},{"name":"Trim Methods","item":[{"name":"Trim Methods","id":"b1ad39f2-56ba-4c48-85d3-2fcfa2e6a8cd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/v1/trim-methods?per_page=15","description":"<p><strong>Token Permissions</strong></p>\n<ul>\n<li>view:products</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}},"urlObject":{"path":["v1","trim-methods"],"host":["https://secure.bushel44.com/api/v1"],"query":[{"description":{"content":"<p>Number of records to return per page</p>\n","type":"text/plain"},"key":"per_page","value":"15"}],"variable":[]}},"response":[{"id":"bb568f8e-a6ae-41c7-9068-291159bb1f49","name":"Trim Methods","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"https://secure.bushel44.com/api/v1/trim-methods?per_page=15","host":["https://secure.bushel44.com/api/v1"],"path":["trim-methods"],"query":[{"key":"per_page","value":"15","description":"Number of records to return per page"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 01:49:52 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Cache-Control","value":"no-cache, public, must-revalidate, proxy-revalidate"},{"key":"X-RateLimit-Limit","value":"5000"},{"key":"X-RateLimit-Remaining","value":"4999"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 1,\n            \"name\": \"Combination\"\n        },\n        {\n            \"id\": 2,\n            \"name\": \"Hand\"\n        },\n        {\n            \"id\": 3,\n            \"name\": \"Machine - Centurion\"\n        },\n        {\n            \"id\": 4,\n            \"name\": \"Machine - GreenBroz\"\n        },\n        {\n            \"id\": 5,\n            \"name\": \"Machine - EZTrim\"\n        },\n        {\n            \"id\": 6,\n            \"name\": \"Machine - Triminator\"\n        },\n        {\n            \"id\": 7,\n            \"name\": \"Machine - Trimpro\"\n        },\n        {\n            \"id\": 8,\n            \"name\": \"Machine - Twister\"\n        },\n        {\n            \"id\": 9,\n            \"name\": \"Bucked\"\n        }\n    ],\n    \"links\": {\n        \"first\": \"https://demo.bushel44.com/api/v1/trim-methods?page=1\",\n        \"last\": \"https://demo.bushel44.com/api/v1/trim-methods?page=1\",\n        \"prev\": null,\n        \"next\": null\n    },\n    \"meta\": {\n        \"current_page\": 1,\n        \"from\": 1,\n        \"last_page\": 1,\n        \"links\": [\n            {\n                \"url\": null,\n                \"label\": \"&laquo; Previous\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.bushel44.com/api/v1/trim-methods?page=1\",\n                \"label\": \"1\",\n                \"active\": true\n            },\n            {\n                \"url\": null,\n                \"label\": \"Next &raquo;\",\n                \"active\": false\n            }\n        ],\n        \"path\": \"https://demo.bushel44.com/api/v1/trim-methods\",\n        \"per_page\": 15,\n        \"to\": 9,\n        \"total\": 9\n    },\n    \"status\": \"success\"\n}"}],"_postman_id":"b1ad39f2-56ba-4c48-85d3-2fcfa2e6a8cd"},{"name":"Trim Method","id":"c5519c6c-8ddd-4ca5-8af2-a5348e86021f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/v1/trim-methods/{{trim_methods_id}}","description":"<p><strong>Token Permissions</strong></p>\n<ul>\n<li>view:products</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}},"urlObject":{"path":["v1","trim-methods","{{trim_methods_id}}"],"host":["https://secure.bushel44.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"a1456161-0dd0-4e29-a8cf-f5f153e267a6","name":"Trim Method","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/trim-methods/{{trim_methods_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 01:50:00 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Cache-Control","value":"no-cache, public, must-revalidate, proxy-revalidate"},{"key":"X-RateLimit-Limit","value":"5000"},{"key":"X-RateLimit-Remaining","value":"4998"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 2,\n        \"name\": \"Hand\"\n    }\n}"}],"_postman_id":"c5519c6c-8ddd-4ca5-8af2-a5348e86021f"}],"id":"06a053d8-e295-448d-a27f-57fd1a7d39ce","_postman_id":"06a053d8-e295-448d-a27f-57fd1a7d39ce","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}}},{"name":"Unit Measurements","item":[{"name":"Unit Measurements","id":"e8a30922-7b70-4ff7-8d92-22311ab7953b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/v1/unit-measurements?per_page=15","description":"<p><strong>Token Permissions</strong></p>\n<ul>\n<li>view:products</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}},"urlObject":{"path":["v1","unit-measurements"],"host":["https://secure.bushel44.com/api/v1"],"query":[{"description":{"content":"<p>Number of records to return per page</p>\n","type":"text/plain"},"key":"per_page","value":"15"}],"variable":[]}},"response":[{"id":"e9c3403d-846b-45cb-9474-5609ff5cdc6f","name":"Unit Measurements","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"https://secure.bushel44.com/api/v1/unit-measurements?per_page=15","host":["https://secure.bushel44.com/api/v1"],"path":["unit-measurements"],"query":[{"key":"per_page","value":"15","description":"Number of records to return per page"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 01:50:10 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Cache-Control","value":"no-cache, public, must-revalidate, proxy-revalidate"},{"key":"X-RateLimit-Limit","value":"5000"},{"key":"X-RateLimit-Remaining","value":"4997"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 1,\n            \"name\": \"Milligram\"\n        },\n        {\n            \"id\": 3,\n            \"name\": \"Gram\"\n        },\n        {\n            \"id\": 6,\n            \"name\": \"Kilogram\"\n        },\n        {\n            \"id\": 7,\n            \"name\": \"Metric ton\"\n        },\n        {\n            \"id\": 8,\n            \"name\": \"Ounce\"\n        },\n        {\n            \"id\": 9,\n            \"name\": \"Pound\"\n        },\n        {\n            \"id\": 11,\n            \"name\": \"US Ton\"\n        },\n        {\n            \"id\": 13,\n            \"name\": \"Liter\"\n        },\n        {\n            \"id\": 15,\n            \"name\": \"US Fluid Ounce\"\n        },\n        {\n            \"id\": 16,\n            \"name\": \"US Liquid Quart\"\n        },\n        {\n            \"id\": 17,\n            \"name\": \"US Liquid Pint\"\n        },\n        {\n            \"id\": 18,\n            \"name\": \"US Gallon\"\n        },\n        {\n            \"id\": 19,\n            \"name\": \"Unit\"\n        },\n        {\n            \"id\": 20,\n            \"name\": \"Milliliter\"\n        }\n    ],\n    \"links\": {\n        \"first\": \"https://demo.bushel44.com/api/v1/unit-measurements?page=1\",\n        \"last\": \"https://demo.bushel44.com/api/v1/unit-measurements?page=1\",\n        \"prev\": null,\n        \"next\": null\n    },\n    \"meta\": {\n        \"current_page\": 1,\n        \"from\": 1,\n        \"last_page\": 1,\n        \"links\": [\n            {\n                \"url\": null,\n                \"label\": \"&laquo; Previous\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.bushel44.com/api/v1/unit-measurements?page=1\",\n                \"label\": \"1\",\n                \"active\": true\n            },\n            {\n                \"url\": null,\n                \"label\": \"Next &raquo;\",\n                \"active\": false\n            }\n        ],\n        \"path\": \"https://demo.bushel44.com/api/v1/unit-measurements\",\n        \"per_page\": 15,\n        \"to\": 14,\n        \"total\": 14\n    },\n    \"status\": \"success\"\n}"}],"_postman_id":"e8a30922-7b70-4ff7-8d92-22311ab7953b"},{"name":"Unit Measurement","id":"412143f1-033d-44d9-afd0-2d7fb1702500","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/v1/unit-measurements/{{unit_measurement_id}}","description":"<p><strong>Token Permissions</strong></p>\n<ul>\n<li>view:products</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}},"urlObject":{"path":["v1","unit-measurements","{{unit_measurement_id}}"],"host":["https://secure.bushel44.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"3b2e1f0e-92b9-4a7c-ac64-102b2dc35995","name":"Unit Measurement","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://secure.bushel44.com/api/v1/unit-measurements/{{unit_measurement_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 01:50:34 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Cache-Control","value":"no-cache, public, must-revalidate, proxy-revalidate"},{"key":"X-RateLimit-Limit","value":"5000"},{"key":"X-RateLimit-Remaining","value":"4995"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 3,\n        \"name\": \"Gram\"\n    }\n}"}],"_postman_id":"412143f1-033d-44d9-afd0-2d7fb1702500"}],"id":"e62193d7-b644-43bd-b452-8020e4d4da66","description":"<p>Some units of measurement are not available to be added to products as they are only used on order items. EG, a case might be a unit of measurement on an order item but it is not available to be added to a product.</p>\n","_postman_id":"e62193d7-b644-43bd-b452-8020e4d4da66","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}}},{"name":"welcome","id":"30483d08-f7dd-4e99-96f4-743cadcd698e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://secure.bushel44.com/api/v1/welcome","description":"<p>Returns the permission set for a given api token as well as the list of endpoints it has permission to access</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"77808302-965a-452d-a352-0c57983f8c09","id":"77808302-965a-452d-a352-0c57983f8c09","name":"Bushel Public Api","type":"collection"}},"urlObject":{"path":["welcome"],"host":["https://secure.bushel44.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"b183499c-8ffd-42f1-9d35-3ea6e30bd313","name":"welcome","originalRequest":{"method":"GET","header":[],"url":"https://secure.bushel44.com/api/v1/welcome"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 01:45:22 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Cache-Control","value":"no-cache, public, must-revalidate, proxy-revalidate"},{"key":"X-RateLimit-Limit","value":"5000"},{"key":"X-RateLimit-Remaining","value":"4999"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"name\": \"Bushel44\",\n    \"app-version\": \"2.0.9\",\n    \"api-version\": \"1.0.0\",\n    \"access\": [\n        \"view:company\",\n        \"view:shipping-orders\",\n        \"update:shipping-orders\",\n        \"view:receiving-orders\",\n        \"view:products\",\n        \"view:batches\",\n        \"view:brands\",\n        \"view:buyers\",\n        \"view:buyerstages\",\n        \"view:buyerleads\",\n        \"view:dealflows\",\n        \"view:dealdocs\",\n        \"view:netterms\",\n        \"view:tags\"\n    ]\n}"}],"_postman_id":"30483d08-f7dd-4e99-96f4-743cadcd698e"}],"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]}},"event":[{"listen":"prerequest","script":{"id":"df23def9-135f-4f37-94b1-cd509ee95d0e","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"96ffea7a-8d99-4476-96c2-af9019137f68","type":"text/javascript","exec":[""]}}],"variable":[{"key":"base_url","value":"https://secure.bushel44.com/api/v1"},{"key":"token","value":""},{"key":"batch_id","value":"2","type":"default"},{"key":"payment_id","value":"2","type":"string"},{"key":"order_id","value":"2","type":"string"},{"key":"buyer_id","value":"2","type":"string"},{"key":"deal_flow_id","value":"2","type":"string"},{"key":"brand_id","value":"2","type":"string"},{"key":"buyer_stage_id","value":"","type":"default"},{"key":"net_term_id","value":"2","type":"default"},{"key":"product_id","value":"2","type":"default"},{"key":"receiving_order_id","value":"2","type":"default"},{"key":"shipping_order_id","value":"2","type":"default"},{"key":"transporter_order_id","value":"2","type":"default"}]}