{"info":{"_postman_id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex 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</p>\n<p>  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://app.apextrading.com/api/v1/buyers?page=1\",\n        \"last\": \"https://app.apextrading.com/api/v1/buyers?page=6\",\n        \"prev\": null,\n        \"next\": \"https://app.apextrading.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://app.apextrading.com/api/v1/buyers?page=1\",\n                \"label\": \"1\",\n                \"active\": true\n            },\n            {\n                \"url\": \"https://app.apextrading.com/api/v1/buyers?page=2\",\n                \"label\": \"2\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://app.apextrading.com/api/v1/buyers?page=3\",\n                \"label\": \"3\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://app.apextrading.com/api/v1/buyers?page=4\",\n                \"label\": \"4\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://app.apextrading.com/api/v1/buyers?page=5\",\n                \"label\": \"5\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://app.apextrading.com/api/v1/buyers?page=6\",\n                \"label\": \"6\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://app.apextrading.com/api/v1/buyers?page=2\",\n                \"label\": \"Next »\",\n                \"active\": false\n            }\n        ],\n        \"path\": \"https://app.apextrading.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.</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@apextrading.com\">api@apextrading.com</a> with any api questions.</p>\n</li>\n<li><p><a href=\"https://mailto:support@apextrading.com\">support@apextrading.com</a> for all other issues.</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":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","publishedId":"2sB2izCYMm","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"84a263"},"publishDate":"2025-05-07T01:19:31.000Z"},"item":[{"name":"Batches","item":[{"name":"Documents","item":[{"name":"Document","id":"2284ed5c-ebc2-4b99-b190-1ec7f8d21203","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","src":"QL-RVJuQV/ChatGPT Image May 24, 2025, 08_34_13 PM.png"}]},"url":"https://app.apextrading.com/api/v1/batches/{{batch_id}}/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":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["v1","batches","{{batch_id}}","documents"],"host":["https://app.apextrading.com/api"],"query":[],"variable":[]}},"response":[{"id":"1781372b-263a-4e3a-bd72-c279e3a65a06","name":"Document","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"label","value":"GMP Certification","description":"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","type":"text","uuid":"fc805a9a-21d0-418f-8f04-dbb65bf9f9ed"},{"key":"file","type":"file","uuid":"26b61182-5c84-4755-a03d-fcbe74d8c2b9","src":"QL-RVJuQV/ChatGPT Image May 24, 2025, 08_34_13 PM.png"}]},"url":"https://app.apextrading.com/api/batches/{{batch_id}}/documents"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 30 May 2025 14:40: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":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"document\": {\n        \"id\": 8922,\n        \"name\": \"ChatGPT Image May 24, 2025, 08_34_13 PM.png\",\n        \"label\": \"GMP Certification\"\n    }\n}"}],"_postman_id":"2284ed5c-ebc2-4b99-b190-1ec7f8d21203"},{"name":"Document","id":"e31b1b6a-1a00-4362-9350-689b613966ae","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://app.apextrading.com/api/v1/batches/{{batch_id}}/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":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["v1","batches","{{batch_id}}","documents","{{batch_document_id}}"],"host":["https://app.apextrading.com/api"],"query":[],"variable":[]}},"response":[{"id":"84a425ef-67cd-4f7f-8b24-e584f6635e18","name":"Document","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://app.apextrading.com/api/batches/{{batch_id}}/documents/{{batch_document_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 30 May 2025 14:40: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    \"message\": \"Document deleted successfully\"\n}"}],"_postman_id":"e31b1b6a-1a00-4362-9350-689b613966ae"}],"id":"f78a4d0d-0785-4d71-b854-f4389a51dc96","_postman_id":"f78a4d0d-0785-4d71-b854-f4389a51dc96","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}}},{"name":"Batches (V1 - DEPRECATED)","id":"594982ae-2a74-469e-a48f-ed93692661a6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer  ","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[]},"url":"https://app.apextrading.com/api/v1/batches?updated_at_from=2025-04-20T22:04:50Z&per_page=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":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["v1","batches"],"host":["https://app.apextrading.com/api"],"query":[{"disabled":true,"description":{"content":"<p>Include the operation it belongs to</p>\n","type":"text/plain"},"key":"with_operation","value":"1"},{"disabled":true,"description":{"content":"<p>includes cannabinoids</p>\n","type":"text/plain"},"key":"with_cannabinoids","value":"1"},{"disabled":true,"description":{"content":"<p>includes terpenes</p>\n","type":"text/plain"},"key":"with_terpenes","value":"1"},{"disabled":true,"description":{"content":"<p>filter by archived batches. All returned if no key present</p>\n","type":"text/plain"},"key":"archived","value":"1"},{"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"},{"description":{"content":"<p>filter by batch created 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 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"}],"variable":[]}},"response":[{"id":"dd56fc32-60b5-42af-85c7-a47441acab95","name":"Batches","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer  ","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"https://app.apextrading.com/api/batches?updated_at_from=2025-04-20T22:04:50Z&per_page=2","host":["https://app.apextrading.com/api"],"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_from","value":"2025-04-20T22:04:50Z","description":"filter by batch created after query in UTC \n**REQUIRED  ON 6/1/25**"},{"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"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 08 May 2025 10:41: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":"4999"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"batches\": [\n        {\n            \"id\": 2887,\n            \"uuid\": \"81fe5c11-51db-4a9a-bbc1-a9002f7001cd\",\n            \"name\": \"Batch 1\",\n            \"product_id\": 2055,\n            \"operation_id\": 13,\n            \"unlimited_quantity\": false,\n            \"quantity\": 0,\n            \"zone_number\": null,\n            \"lot_number\": null,\n            \"sack_number\": null,\n            \"seeded\": null,\n            \"harvest_date\": \"2024-04-30T00:00:00.000000Z\",\n            \"dry_date\": null,\n            \"extraction_date\": null,\n            \"best_by_date\": null,\n            \"test_date\": \"2024-04-24T00:00:00.000000Z\",\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\": 22.9,\n            \"predominate_canabinoid_max\": null,\n            \"predominate_canabinoid_unit\": \"%\",\n            \"storage_location\": \"Warehouse\",\n            \"minimum_sales_price\": \"1000.00\",\n            \"sample_price\": \"0.01\",\n            \"cost_of_goods\": \"0.00\",\n            \"true_cost\": \"0.00\",\n            \"listing_price\": \"1300.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                \"flowerGramsPrice\": null\n            },\n            \"archived\": true,\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\": \"Sample\",\n            \"sample_size\": 1,\n            \"restricted\": false,\n            \"created_at\": \"2024-04-17T16:48:55.000000Z\",\n            \"updated_at\": \"2025-04-25T18:22:01.000000Z\"\n        },\n        {\n            \"id\": 3248,\n            \"uuid\": \"9af001a5-5446-49fd-988e-6b4d1370e408\",\n            \"name\": \"Batch 2 test\",\n            \"product_id\": 2055,\n            \"operation_id\": 13,\n            \"unlimited_quantity\": false,\n            \"quantity\": 66,\n            \"zone_number\": null,\n            \"lot_number\": null,\n            \"sack_number\": null,\n            \"seeded\": null,\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\": 25,\n            \"predominate_canabinoid_max\": null,\n            \"predominate_canabinoid_unit\": \"%\",\n            \"storage_location\": null,\n            \"minimum_sales_price\": \"0.00\",\n            \"sample_price\": \"0.01\",\n            \"cost_of_goods\": \"0.00\",\n            \"true_cost\": \"0.00\",\n            \"listing_price\": \"1500.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                \"flowerGramsPrice\": null\n            },\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\": \"SAMPLE\",\n            \"sample_size\": 1,\n            \"restricted\": false,\n            \"created_at\": \"2025-02-05T19:08:28.000000Z\",\n            \"updated_at\": \"2025-05-07T18:20:09.000000Z\"\n        }\n    ],\n    \"links\": {\n        \"first\": \"https://demo.apextrading.com/api/v1/batches?page=1\",\n        \"last\": \"https://demo.apextrading.com/api/v1/batches?page=12\",\n        \"prev\": null,\n        \"next\": \"https://demo.apextrading.com/api/v1/batches?page=2\"\n    },\n    \"meta\": {\n        \"current_page\": 1,\n        \"from\": 1,\n        \"last_page\": 12,\n        \"links\": [\n            {\n                \"url\": null,\n                \"label\": \"&laquo; Previous\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.apextrading.com/api/v1/batches?page=1\",\n                \"label\": \"1\",\n                \"active\": true\n            },\n            {\n                \"url\": \"https://demo.apextrading.com/api/v1/batches?page=2\",\n                \"label\": \"2\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.apextrading.com/api/v1/batches?page=3\",\n                \"label\": \"3\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.apextrading.com/api/v1/batches?page=4\",\n                \"label\": \"4\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.apextrading.com/api/v1/batches?page=5\",\n                \"label\": \"5\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.apextrading.com/api/v1/batches?page=6\",\n                \"label\": \"6\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.apextrading.com/api/v1/batches?page=7\",\n                \"label\": \"7\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.apextrading.com/api/v1/batches?page=8\",\n                \"label\": \"8\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.apextrading.com/api/v1/batches?page=9\",\n                \"label\": \"9\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.apextrading.com/api/v1/batches?page=10\",\n                \"label\": \"10\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.apextrading.com/api/v1/batches?page=11\",\n                \"label\": \"11\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.apextrading.com/api/v1/batches?page=12\",\n                \"label\": \"12\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.apextrading.com/api/v1/batches?page=2\",\n                \"label\": \"Next &raquo;\",\n                \"active\": false\n            }\n        ],\n        \"path\": \"https://demo.apextrading.com/api/v1/batches\",\n        \"per_page\": 2,\n        \"to\": 2,\n        \"total\": 24\n    }\n}"}],"_postman_id":"594982ae-2a74-469e-a48f-ed93692661a6"},{"name":"Batches (V2)","id":"7b8f406d-3ff5-4ec5-b776-2289a143f266","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer  ","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[]},"url":"https://app.apextrading.com/api/v2/batches?updated_at_from=2025-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:batches</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["v2","batches"],"host":["https://app.apextrading.com/api"],"query":[{"disabled":true,"description":{"content":"<p>Include the operation it belongs to</p>\n","type":"text/plain"},"key":"with_operation","value":"1"},{"disabled":true,"description":{"content":"<p>includes cannabinoids</p>\n","type":"text/plain"},"key":"with_cannabinoids","value":"1"},{"disabled":true,"description":{"content":"<p>includes terpenes</p>\n","type":"text/plain"},"key":"with_terpenes","value":"1"},{"disabled":true,"description":{"content":"<p>filter by archived batches. All returned if no key present</p>\n","type":"text/plain"},"key":"archived","value":"1"},{"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"},{"description":{"content":"<p>filter by batch created 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 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"}],"variable":[]}},"response":[{"id":"f23fb877-f8ec-4530-b61e-26622af00c0d","name":"Batches (V2)","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer  ","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[]},"url":{"raw":"https://app.apextrading.com/api/v2/batches?updated_at_from=2025-04-20T22:04:50Z&per_page=2","host":["https://app.apextrading.com/api"],"path":["v2","batches"],"query":[{"key":"with_operation","value":"1","description":"Include the operation it belongs to","disabled":true},{"key":"with_cannabinoids","value":"1","description":"includes cannabinoids","disabled":true},{"key":"with_terpenes","value":"1","description":"includes terpenes","type":"text","disabled":true},{"key":"archived","value":"1","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_from","value":"2025-04-20T22:04:50Z","description":"filter by batch created after query in UTC **REQUIRED **"},{"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"}]}},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Date","value":"Wed, 05 Nov 2025 00:14: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":"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\": 109,\n            \"uuid\": \"2dda0202-7613-4bbc-b114-bfb37d031f03\",\n            \"name\": \"Yerba Flower Test-1\",\n            \"product_id\": 74,\n            \"operation_id\": null,\n            \"unlimited_quantity\": false,\n            \"quantity\": 0,\n            \"zone_number\": null,\n            \"lot_number\": null,\n            \"sack_number\": null,\n            \"seeded\": null,\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\": null,\n            \"predominate_canabinoid_max\": null,\n            \"predominate_canabinoid_unit\": null,\n            \"storage_location\": null,\n            \"minimum_sales_price\": \"0.00\",\n            \"minimum_sales_price_base_unit\": \"0.00\",\n            \"sample_price\": \"0.00\",\n            \"cost_of_goods\": \"0.00\",\n            \"true_cost\": \"0.00\",\n            \"listing_price\": \"1500.00\",\n            \"listing_price_base_unit\": \"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                \"message\": \"We do not believe this field is used and are considering removing it. Please email api.apextrading.com if you are utilizing it and explain how you are using it.\"\n            },\n            \"archived\": false,\n            \"line_note\": null,\n            \"description\": null,\n            \"allow_samples\": false,\n            \"track_sample_quantity\": false,\n            \"pull_sample_from_alternative_batch_id\": 0,\n            \"sample_quantity_label\": null,\n            \"sample_size\": null,\n            \"restricted\": false,\n            \"created_at\": \"2020-08-31T19:24:59.000000Z\",\n            \"updated_at\": \"2025-06-05T20:07:13.000000Z\"\n        },\n        {\n            \"id\": 131,\n            \"uuid\": \"17f5b199-57a9-4cfa-bcbc-1e533ad0742e\",\n            \"name\": \"BKLR-1\",\n            \"product_id\": 94,\n            \"operation_id\": 13,\n            \"unlimited_quantity\": false,\n            \"quantity\": 50,\n            \"zone_number\": null,\n            \"lot_number\": null,\n            \"sack_number\": null,\n            \"seeded\": null,\n            \"harvest_date\": null,\n            \"dry_date\": null,\n            \"extraction_date\": \"2020-09-01T00:00:00.000000Z\",\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\": 90.21,\n            \"predominate_canabinoid_max\": null,\n            \"predominate_canabinoid_unit\": \"%\",\n            \"storage_location\": null,\n            \"minimum_sales_price\": \"150.00\",\n            \"minimum_sales_price_base_unit\": \"0.00\",\n            \"sample_price\": \"0.01\",\n            \"cost_of_goods\": \"0.00\",\n            \"true_cost\": \"0.00\",\n            \"listing_price\": \"18.00\",\n            \"listing_price_base_unit\": \"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                \"message\": \"We do not believe this field is used and are considering removing it. Please email api.apextrading.com if you are utilizing it and explain how you are using it.\"\n            },\n            \"archived\": false,\n            \"line_note\": null,\n            \"description\": null,\n            \"allow_samples\": false,\n            \"track_sample_quantity\": false,\n            \"pull_sample_from_alternative_batch_id\": null,\n            \"sample_quantity_label\": null,\n            \"sample_size\": 4,\n            \"restricted\": true,\n            \"created_at\": \"2020-09-23T04:10:25.000000Z\",\n            \"updated_at\": \"2025-10-29T18:27:24.000000Z\"\n        }\n    ],\n    \"links\": {\n        \"first\": \"https://demo.apextrading.com/api/v2/batches?updated_at_from=2025-04-20T22%3A04%3A50Z&per_page=2&page=1\",\n        \"last\": \"https://demo.apextrading.com/api/v2/batches?updated_at_from=2025-04-20T22%3A04%3A50Z&per_page=2&page=42\",\n        \"prev\": null,\n        \"next\": \"https://demo.apextrading.com/api/v2/batches?updated_at_from=2025-04-20T22%3A04%3A50Z&per_page=2&page=2\"\n    },\n    \"meta\": {\n        \"current_page\": 1,\n        \"from\": 1,\n        \"last_page\": 42,\n        \"links\": [\n            {\n                \"url\": null,\n                \"label\": \"&laquo; Previous\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.apextrading.com/api/v2/batches?updated_at_from=2025-04-20T22%3A04%3A50Z&per_page=2&page=1\",\n                \"label\": \"1\",\n                \"active\": true\n            },\n            {\n                \"url\": \"https://demo.apextrading.com/api/v2/batches?updated_at_from=2025-04-20T22%3A04%3A50Z&per_page=2&page=2\",\n                \"label\": \"2\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.apextrading.com/api/v2/batches?updated_at_from=2025-04-20T22%3A04%3A50Z&per_page=2&page=3\",\n                \"label\": \"3\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.apextrading.com/api/v2/batches?updated_at_from=2025-04-20T22%3A04%3A50Z&per_page=2&page=4\",\n                \"label\": \"4\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.apextrading.com/api/v2/batches?updated_at_from=2025-04-20T22%3A04%3A50Z&per_page=2&page=5\",\n                \"label\": \"5\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.apextrading.com/api/v2/batches?updated_at_from=2025-04-20T22%3A04%3A50Z&per_page=2&page=6\",\n                \"label\": \"6\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.apextrading.com/api/v2/batches?updated_at_from=2025-04-20T22%3A04%3A50Z&per_page=2&page=7\",\n                \"label\": \"7\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.apextrading.com/api/v2/batches?updated_at_from=2025-04-20T22%3A04%3A50Z&per_page=2&page=8\",\n                \"label\": \"8\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.apextrading.com/api/v2/batches?updated_at_from=2025-04-20T22%3A04%3A50Z&per_page=2&page=9\",\n                \"label\": \"9\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.apextrading.com/api/v2/batches?updated_at_from=2025-04-20T22%3A04%3A50Z&per_page=2&page=10\",\n                \"label\": \"10\",\n                \"active\": false\n            },\n            {\n                \"url\": null,\n                \"label\": \"...\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.apextrading.com/api/v2/batches?updated_at_from=2025-04-20T22%3A04%3A50Z&per_page=2&page=41\",\n                \"label\": \"41\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.apextrading.com/api/v2/batches?updated_at_from=2025-04-20T22%3A04%3A50Z&per_page=2&page=42\",\n                \"label\": \"42\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.apextrading.com/api/v2/batches?updated_at_from=2025-04-20T22%3A04%3A50Z&per_page=2&page=2\",\n                \"label\": \"Next &raquo;\",\n                \"active\": false\n            }\n        ],\n        \"path\": \"https://demo.apextrading.com/api/v2/batches\",\n        \"per_page\": 2,\n        \"to\": 2,\n        \"total\": 84\n    }\n}"}],"_postman_id":"7b8f406d-3ff5-4ec5-b776-2289a143f266"},{"name":"Batch (V1 - DEPRECATED)","id":"4a2890dd-3a04-41df-aceb-cb2744d30e50","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer  ","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/v1/batches/{{batch_id}}","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":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["v1","batches","{{batch_id}}"],"host":["https://app.apextrading.com/api"],"query":[{"disabled":true,"description":{"content":"<p>Include batch history</p>\n","type":"text/plain"},"key":"with_history","value":"false"}],"variable":[]}},"response":[{"id":"3b59c1ee-0d3b-44df-8e48-f5f2eaa756aa","name":"Batch","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer  ","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"https://app.apextrading.com/api/batches/{{batch_id}}","host":["https://app.apextrading.com/api"],"path":["batches","{{batch_id}}"],"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:09:40 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\": \"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":"4a2890dd-3a04-41df-aceb-cb2744d30e50"},{"name":"Batch (V2)","id":"9944ab8a-cb39-4cb9-b2a2-c59b05b9ac2b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer  ","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/v2/batches/{{batch_id}}","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":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["v2","batches","{{batch_id}}"],"host":["https://app.apextrading.com/api"],"query":[{"disabled":true,"description":{"content":"<p>Include batch history</p>\n","type":"text/plain"},"key":"with_history","value":"false"}],"variable":[]}},"response":[{"id":"eef929d8-0895-4f72-a035-58bd84285124","name":"Batch (V2)","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer  ","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"https://app.apextrading.com/api/v2/batches/{{batch_id}}","host":["https://app.apextrading.com/api"],"path":["v2","batches","{{batch_id}}"],"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, 05 Nov 2025 00:15: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":"4998"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"batch\": {\n        \"id\": 109,\n        \"uuid\": \"2dda0202-7613-4bbc-b114-bfb37d031f03\",\n        \"name\": \"Yerba Flower Test-1\",\n        \"product_id\": 74,\n        \"operation_id\": null,\n        \"unlimited_quantity\": false,\n        \"quantity\": 0,\n        \"zone_number\": null,\n        \"lot_number\": null,\n        \"sack_number\": null,\n        \"seeded\": null,\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\": null,\n        \"predominate_canabinoid_max\": null,\n        \"predominate_canabinoid_unit\": null,\n        \"storage_location\": null,\n        \"minimum_sales_price\": \"0.00\",\n        \"minimum_sales_price_base_unit\": \"0.00\",\n        \"sample_price\": \"0.00\",\n        \"cost_of_goods\": \"0.00\",\n        \"true_cost\": \"0.00\",\n        \"listing_price\": \"1500.00\",\n        \"listing_price_base_unit\": \"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            \"message\": \"We do not believe this field is used and are considering removing it. Please email api.apextrading.com if you are utilizing it and explain how you are using it.\"\n        },\n        \"archived\": false,\n        \"line_note\": null,\n        \"description\": null,\n        \"allow_samples\": false,\n        \"track_sample_quantity\": false,\n        \"pull_sample_from_alternative_batch_id\": 0,\n        \"sample_quantity_label\": null,\n        \"sample_size\": null,\n        \"restricted\": false,\n        \"created_at\": \"2020-08-31T19:24:59.000000Z\",\n        \"updated_at\": \"2025-06-05T20:07:13.000000Z\",\n        \"documents\": [],\n        \"operation\": null,\n        \"terpenes\": [],\n        \"cannabinoids\": []\n    }\n}"}],"_postman_id":"9944ab8a-cb39-4cb9-b2a2-c59b05b9ac2b"},{"name":"Batch (V1 - DEPRECATED)","id":"9d3a71fb-9896-4435-955a-2b6f424c4f76","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\": 2197,  // required | [integer]\n  \"operation_id\": 13, // 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://app.apextrading.com/api/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":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["v1","batches"],"host":["https://app.apextrading.com/api"],"query":[],"variable":[]}},"response":[{"id":"67c43263-8ffd-4aac-a841-5f6843423760","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\": 2197,  // required | [integer]\n  \"operation_id\": 13, // 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://app.apextrading.com/api/batches"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 30 May 2025 14:42: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    \"batch\": {\n        \"id\": 4173,\n        \"uuid\": \"c9b1f2c5-d26b-471b-886d-edd71572d240\",\n        \"name\": \"Premium Batch #003\",\n        \"product_id\": 2197,\n        \"operation_id\": 13,\n        \"unlimited_quantity\": false,\n        \"quantity\": 100.5,\n        \"zone_number\": \"A-12\",\n        \"lot_number\": \"LOT-2024-001\",\n        \"sack_number\": \"SACK-456\",\n        \"seeded\": \"No\",\n        \"harvest_date\": \"2024-10-15T00:00:00.000000Z\",\n        \"dry_date\": \"2024-10-30T00:00:00.000000Z\",\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\": 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            \"packagePrice\": \"$15.63/pack\",\n            \"singlesPrice\": \"$15.63/unit\"\n        },\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-30T14:42:55.000000Z\",\n        \"updated_at\": \"2025-05-30T14:42:55.000000Z\",\n        \"documents\": [],\n        \"operation\": {\n            \"id\": 13,\n            \"name\": \"High Hopes Farm - Cultivation\",\n            \"industry\": \"Recreational\",\n            \"state_license\": \"020-X0001\"\n        },\n        \"terpenes\": [\n            {\n                \"id\": 1,\n                \"batch_terpene_id\": 12080,\n                \"batch_id\": 4173,\n                \"product_id\": 2197,\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\": 12081,\n                \"batch_id\": 4173,\n                \"product_id\": 2197,\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\": 7456,\n                \"batch_id\": 4173,\n                \"product_id\": 2197,\n                \"name\": \"Cannabichromene\",\n                \"abbreviation\": \"CBC\",\n                \"display_name\": \"(CBC) Cannabichromene\",\n                \"measurement\": \"23.2\",\n                \"measurement_type\": \"%\"\n            }\n        ]\n    }\n}"}],"_postman_id":"9d3a71fb-9896-4435-955a-2b6f424c4f76"},{"name":"Batch (V2)","id":"4cee16f9-ac5c-47da-9b01-99e5db879e50","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\": 2197,  // required | [integer]\n  \"operation_id\": 13, // 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://app.apextrading.com/api/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":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["v2","batches"],"host":["https://app.apextrading.com/api"],"query":[],"variable":[]}},"response":[{"id":"6d7402dc-2a6a-48a8-a0fb-a57090c1d3df","name":"Batch (V2)","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\": 2197,  // required | [integer]\n  \"operation_id\": 13, // 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://app.apextrading.com/api/v2/batches"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 05 Nov 2025 00:16: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":"4998"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"batch\": {\n        \"id\": 4652,\n        \"uuid\": \"67c409aa-8e04-4fd5-a2fe-559f00d624f6\",\n        \"name\": \"Premium Batch #003\",\n        \"product_id\": 2197,\n        \"operation_id\": 13,\n        \"unlimited_quantity\": false,\n        \"quantity\": 100.5,\n        \"zone_number\": \"A-12\",\n        \"lot_number\": \"LOT-2024-001\",\n        \"sack_number\": \"SACK-456\",\n        \"seeded\": \"No\",\n        \"harvest_date\": \"2024-10-15T00:00:00.000000Z\",\n        \"dry_date\": \"2024-10-30T00:00:00.000000Z\",\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        \"minimum_sales_price_base_unit\": \"400.00\",\n        \"sample_price\": \"5.00\",\n        \"cost_of_goods\": \"250.00\",\n        \"true_cost\": \"300.00\",\n        \"listing_price\": \"500.00\",\n        \"listing_price_base_unit\": \"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            \"message\": \"We do not believe this field is used and are considering removing it. Please email api.apextrading.com if you are utilizing it and explain how you are using it.\"\n        },\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-11-05T00:16:14.000000Z\",\n        \"updated_at\": \"2025-11-05T00:16:14.000000Z\",\n        \"documents\": [],\n        \"operation\": {\n            \"id\": 13,\n            \"name\": \"High Hopes Farm - Cultivation\",\n            \"industry\": \"Recreational\",\n            \"state_license\": \"020-X0001\"\n        },\n        \"terpenes\": [\n            {\n                \"id\": 1,\n                \"batch_terpene_id\": 13464,\n                \"batch_id\": 4652,\n                \"product_id\": 2197,\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\": 13465,\n                \"batch_id\": 4652,\n                \"product_id\": 2197,\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\": 8179,\n                \"batch_id\": 4652,\n                \"product_id\": 2197,\n                \"name\": \"Cannabichromene\",\n                \"abbreviation\": \"CBC\",\n                \"display_name\": \"(CBC) Cannabichromene\",\n                \"measurement\": \"23.2\",\n                \"measurement_type\": \"%\"\n            }\n        ]\n    }\n}"}],"_postman_id":"4cee16f9-ac5c-47da-9b01-99e5db879e50"},{"name":"Batch (V1 - DEPRECATED)","id":"6b31feb8-5e97-4160-8d1a-9c0b21f2a6c0","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://app.apextrading.com/api/v1/batches/{{batch_id}}","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":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["v1","batches","{{batch_id}}"],"host":["https://app.apextrading.com/api"],"query":[],"variable":[]}},"response":[{"id":"87b7b9db-a2be-45e4-92e4-280627cc0dc4","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://app.apextrading.com/api/batches/{{batch_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 30 May 2025 14:43:19 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\": 4173,\n        \"uuid\": \"c9b1f2c5-d26b-471b-886d-edd71572d240\",\n        \"name\": \"Premium Batch #003\",\n        \"product_id\": 2197,\n        \"operation_id\": 13,\n        \"unlimited_quantity\": false,\n        \"quantity\": 100.5,\n        \"zone_number\": \"A-12\",\n        \"lot_number\": \"LOT-2024-001\",\n        \"sack_number\": \"SACK-456\",\n        \"seeded\": \"No\",\n        \"harvest_date\": \"2024-10-15T00:00:00.000000Z\",\n        \"dry_date\": \"2024-10-30T00:00:00.000000Z\",\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            \"packagePrice\": \"$15.63/pack\",\n            \"singlesPrice\": \"$15.63/unit\"\n        },\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-30T14:42:55.000000Z\",\n        \"updated_at\": \"2025-05-30T14:43:19.000000Z\",\n        \"documents\": [],\n        \"operation\": {\n            \"id\": 13,\n            \"name\": \"High Hopes Farm - Cultivation\",\n            \"industry\": \"Recreational\",\n            \"state_license\": \"020-X0001\"\n        },\n        \"terpenes\": [\n            {\n                \"id\": 1,\n                \"batch_terpene_id\": 12082,\n                \"batch_id\": 4173,\n                \"product_id\": 2197,\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\": 12083,\n                \"batch_id\": 4173,\n                \"product_id\": 2197,\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\": 7457,\n                \"batch_id\": 4173,\n                \"product_id\": 2197,\n                \"name\": \"Cannabichromene\",\n                \"abbreviation\": \"CBC\",\n                \"display_name\": \"(CBC) Cannabichromene\",\n                \"measurement\": \"23.2\",\n                \"measurement_type\": \"%\"\n            }\n        ]\n    }\n}"}],"_postman_id":"6b31feb8-5e97-4160-8d1a-9c0b21f2a6c0"},{"name":"Batch (V2)","id":"8e01ccc6-d014-4279-80ad-6c18c4621bfe","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://app.apextrading.com/api/v2/batches/{{batch_id}}","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":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["v2","batches","{{batch_id}}"],"host":["https://app.apextrading.com/api"],"query":[],"variable":[]}},"response":[{"id":"7fdf60fd-1b7e-4fe4-a2ac-e6375b9b908a","name":"Batch (V2)","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  \"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://app.apextrading.com/api/v2/batches/{{batch_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 05 Nov 2025 00:16:06 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\": 109,\n        \"uuid\": \"2dda0202-7613-4bbc-b114-bfb37d031f03\",\n        \"name\": \"Premium Batch #003\",\n        \"product_id\": 74,\n        \"operation_id\": null,\n        \"unlimited_quantity\": false,\n        \"quantity\": 0,\n        \"zone_number\": \"A-12\",\n        \"lot_number\": \"LOT-2024-001\",\n        \"sack_number\": \"SACK-456\",\n        \"seeded\": \"No\",\n        \"harvest_date\": \"2024-10-15T00:00:00.000000Z\",\n        \"dry_date\": \"2024-10-30T00:00:00.000000Z\",\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        \"minimum_sales_price_base_unit\": \"400.00\",\n        \"sample_price\": \"5.00\",\n        \"cost_of_goods\": \"250.00\",\n        \"true_cost\": \"300.00\",\n        \"listing_price\": \"500.00\",\n        \"listing_price_base_unit\": \"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            \"message\": \"We do not believe this field is used and are considering removing it. Please email api.apextrading.com if you are utilizing it and explain how you are using it.\"\n        },\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\": 0,\n        \"sample_quantity_label\": \"1g samples\",\n        \"sample_size\": 1,\n        \"restricted\": false,\n        \"created_at\": \"2020-08-31T19:24:59.000000Z\",\n        \"updated_at\": \"2025-11-05T00:16:06.000000Z\",\n        \"documents\": [],\n        \"operation\": null,\n        \"terpenes\": [\n            {\n                \"id\": 1,\n                \"batch_terpene_id\": 13462,\n                \"batch_id\": 109,\n                \"product_id\": 74,\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\": 13463,\n                \"batch_id\": 109,\n                \"product_id\": 74,\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\": 8178,\n                \"batch_id\": 109,\n                \"product_id\": 74,\n                \"name\": \"Cannabichromene\",\n                \"abbreviation\": \"CBC\",\n                \"display_name\": \"(CBC) Cannabichromene\",\n                \"measurement\": \"23.2\",\n                \"measurement_type\": \"%\"\n            }\n        ]\n    }\n}"}],"_postman_id":"8e01ccc6-d014-4279-80ad-6c18c4621bfe"},{"name":"Field Rules","id":"a2410205-dfbf-433f-8e30-1aaac4bae21c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer  ","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/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":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["v1","batches","meta","field-rules"],"host":["https://app.apextrading.com/api"],"query":[],"variable":[]}},"response":[{"id":"761b4866-bb25-440d-ade8-a088a13f4937","name":"Field Rules","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer  ","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/batches/meta/field-rules"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 30 May 2025 14:39: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":"4999"},{"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":"a2410205-dfbf-433f-8e30-1aaac4bae21c"}],"id":"7f121dc3-c937-4587-9c06-b8a1f3be53d0","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":"7f121dc3-c937-4587-9c06-b8a1f3be53d0","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}}},{"name":"Brands","item":[{"name":"Brands","id":"51125cf1-17d7-4f5d-9882-d15de2954d23","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer  ","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/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":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["v1","brands"],"host":["https://app.apextrading.com/api"],"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":"5dc82f9d-5a2c-4972-9317-9adfc7ac9a28","name":"Brands","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer  ","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"https://app.apextrading.com/api/brands","host":["https://app.apextrading.com/api"],"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":"# of records to return per page","type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 07 May 2025 02:31: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":"4997"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"brands\": [\n        {\n            \"id\": 4,\n            \"name\": \"High Hopes Farm\",\n            \"summary\": null,\n            \"company_id\": 13,\n            \"created_at\": \"2020-07-28T19:00:47.000000Z\",\n            \"updated_at\": \"2022-08-10T00:37:22.000000Z\",\n            \"license\": null,\n            \"logo_link\": \"https://s3-us-west-2.amazonaws.com/upload-app-demo.apextrading.com/public/companies/13/1595962847-SCkjZkNTOzbuo6OIYUGIcakOGnPO3mECUz7HQvwN55bVEpHxmV.png\"\n        },\n        {\n            \"id\": 5,\n            \"name\": \"Medical Extracts\",\n            \"summary\": \"We have the tastiest, cleanest extracts on the Market!\",\n            \"company_id\": 13,\n            \"created_at\": \"2020-07-28T19:01:12.000000Z\",\n            \"updated_at\": \"2022-08-12T20:44:11.000000Z\",\n            \"license\": null,\n            \"logo_link\": \"https://s3-us-west-2.amazonaws.com/upload-app-demo.apextrading.com/public/companies/13/1597955708-genericextracts_logo.jpeg\"\n        },\n        {\n            \"id\": 6,\n            \"name\": \"CannaLab\",\n            \"summary\": \"Gold Moon crafts brilliant cannabis concentrates. They focus on building flavor profiles that synergize perfectly with their terpine profiles. Each strain is designed specifically to give you the best experience possible, truly golden!\",\n            \"company_id\": 13,\n            \"created_at\": \"2020-07-28T19:02:57.000000Z\",\n            \"updated_at\": \"2023-06-28T22:33:36.000000Z\",\n            \"license\": null,\n            \"logo_link\": \"https://s3-us-west-2.amazonaws.com/upload-app-demo.apextrading.com/public/companies/13/1597810895-store1.jpeg\"\n        },\n        {\n            \"id\": 68,\n            \"name\": \"Bills Farm\",\n            \"summary\": null,\n            \"company_id\": 13,\n            \"created_at\": \"2021-08-02T18:33:20.000000Z\",\n            \"updated_at\": \"2022-10-10T21:44:41.000000Z\",\n            \"license\": null,\n            \"logo_link\": \"https://s3-us-west-2.amazonaws.com/upload-app-demo.apextrading.com/public/companies/13/1646350813-Screen-Shot-2022-02-28-at-11.16.23-AM.png\"\n        },\n        {\n            \"id\": 118,\n            \"name\": \"CannaCrate Cultivation\",\n            \"summary\": null,\n            \"company_id\": 13,\n            \"created_at\": \"2024-04-17T17:59:32.000000Z\",\n            \"updated_at\": \"2024-12-03T20:31:38.000000Z\",\n            \"license\": null,\n            \"logo_link\": \"https://s3-us-west-2.amazonaws.com/upload-app-demo.apextrading.com/public/companies/13/1713376772-Original-size-Canna-Crate-Cultivation-Logo.png\"\n        }\n    ],\n    \"links\": {\n        \"first\": \"https://demo.apextrading.com/api/v1/brands?page=1\",\n        \"last\": \"https://demo.apextrading.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.apextrading.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.apextrading.com/api/v1/brands\",\n        \"per_page\": 15,\n        \"to\": 5,\n        \"total\": 5\n    }\n}"}],"_postman_id":"51125cf1-17d7-4f5d-9882-d15de2954d23"},{"name":"Brand","id":"09124427-3c45-4fd1-84e3-77ef83831860","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer  ","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/brands/{{brand_id}}","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":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["brands","{{brand_id}}"],"host":["https://app.apextrading.com/api"],"query":[],"variable":[]}},"response":[{"id":"abcb2878-d082-4df6-bfb4-3c02b9ae46f7","name":"Brand","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer  ","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/brands/{{brand_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 02:10: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    \"brand\": {\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}"}],"_postman_id":"09124427-3c45-4fd1-84e3-77ef83831860"}],"id":"d9d2e914-81a6-480b-9077-12665c8fc29a","_postman_id":"d9d2e914-81a6-480b-9077-12665c8fc29a","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}}},{"name":"Buyers","item":[{"name":"Buyers","id":"ad4e0aa9-3925-4d48-8cc5-83abb80c61ad","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer  ","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/v1/buyers?updated_at_from=2025-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":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["v1","buyers"],"host":["https://app.apextrading.com/api"],"query":[{"disabled":true,"description":{"content":"<p>include contacts</p>\n","type":"text/plain"},"key":"with_contacts","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 tags</p>\n","type":"text/plain"},"key":"with_tags","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,"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":"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"},{"description":{"content":"<p>Number of records to return per page</p>\n","type":"text/plain"},"key":"per_page","value":"2"}],"variable":[]}},"response":[{"id":"5d684da2-aef5-49ab-89c1-80d9c625f453","name":"Buyers","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer  ","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"https://app.apextrading.com/api/v1/buyers?updated_at_from=2025-04-20T22:04:50Z&per_page=2","host":["https://app.apextrading.com/api"],"path":["v1","buyers"],"query":[{"key":"with_contacts","value":"true","description":"include contacts","disabled":true},{"key":"with_notes","value":"true","description":"include notes","disabled":true},{"key":"with_contact_logs","value":"true","description":"include contact logs","disabled":true},{"key":"with_tags","value":"true","description":"include tags","type":"text","disabled":true},{"key":"with_stage","value":"false","description":"include stage","disabled":true},{"key":"with_pricing_tier","value":"true","description":"include prcing tier","disabled":true},{"key":"with_sales_reps","value":"true","description":"include sales reps","disabled":true},{"key":"with_buyer_company","value":"true","description":"include the buyer's company (if buyer has an account)","disabled":true},{"key":"with_term","value":"true","description":"includes term","disabled":true},{"key":"ids[]","value":"13","description":"Filter by ids","disabled":true},{"key":"disabled","value":"false","description":"filter by disabled buyers. All returned if no key present","type":"text","disabled":true},{"key":"created_at_from","value":"2025-04-20T22:04:50Z","description":"filter by created after query in UTC","disabled":true},{"key":"created_at_to","value":"2025-04-22T22:04:50Z","description":"filter by created before query in UTC","disabled":true},{"key":"updated_at_from","value":"2025-04-20T22:04:50Z","description":"filter by updated after query in UTC **REQUIRED **"},{"key":"updated_at_to","value":"2025-04-22T22:04:50Z","description":"filter by updated before query in UTC","disabled":true},{"key":"per_page","value":"2","description":"Number of records to return per page"}]}},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Date","value":"Mon, 23 Mar 2026 16:42: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":"15"},{"key":"X-RateLimit-Remaining","value":"14"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"buyers\": [\n        {\n            \"id\": 6,\n            \"uuid\": \"11dce4e5-20b2-42c5-8df9-ec1027c2a141\",\n            \"name\": \"Nectar - Pioneer\",\n            \"owning_company_id\": 13,\n            \"disabled\": false,\n            \"buyer_company_id\": null,\n            \"standard_deal_flow_id\": 25,\n            \"buyer_stage_id\": 113,\n            \"pricing_tier_id\": 21,\n            \"slug\": \"nectar\",\n            \"net_terms_id\": 7,\n            \"quickbooks_customer_id\": 13,\n            \"website_url\": null,\n            \"buyer_type\": \"Multi\",\n            \"disable_bulk_discounts\": false,\n            \"vendor_disabled\": false,\n            \"phone\": null,\n            \"line_one\": \"3453 Pioneer Dr SE\",\n            \"line_two\": null,\n            \"city\": \"Salem\",\n            \"state_id\": 56,\n            \"zip\": \"97302\",\n            \"country_id\": 1,\n            \"state_license\": \"571591\",\n            \"type\": \"Dispensary\",\n            \"industry\": \"Recreational\",\n            \"memo\": \"Operational\",\n            \"created_at\": \"2020-07-28T19:05:57.000000Z\",\n            \"updated_at\": \"2026-03-06T06:16:36.000000Z\"\n        },\n        {\n            \"id\": 12957,\n            \"uuid\": \"7fe24f4a-c467-488d-a246-ca229eaabffb\",\n            \"name\": \"Nectar - Portland\",\n            \"owning_company_id\": 13,\n            \"disabled\": false,\n            \"buyer_company_id\": null,\n            \"standard_deal_flow_id\": 25,\n            \"buyer_stage_id\": 113,\n            \"pricing_tier_id\": 21,\n            \"slug\": \"nectar-portland\",\n            \"net_terms_id\": 7,\n            \"quickbooks_customer_id\": 13,\n            \"website_url\": null,\n            \"buyer_type\": \"Multi\",\n            \"disable_bulk_discounts\": false,\n            \"vendor_disabled\": false,\n            \"phone\": null,\n            \"line_one\": \"342 NE Halsey St\",\n            \"line_two\": null,\n            \"city\": \"Portland\",\n            \"state_id\": 56,\n            \"zip\": \"97232\",\n            \"country_id\": 1,\n            \"state_license\": \"135325135\",\n            \"type\": \"Dispensary\",\n            \"industry\": \"Medical\",\n            \"memo\": \"all orders get delivered to this location\",\n            \"created_at\": \"2020-07-28T19:07:01.000000Z\",\n            \"updated_at\": \"2026-03-06T06:19:26.000000Z\"\n        }\n    ],\n    \"links\": {\n        \"first\": \"https://demo.apextrading.com/api/v1/buyers?updated_at_from=2025-04-20T22%3A04%3A50Z&per_page=2&page=1\",\n        \"last\": \"https://demo.apextrading.com/api/v1/buyers?updated_at_from=2025-04-20T22%3A04%3A50Z&per_page=2&page=83\",\n        \"prev\": null,\n        \"next\": \"https://demo.apextrading.com/api/v1/buyers?updated_at_from=2025-04-20T22%3A04%3A50Z&per_page=2&page=2\"\n    },\n    \"meta\": {\n        \"current_page\": 1,\n        \"from\": 1,\n        \"last_page\": 83,\n        \"links\": [\n            {\n                \"url\": null,\n                \"label\": \"&laquo; Previous\",\n                \"page\": null,\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.apextrading.com/api/v1/buyers?updated_at_from=2025-04-20T22%3A04%3A50Z&per_page=2&page=1\",\n                \"label\": \"1\",\n                \"page\": 1,\n                \"active\": true\n            },\n            {\n                \"url\": \"https://demo.apextrading.com/api/v1/buyers?updated_at_from=2025-04-20T22%3A04%3A50Z&per_page=2&page=2\",\n                \"label\": \"2\",\n                \"page\": 2,\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.apextrading.com/api/v1/buyers?updated_at_from=2025-04-20T22%3A04%3A50Z&per_page=2&page=3\",\n                \"label\": \"3\",\n                \"page\": 3,\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.apextrading.com/api/v1/buyers?updated_at_from=2025-04-20T22%3A04%3A50Z&per_page=2&page=4\",\n                \"label\": \"4\",\n                \"page\": 4,\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.apextrading.com/api/v1/buyers?updated_at_from=2025-04-20T22%3A04%3A50Z&per_page=2&page=5\",\n                \"label\": \"5\",\n                \"page\": 5,\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.apextrading.com/api/v1/buyers?updated_at_from=2025-04-20T22%3A04%3A50Z&per_page=2&page=6\",\n                \"label\": \"6\",\n                \"page\": 6,\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.apextrading.com/api/v1/buyers?updated_at_from=2025-04-20T22%3A04%3A50Z&per_page=2&page=7\",\n                \"label\": \"7\",\n                \"page\": 7,\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.apextrading.com/api/v1/buyers?updated_at_from=2025-04-20T22%3A04%3A50Z&per_page=2&page=8\",\n                \"label\": \"8\",\n                \"page\": 8,\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.apextrading.com/api/v1/buyers?updated_at_from=2025-04-20T22%3A04%3A50Z&per_page=2&page=9\",\n                \"label\": \"9\",\n                \"page\": 9,\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.apextrading.com/api/v1/buyers?updated_at_from=2025-04-20T22%3A04%3A50Z&per_page=2&page=10\",\n                \"label\": \"10\",\n                \"page\": 10,\n                \"active\": false\n            },\n            {\n                \"url\": null,\n                \"label\": \"...\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.apextrading.com/api/v1/buyers?updated_at_from=2025-04-20T22%3A04%3A50Z&per_page=2&page=82\",\n                \"label\": \"82\",\n                \"page\": 82,\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.apextrading.com/api/v1/buyers?updated_at_from=2025-04-20T22%3A04%3A50Z&per_page=2&page=83\",\n                \"label\": \"83\",\n                \"page\": 83,\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.apextrading.com/api/v1/buyers?updated_at_from=2025-04-20T22%3A04%3A50Z&per_page=2&page=2\",\n                \"label\": \"Next &raquo;\",\n                \"page\": 2,\n                \"active\": false\n            }\n        ],\n        \"path\": \"https://demo.apextrading.com/api/v1/buyers\",\n        \"per_page\": 2,\n        \"to\": 2,\n        \"total\": 165\n    }\n}"}],"_postman_id":"ad4e0aa9-3925-4d48-8cc5-83abb80c61ad"},{"name":"Buyer","id":"d7ec90ba-c41c-48b6-bf6e-e5f74a4db1fe","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer  ","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/v1/buyers/{{buyer_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":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["v1","buyers","{{buyer_id}}"],"host":["https://app.apextrading.com/api"],"query":[{"disabled":true,"description":{"content":"<p>filter to include contact logs</p>\n","type":"text/plain"},"key":"with_contact_logs","value":"false"}],"variable":[]}},"response":[{"id":"686ac417-250b-44ef-9cb8-10c42daef2fc","name":"Buyer","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer  ","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"https://app.apextrading.com/api/v1/buyers/{{buyer_id}}","host":["https://app.apextrading.com/api"],"path":["v1","buyers","{{buyer_id}}"],"query":[{"key":"with_contact_logs","value":"false","description":"filter to include contact logs","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Date","value":"Mon, 23 Mar 2026 17:04: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":"15"},{"key":"X-RateLimit-Remaining","value":"14"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"buyer\": {\n        \"id\": 6,\n        \"uuid\": \"11dce4e5-20b2-42c5-8df9-ec1027c2a141\",\n        \"name\": \"Nectar - Pioneer\",\n        \"owning_company_id\": 13,\n        \"disabled\": false,\n        \"buyer_company_id\": null,\n        \"standard_deal_flow_id\": 25,\n        \"buyer_stage_id\": 113,\n        \"pricing_tier_id\": 21,\n        \"slug\": \"nectar\",\n        \"net_terms_id\": 7,\n        \"quickbooks_customer_id\": 13,\n        \"website_url\": null,\n        \"buyer_type\": \"Multi\",\n        \"disable_bulk_discounts\": false,\n        \"vendor_disabled\": false,\n        \"phone\": null,\n        \"line_one\": \"3453 Pioneer Dr SE\",\n        \"line_two\": null,\n        \"city\": \"Salem\",\n        \"state_id\": 56,\n        \"zip\": \"97302\",\n        \"country_id\": 1,\n        \"state_license\": \"571591\",\n        \"type\": \"Dispensary\",\n        \"industry\": \"Recreational\",\n        \"memo\": \"Operational\",\n        \"created_at\": \"2020-07-28T19:05:57.000000Z\",\n        \"updated_at\": \"2026-03-06T06:16:36.000000Z\",\n        \"contacts\": [\n            {\n                \"id\": 10340,\n                \"name\": \"Kristen\",\n                \"contact_preference\": null,\n                \"primary_phone\": null,\n                \"secondary_phone\": null,\n                \"title\": null,\n                \"email\": null,\n                \"memo\": null,\n                \"created_at\": \"2021-08-26T15:11:35.000000Z\",\n                \"updated_at\": \"2026-03-23T12:00:14.000000Z\",\n                \"notifiable\": true,\n                \"buyer_opted_out\": false,\n                \"opted_out_date\": null,\n                \"opted_out_override\": null,\n                \"opted_in_email_sent\": false,\n                \"opted_in_email_sent_date\": null,\n                \"last_name\": null\n            }\n        ],\n        \"notes\": [\n            {\n                \"id\": 1,\n                \"buyer_id\": 6,\n                \"buyer_contact_id\": null,\n                \"text\": \"Well put together stores. They have a nice customer experience with a focus on quality products.\",\n                \"title\": \"Store Insights\",\n                \"created_at\": \"2020-07-28T19:10:34.000000Z\",\n                \"updated_at\": \"2020-07-28T19:10:34.000000Z\"\n            },\n            {\n                \"id\": 5,\n                \"buyer_id\": 6,\n                \"buyer_contact_id\": null,\n                \"text\": \"always looking for top shelf flower\",\n                \"title\": \"always looking for top shelf flower\",\n                \"created_at\": \"2020-08-26T16:59:28.000000Z\",\n                \"updated_at\": \"2020-08-26T16:59:28.000000Z\"\n            },\n            {\n                \"id\": 19,\n                \"buyer_id\": 6,\n                \"buyer_contact_id\": null,\n                \"text\": \"loves the cured batter whenever we have that\",\n                \"title\": \"loves the cured batter whenever we have that\",\n                \"created_at\": \"2021-03-04T23:42:58.000000Z\",\n                \"updated_at\": \"2021-03-04T23:42:58.000000Z\"\n            }\n        ],\n        \"stage\": {\n            \"id\": 113,\n            \"sort_order\": 3,\n            \"name\": \"Active - Single Store\",\n            \"color\": \"#5CFB57\",\n            \"created_at\": \"2020-07-28T18:07:19.000000Z\",\n            \"updated_at\": \"2021-04-22T15:16:20.000000Z\"\n        },\n        \"term\": {\n            \"id\": 7,\n            \"name\": \"COD\",\n            \"finalPaymentDaysAfterDelivery\": 0\n        },\n        \"pricing_tier\": null,\n        \"sales_reps\": [\n            {\n                \"name\": \"Stefanie\",\n                \"phone\": \"9802933519\",\n                \"email\": \"stefanie@apextrading.com\"\n            }\n        ],\n        \"buyer_company\": null,\n        \"tags\": [\n            {\n                \"name\": \"Spring Buyer\",\n                \"color\": \"#333333\",\n                \"background_color\": \"#F1F1F1\"\n            },\n            {\n                \"name\": \"Multi-Location Retail\",\n                \"color\": \"#000000\",\n                \"background_color\": \"#F1F1F1\"\n            }\n        ]\n    }\n}"}],"_postman_id":"d7ec90ba-c41c-48b6-bf6e-e5f74a4db1fe"}],"id":"5eeb85d1-3a58-45a4-8e83-ff93a81fe8be","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":"5eeb85d1-3a58-45a4-8e83-ff93a81fe8be","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}}},{"name":"Buyers Groups","item":[{"name":"Buyer Groups","id":"bf8f5d60-8dc6-4b5d-86c5-bc2905443786","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer  ","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/v1/buyer-groups?updated_at_from=2025-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":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["v1","buyer-groups"],"host":["https://app.apextrading.com/api"],"query":[{"disabled":true,"description":{"content":"<p>include buyers</p>\n","type":"text/plain"},"key":"with_buyers","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 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":"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"},{"description":{"content":"<p>Number of records to return per page</p>\n","type":"text/plain"},"key":"per_page","value":"2"}],"variable":[]}},"response":[],"_postman_id":"bf8f5d60-8dc6-4b5d-86c5-bc2905443786"},{"name":"Buyer Group","id":"2c21105c-9e65-4191-b249-167fd172d16b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer  ","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/v1/buyer-groups/{{buyer_group_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":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["v1","buyer-groups","{{buyer_group_id}}"],"host":["https://app.apextrading.com/api"],"query":[{"disabled":true,"description":{"content":"<p>filter to include buyers</p>\n","type":"text/plain"},"key":"with_buyers","value":"false"}],"variable":[]}},"response":[],"_postman_id":"2c21105c-9e65-4191-b249-167fd172d16b"}],"id":"3e9360b3-7e5b-45e6-96fc-d12493db71d8","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":"3e9360b3-7e5b-45e6-96fc-d12493db71d8","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}}},{"name":"Buyer Contact Logs","item":[{"name":"Buyer Contact Logs","id":"f412a136-1d6b-47af-a638-04afdc2b803c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer  ","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/v1/buyer-contact-logs?updated_at_from=2025-04-20T22:04:50Z&per_page=2&buyer_id=10532","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":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["v1","buyer-contact-logs"],"host":["https://app.apextrading.com/api"],"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":"10532"}],"variable":[]}},"response":[{"id":"8e5aed76-31c8-45ef-846c-d4c8505d4e48","name":"Buyer Contact Logs","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer  ","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"https://app.apextrading.com/api/v1/buyer-contact-logs?updated_at_from=2025-04-20T22:04:50Z&per_page=2&buyer_id=10532","host":["https://app.apextrading.com/api"],"path":["v1","buyer-contact-logs"],"query":[{"key":"updated_at_from","value":"2025-04-20T22:04:50Z","description":"filter by updated after query in UTC **REQUIRED **"},{"key":"per_page","value":"2","description":"Number of records to return per page"},{"key":"buyer_id","value":"10532","description":"Optionally only return contact logs that belong to a specific buyer"}]}},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Date","value":"Mon, 23 Mar 2026 16:43: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":"15"},{"key":"X-RateLimit-Remaining","value":"14"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"buyer_contact_logs\": [\n        {\n            \"id\": 17919,\n            \"buyer_contact_id\": 11688,\n            \"buyer_id\": 10532,\n            \"method\": \"Bulk Menu Notification\",\n            \"text\": \"\\nNew Strains Just Harvested!        Hey \\n\\t\\t\\t\\t\\t\\t  Kelly,\\n\\t\\t\\t\\t\\t\\t  Here's an example of an email blast through Apex Trading.  High Hopes Farms is our fake brand we use for our demo site.  Picture this custom tailored to your brand and with your products on it.\\n\\t\\t\\t\\t\\t\\tCultivarTropicana Gummies - 100mg (Case of 50)$315.00/CasesShop NowCultivarCalming Lavender - 50mg (8fl oz)$24.30/UnitsShop NowClick the shop now button below to see the full menu.  And feel free to place an order to test it out since this is just our demo site with fake inventory and products.Shop NowEric Williamseric@apextrading.com8656076656\\n\",\n            \"created_at\": \"2025-04-21T16:28:55.000000Z\",\n            \"updated_at\": \"2025-04-21T16:28:55.000000Z\"\n        },\n        {\n            \"id\": 17920,\n            \"buyer_contact_id\": 11688,\n            \"buyer_id\": 10532,\n            \"method\": \"In Person\",\n            \"text\": \"Met with Kelly at the store and gave her a sample of sour gummies\",\n            \"created_at\": \"2025-04-21T16:35:17.000000Z\",\n            \"updated_at\": \"2025-04-21T16:35:17.000000Z\"\n        }\n    ],\n    \"links\": {\n        \"first\": \"https://demo.apextrading.com/api/v1/buyer-contact-logs?updated_at_from=2025-04-20T22%3A04%3A50Z&per_page=2&buyer_id=10532&page=1\",\n        \"last\": \"https://demo.apextrading.com/api/v1/buyer-contact-logs?updated_at_from=2025-04-20T22%3A04%3A50Z&per_page=2&buyer_id=10532&page=32\",\n        \"prev\": null,\n        \"next\": \"https://demo.apextrading.com/api/v1/buyer-contact-logs?updated_at_from=2025-04-20T22%3A04%3A50Z&per_page=2&buyer_id=10532&page=2\"\n    },\n    \"meta\": {\n        \"current_page\": 1,\n        \"from\": 1,\n        \"last_page\": 32,\n        \"links\": [\n            {\n                \"url\": null,\n                \"label\": \"&laquo; Previous\",\n                \"page\": null,\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.apextrading.com/api/v1/buyer-contact-logs?updated_at_from=2025-04-20T22%3A04%3A50Z&per_page=2&buyer_id=10532&page=1\",\n                \"label\": \"1\",\n                \"page\": 1,\n                \"active\": true\n            },\n            {\n                \"url\": \"https://demo.apextrading.com/api/v1/buyer-contact-logs?updated_at_from=2025-04-20T22%3A04%3A50Z&per_page=2&buyer_id=10532&page=2\",\n                \"label\": \"2\",\n                \"page\": 2,\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.apextrading.com/api/v1/buyer-contact-logs?updated_at_from=2025-04-20T22%3A04%3A50Z&per_page=2&buyer_id=10532&page=3\",\n                \"label\": \"3\",\n                \"page\": 3,\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.apextrading.com/api/v1/buyer-contact-logs?updated_at_from=2025-04-20T22%3A04%3A50Z&per_page=2&buyer_id=10532&page=4\",\n                \"label\": \"4\",\n                \"page\": 4,\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.apextrading.com/api/v1/buyer-contact-logs?updated_at_from=2025-04-20T22%3A04%3A50Z&per_page=2&buyer_id=10532&page=5\",\n                \"label\": \"5\",\n                \"page\": 5,\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.apextrading.com/api/v1/buyer-contact-logs?updated_at_from=2025-04-20T22%3A04%3A50Z&per_page=2&buyer_id=10532&page=6\",\n                \"label\": \"6\",\n                \"page\": 6,\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.apextrading.com/api/v1/buyer-contact-logs?updated_at_from=2025-04-20T22%3A04%3A50Z&per_page=2&buyer_id=10532&page=7\",\n                \"label\": \"7\",\n                \"page\": 7,\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.apextrading.com/api/v1/buyer-contact-logs?updated_at_from=2025-04-20T22%3A04%3A50Z&per_page=2&buyer_id=10532&page=8\",\n                \"label\": \"8\",\n                \"page\": 8,\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.apextrading.com/api/v1/buyer-contact-logs?updated_at_from=2025-04-20T22%3A04%3A50Z&per_page=2&buyer_id=10532&page=9\",\n                \"label\": \"9\",\n                \"page\": 9,\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.apextrading.com/api/v1/buyer-contact-logs?updated_at_from=2025-04-20T22%3A04%3A50Z&per_page=2&buyer_id=10532&page=10\",\n                \"label\": \"10\",\n                \"page\": 10,\n                \"active\": false\n            },\n            {\n                \"url\": null,\n                \"label\": \"...\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.apextrading.com/api/v1/buyer-contact-logs?updated_at_from=2025-04-20T22%3A04%3A50Z&per_page=2&buyer_id=10532&page=31\",\n                \"label\": \"31\",\n                \"page\": 31,\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.apextrading.com/api/v1/buyer-contact-logs?updated_at_from=2025-04-20T22%3A04%3A50Z&per_page=2&buyer_id=10532&page=32\",\n                \"label\": \"32\",\n                \"page\": 32,\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.apextrading.com/api/v1/buyer-contact-logs?updated_at_from=2025-04-20T22%3A04%3A50Z&per_page=2&buyer_id=10532&page=2\",\n                \"label\": \"Next &raquo;\",\n                \"page\": 2,\n                \"active\": false\n            }\n        ],\n        \"path\": \"https://demo.apextrading.com/api/v1/buyer-contact-logs\",\n        \"per_page\": 2,\n        \"to\": 2,\n        \"total\": 64\n    }\n}"}],"_postman_id":"f412a136-1d6b-47af-a638-04afdc2b803c"},{"name":"Buyer Contact Log","id":"5133ec6a-2c7d-49f0-9cc3-ef3133813153","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer  ","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/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":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["v1","buyer-contact-log","{{buyer_contact_log_id}}"],"host":["https://app.apextrading.com/api"],"query":[],"variable":[]}},"response":[{"id":"8f06f4f6-2977-47af-8302-081465745a3a","name":"Buyer Contact Log","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer  ","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/v1/buyer-contact-logs/{{buyer_contact_log_id}}"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Date","value":"Mon, 23 Mar 2026 17:06: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":"15"},{"key":"X-RateLimit-Remaining","value":"14"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"buyer_contact_log\": {\n        \"id\": 17919,\n        \"buyer_contact_id\": 11688,\n        \"buyer_id\": 10532,\n        \"method\": \"Bulk Menu Notification\",\n        \"text\": \"\\nNew Strains Just Harvested!        Hey \\n\\t\\t\\t\\t\\t\\t  Kelly,\\n\\t\\t\\t\\t\\t\\t  Here's an example of an email blast through Apex Trading.  High Hopes Farms is our fake brand we use for our demo site.  Picture this custom tailored to your brand and with your products on it.\\n\\t\\t\\t\\t\\t\\tCultivarTropicana Gummies - 100mg (Case of 50)$315.00/CasesShop NowCultivarCalming Lavender - 50mg (8fl oz)$24.30/UnitsShop NowClick the shop now button below to see the full menu.  And feel free to place an order to test it out since this is just our demo site with fake inventory and products.Shop NowEric Williamseric@apextrading.com8656076656\\n\",\n        \"created_at\": \"2025-04-21T16:28:55.000000Z\",\n        \"updated_at\": \"2025-04-21T16:28:55.000000Z\"\n    }\n}"}],"_postman_id":"5133ec6a-2c7d-49f0-9cc3-ef3133813153"}],"id":"c418656d-38eb-4b9a-a3e5-e80e38619fc2","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":"c418656d-38eb-4b9a-a3e5-e80e38619fc2","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}}},{"name":"Buyer Stages","item":[{"name":"Stages","id":"667167ff-bd55-494e-8664-7f8a33d5a382","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer  ","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/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":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["v1","buyer-stages"],"host":["https://app.apextrading.com/api"],"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":"99971336-8b04-4dcc-8678-a1b31ba4c6a7","name":"Stages","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer  ","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"https://app.apextrading.com/api/buyer-stages","host":["https://app.apextrading.com/api"],"path":["buyer-stages"],"query":[{"key":"per_page","value":"15","description":"# of records to return per page","type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 07 May 2025 02:31:54 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    \"stages\": [\n        {\n            \"id\": 109,\n            \"sort_order\": 0,\n            \"name\": \"Cold Call\",\n            \"color\": \"#0a49f7\",\n            \"created_at\": \"2020-07-28T18:07:19.000000Z\",\n            \"updated_at\": \"2024-11-27T16:14:37.000000Z\"\n        },\n        {\n            \"id\": 110,\n            \"sort_order\": 1,\n            \"name\": \"Warm - Sampled\",\n            \"color\": \"#F78B0A\",\n            \"created_at\": \"2020-07-28T18:07:19.000000Z\",\n            \"updated_at\": \"2021-04-22T15:13:21.000000Z\"\n        },\n        {\n            \"id\": 112,\n            \"sort_order\": 2,\n            \"name\": \"First Order\",\n            \"color\": \"#3656F5\",\n            \"created_at\": \"2020-07-28T18:07:19.000000Z\",\n            \"updated_at\": \"2020-09-18T18:04:04.000000Z\"\n        },\n        {\n            \"id\": 113,\n            \"sort_order\": 3,\n            \"name\": \"Active - Single Store\",\n            \"color\": \"#5CFB57\",\n            \"created_at\": \"2020-07-28T18:07:19.000000Z\",\n            \"updated_at\": \"2021-04-22T15:16:20.000000Z\"\n        },\n        {\n            \"id\": 114,\n            \"sort_order\": 4,\n            \"name\": \"Active - Multi Store\",\n            \"color\": \"#1CD02F\",\n            \"created_at\": \"2020-07-28T18:07:19.000000Z\",\n            \"updated_at\": \"2021-04-22T15:16:26.000000Z\"\n        },\n        {\n            \"id\": 116,\n            \"sort_order\": 6,\n            \"name\": \"Seasonal\",\n            \"color\": \"#1DC69D\",\n            \"created_at\": \"2020-07-28T18:07:19.000000Z\",\n            \"updated_at\": \"2021-04-22T15:15:46.000000Z\"\n        },\n        {\n            \"id\": 117,\n            \"sort_order\": 7,\n            \"name\": \"Disqualified\",\n            \"color\": \"#000000\",\n            \"created_at\": \"2020-07-28T18:07:19.000000Z\",\n            \"updated_at\": \"2020-09-18T18:04:04.000000Z\"\n        },\n        {\n            \"id\": 1175,\n            \"sort_order\": 8,\n            \"name\": \"OG Buyer\",\n            \"color\": \"#FFB6D5\",\n            \"created_at\": \"2022-06-01T17:20:11.000000Z\",\n            \"updated_at\": \"2024-04-17T18:51:41.000000Z\"\n        },\n        {\n            \"id\": 1319,\n            \"sort_order\": 10,\n            \"name\": \"VIP homies\",\n            \"color\": \"#9C8437\",\n            \"created_at\": \"2023-03-08T00:26:50.000000Z\",\n            \"updated_at\": \"2023-03-08T00:26:50.000000Z\"\n        }\n    ],\n    \"links\": {\n        \"first\": \"https://demo.apextrading.com/api/v1/buyer-stages?page=1\",\n        \"last\": \"https://demo.apextrading.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.apextrading.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.apextrading.com/api/v1/buyer-stages\",\n        \"per_page\": 15,\n        \"to\": 9,\n        \"total\": 9\n    }\n}"}],"_postman_id":"667167ff-bd55-494e-8664-7f8a33d5a382"},{"name":"Stage","id":"79a85678-c32e-48a0-b1f2-cd162e9109b3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer  ","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/v1/buyer-stages/{{buyer_stage_id}}","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":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["v1","buyer-stages","{{buyer_stage_id}}"],"host":["https://app.apextrading.com/api"],"query":[],"variable":[]}},"response":[{"id":"bca50320-6663-48c7-89e8-15f8fb19d4f8","name":"Stage","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer  ","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/buyer-stages/{{buyer_stage_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 02:11:28 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\": 109,\n        \"sort_order\": 0,\n        \"name\": \"Cold Call\",\n        \"color\": \"#0a49f7\",\n        \"created_at\": \"2020-07-28T18:07:19.000000Z\",\n        \"updated_at\": \"2024-11-27T16:14:37.000000Z\"\n    }\n}"}],"_postman_id":"79a85678-c32e-48a0-b1f2-cd162e9109b3"}],"id":"b7d0697e-1586-4d14-9621-e4f8ac02883c","_postman_id":"b7d0697e-1586-4d14-9621-e4f8ac02883c","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}}},{"name":"Cannabinoids","item":[{"name":"Cannabinoids","id":"aec1bb12-6eb4-43c1-b2a0-15854d0e3b6c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/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":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["v1","cannabinoids"],"host":["https://app.apextrading.com/api"],"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":"2a3b9eac-7ea0-4117-b152-4c6d2f8cef06","name":"Cannabinoids","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"https://app.apextrading.com/api/cannabinoids","host":["https://app.apextrading.com/api"],"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:27: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":"4999"},{"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\": 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\": 20,\n            \"name\": \"Cannabigerovarinic acid\"\n        },\n        {\n            \"id\": 19,\n            \"name\": \"Cannabichromenenic acid\"\n        },\n        {\n            \"id\": 18,\n            \"name\": \"Cannabidiolic acid\"\n        },\n        {\n            \"id\": 17,\n            \"name\": \"Tetrahydrocannabinolic acid\"\n        },\n        {\n            \"id\": 16,\n            \"name\": \"Cannabigerolic acid\"\n        },\n        {\n            \"id\": 15,\n            \"name\": \"Δ9-Tetrahydrocannabinolic acid\"\n        },\n        {\n            \"id\": 14,\n            \"name\": \"Δ9-Tetrahydrocannabinol\"\n        },\n        {\n            \"id\": 13,\n            \"name\": \"Δ8-Tetrahydrocannabinol\"\n        },\n        {\n            \"id\": 11,\n            \"name\": \"iso-Tetrahydrocannabinol\"\n        },\n        {\n            \"id\": 1,\n            \"name\": \"Cannabichromene\"\n        },\n        {\n            \"id\": 3,\n            \"name\": \"Cannabidivarin\"\n        }\n    ],\n    \"links\": {\n        \"first\": \"https://demo.apextrading.com/api/v1/cannabinoids?page=1\",\n        \"last\": \"https://demo.apextrading.com/api/v1/cannabinoids?page=2\",\n        \"prev\": null,\n        \"next\": \"https://demo.apextrading.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.apextrading.com/api/v1/cannabinoids?page=1\",\n                \"label\": \"1\",\n                \"active\": true\n            },\n            {\n                \"url\": \"https://demo.apextrading.com/api/v1/cannabinoids?page=2\",\n                \"label\": \"2\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.apextrading.com/api/v1/cannabinoids?page=2\",\n                \"label\": \"Next &raquo;\",\n                \"active\": false\n            }\n        ],\n        \"path\": \"https://demo.apextrading.com/api/v1/cannabinoids\",\n        \"per_page\": 15,\n        \"to\": 15,\n        \"total\": 30\n    }\n}"}],"_postman_id":"aec1bb12-6eb4-43c1-b2a0-15854d0e3b6c"},{"name":"Cannabinoid","id":"39cad715-7ccb-4052-ba89-c6ca4da161a3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/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":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["v1","cannabinoids","{{cannabinoid_id}}"],"host":["https://app.apextrading.com/api"],"query":[],"variable":[]}},"response":[{"id":"69a4bc05-5612-4cbe-a6e4-866d6d971c71","name":"Cannabinoid","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/cannabinoids/{{cannabinoid_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 02:11: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":"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":"39cad715-7ccb-4052-ba89-c6ca4da161a3"}],"id":"b4542604-53b1-451c-98e1-7e6c2bbc8a1a","_postman_id":"b4542604-53b1-451c-98e1-7e6c2bbc8a1a","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}}},{"name":"Company","item":[{"name":"Company","id":"d8c7d3b4-f720-40d7-945b-4339c60b96fd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer  ","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/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":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["v1","company"],"host":["https://app.apextrading.com/api"],"query":[],"variable":[]}},"response":[{"id":"8059795d-05ef-4b29-97e2-ae5fc0d8aa8c","name":"Company","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer  ","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/company"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 07 May 2025 02:32: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":"4997"},{"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 Farms\",\n        \"created_at\": \"2020-07-28T18:07:18.000000Z\",\n        \"updated_at\": \"2025-03-07T03:12:35.000000Z\"\n    }\n}"}],"_postman_id":"d8c7d3b4-f720-40d7-945b-4339c60b96fd"}],"id":"33218b86-7c89-402f-9fb6-67ae49fe9b22","_postman_id":"33218b86-7c89-402f-9fb6-67ae49fe9b22","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}}},{"name":"Container Types","item":[{"name":"Container Types","id":"6ac9c77a-0b3a-4efc-bacf-1bfde7200658","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/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":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["v1","container-types"],"host":["https://app.apextrading.com/api"],"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":"b01af03b-150e-4ca6-8eb3-be73c22a80fd","name":"Container Types","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"https://app.apextrading.com/api/container-types","host":["https://app.apextrading.com/api"],"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 01:37: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    \"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.apextrading.com/api/v1/container-types?page=1\",\n        \"last\": \"https://demo.apextrading.com/api/v1/container-types?page=3\",\n        \"prev\": null,\n        \"next\": \"https://demo.apextrading.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.apextrading.com/api/v1/container-types?page=1\",\n                \"label\": \"1\",\n                \"active\": true\n            },\n            {\n                \"url\": \"https://demo.apextrading.com/api/v1/container-types?page=2\",\n                \"label\": \"2\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.apextrading.com/api/v1/container-types?page=3\",\n                \"label\": \"3\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.apextrading.com/api/v1/container-types?page=2\",\n                \"label\": \"Next &raquo;\",\n                \"active\": false\n            }\n        ],\n        \"path\": \"https://demo.apextrading.com/api/v1/container-types\",\n        \"per_page\": 15,\n        \"to\": 15,\n        \"total\": 33\n    },\n    \"status\": \"success\"\n}"}],"_postman_id":"6ac9c77a-0b3a-4efc-bacf-1bfde7200658"},{"name":"Container Type","id":"83f9f5a5-fb29-4072-a7e7-aaf7669c2646","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/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":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["v1","container-types","{{container_type_id}}"],"host":["https://app.apextrading.com/api"],"query":[],"variable":[]}},"response":[{"id":"7154b7d0-f89f-460d-ac1a-e2f0c8507783","name":"Container Type","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/container-types/{{container_type_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 01:37: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":"4998"},{"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":"83f9f5a5-fb29-4072-a7e7-aaf7669c2646"},{"name":"Container Type","id":"c6ec4c0c-a463-4104-81c6-e8b0d3e52ae9","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 | [string]</p>\n","type":"text","uuid":"74959067-3277-4cef-b960-ce3a565216ae"}]},"url":"https://app.apextrading.com/api/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":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["v1","container-types","{{container_type_id}}"],"host":["https://app.apextrading.com/api"],"query":[],"variable":[]}},"response":[{"id":"56365a59-8a54-4d0d-a73e-7be8783c0a1b","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://app.apextrading.com/api/container-types/{{container_type_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 01:38: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    \"data\": {\n        \"id\": 34,\n        \"name\": \"my container type name\",\n        \"company_id\": 13,\n        \"product_category_id\": 3\n    }\n}"}],"_postman_id":"c6ec4c0c-a463-4104-81c6-e8b0d3e52ae9"},{"name":"Container Type","id":"1b379884-eec2-41d6-b071-852c6d0e65d8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/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":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["v1","container-types","{{container_type_id}}"],"host":["https://app.apextrading.com/api"],"query":[],"variable":[]}},"response":[{"id":"dfcb1811-ad95-4620-b5dd-12a537391782","name":"Container Type","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/container-types/{{container_type_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 01:38: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    \"message\": \"Record deleted successfully\"\n}"}],"_postman_id":"1b379884-eec2-41d6-b071-852c6d0e65d8"},{"name":"Container Type","id":"99f3f101-eee4-404c-a64c-79ca631805da","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 | [string]</p>\n","type":"text","uuid":"b7c06049-1d4c-4d0a-a052-7201a1296afb"},{"key":"product_category_id","value":"3","description":"<p>required | [integer]</p>\n","type":"text","uuid":"170e4bcb-9afd-4e31-bc1b-60a32f6635be"}]},"url":"https://app.apextrading.com/api/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":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["v1","container-types"],"host":["https://app.apextrading.com/api"],"query":[],"variable":[]}},"response":[{"id":"d9f38dea-55f5-4231-9856-7796ea62e89b","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://app.apextrading.com/api/container-types"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 01:37: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":"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\": 13,\n        \"product_category_id\": 3\n    }\n}"}],"_postman_id":"99f3f101-eee4-404c-a64c-79ca631805da"}],"id":"74ae7eba-1870-4856-8c8e-827ef6dce0e1","description":"<p>Container Types are not available for every category of product. Please see the product field rules endpoint.</p>\n","_postman_id":"74ae7eba-1870-4856-8c8e-827ef6dce0e1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}}},{"name":"Crude Extract Types","item":[{"name":"Crude Extract Types","id":"26ca6b2a-ffce-438e-9b79-00afcc3cddf8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/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":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["v1","crude-extract-types"],"host":["https://app.apextrading.com/api"],"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":"8a3b633e-bba8-4c25-9941-79fde53f3ec2","name":"Crude Extract Types","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"https://app.apextrading.com/api/crude-extract-types","host":["https://app.apextrading.com/api"],"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:39: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":"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\": \"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.apextrading.com/api/v1/crude-extract-types?page=1\",\n        \"last\": \"https://demo.apextrading.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.apextrading.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.apextrading.com/api/v1/crude-extract-types\",\n        \"per_page\": 15,\n        \"to\": 3,\n        \"total\": 3\n    },\n    \"status\": \"success\"\n}"}],"_postman_id":"26ca6b2a-ffce-438e-9b79-00afcc3cddf8"},{"name":"Crude Extract Type","id":"e7202f2b-060d-42ce-953d-05bf57c4435d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/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":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["v1","crude-extract-types","{{crude_extract_type_id}}"],"host":["https://app.apextrading.com/api"],"query":[],"variable":[]}},"response":[{"id":"beea6866-5275-4a94-afab-d08ea3dc9c72","name":"Crude Extract Type","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/crude-extract-types/{{crude_extract_type_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 01:39:19 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        \"id\": 2,\n        \"name\": \"Decarbed\"\n    }\n}"}],"_postman_id":"e7202f2b-060d-42ce-953d-05bf57c4435d"}],"id":"866f34e0-2060-49e4-b0b4-0e528831db30","_postman_id":"866f34e0-2060-49e4-b0b4-0e528831db30","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}}},{"name":"Cultivars","item":[{"name":"Cultivars","id":"32e153c2-cfad-4e40-b4ae-61c2f3747d72","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/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":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["v1","cultivars"],"host":["https://app.apextrading.com/api"],"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":"461191ac-ce54-4b9d-97de-b16b22d491d2","name":"Cultivars","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"https://app.apextrading.com/api/cultivars","host":["https://app.apextrading.com/api"],"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:33: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":"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\": \"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.apextrading.com/api/v1/cultivars?page=1\",\n        \"last\": \"https://demo.apextrading.com/api/v1/cultivars?page=198\",\n        \"prev\": null,\n        \"next\": \"https://demo.apextrading.com/api/v1/cultivars?page=2\"\n    },\n    \"meta\": {\n        \"current_page\": 1,\n        \"from\": 1,\n        \"last_page\": 198,\n        \"links\": [\n            {\n                \"url\": null,\n                \"label\": \"&laquo; Previous\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.apextrading.com/api/v1/cultivars?page=1\",\n                \"label\": \"1\",\n                \"active\": true\n            },\n            {\n                \"url\": \"https://demo.apextrading.com/api/v1/cultivars?page=2\",\n                \"label\": \"2\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.apextrading.com/api/v1/cultivars?page=3\",\n                \"label\": \"3\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.apextrading.com/api/v1/cultivars?page=4\",\n                \"label\": \"4\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.apextrading.com/api/v1/cultivars?page=5\",\n                \"label\": \"5\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.apextrading.com/api/v1/cultivars?page=6\",\n                \"label\": \"6\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.apextrading.com/api/v1/cultivars?page=7\",\n                \"label\": \"7\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.apextrading.com/api/v1/cultivars?page=8\",\n                \"label\": \"8\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.apextrading.com/api/v1/cultivars?page=9\",\n                \"label\": \"9\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.apextrading.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.apextrading.com/api/v1/cultivars?page=197\",\n                \"label\": \"197\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.apextrading.com/api/v1/cultivars?page=198\",\n                \"label\": \"198\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.apextrading.com/api/v1/cultivars?page=2\",\n                \"label\": \"Next &raquo;\",\n                \"active\": false\n            }\n        ],\n        \"path\": \"https://demo.apextrading.com/api/v1/cultivars\",\n        \"per_page\": 15,\n        \"to\": 15,\n        \"total\": 2957\n    },\n    \"status\": \"success\"\n}"}],"_postman_id":"32e153c2-cfad-4e40-b4ae-61c2f3747d72"},{"name":"Cultivar","id":"0f366503-6773-4902-bdcb-7d269d3cb950","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/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":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["v1","cultivars","{{cultivar_id}}"],"host":["https://app.apextrading.com/api"],"query":[],"variable":[]}},"response":[{"id":"d91d0103-f4b0-4b1f-a030-1203e9ca0660","name":"Cultivar","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/cultivars/{{cultivar_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 01:33: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":"4993"},{"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":"0f366503-6773-4902-bdcb-7d269d3cb950"},{"name":"Cultivar","id":"6699ae5b-6f72-44ab-b2a8-751523f39375","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://app.apextrading.com/api/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":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["v1","cultivars","{{cultivar_id}}"],"host":["https://app.apextrading.com/api"],"query":[],"variable":[]}},"response":[{"id":"d10c1287-9170-403b-898f-2d1f4138e072","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://app.apextrading.com/api/cultivars/{{cultivar_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 01:33:51 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\": 3122,\n        \"name\": \"my Cultivar name\",\n        \"company_id\": 13\n    }\n}"}],"_postman_id":"6699ae5b-6f72-44ab-b2a8-751523f39375"},{"name":"Cultivar","id":"2c5955d0-f035-4f4c-9c70-4f5416d83e29","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/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":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["v1","cultivars","{{cultivar_id}}"],"host":["https://app.apextrading.com/api"],"query":[],"variable":[]}},"response":[{"id":"10948227-9964-4823-8350-f68cd1a209da","name":"Cultivar","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/cultivars/{{cultivar_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 01:34: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":"4997"},{"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":"2c5955d0-f035-4f4c-9c70-4f5416d83e29"},{"name":"Cultivar","id":"76952e87-1b5f-46f9-8223-c4f1d48d5fc8","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://app.apextrading.com/api/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":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["v1","cultivars"],"host":["https://app.apextrading.com/api"],"query":[],"variable":[]}},"response":[{"id":"0a5a0ef7-21df-4ef3-a9ff-befa6db824d8","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://app.apextrading.com/api/cultivars"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 01:33: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\": 3122,\n        \"name\": \"my cultivar name\",\n        \"company_id\": 13\n    }\n}"}],"_postman_id":"76952e87-1b5f-46f9-8223-c4f1d48d5fc8"}],"id":"b80e2ba7-5599-4ac9-9aea-0d9e8f75c9a5","_postman_id":"b80e2ba7-5599-4ac9-9aea-0d9e8f75c9a5","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}}},{"name":"Cultivar Types","item":[{"name":"Cultivar Types","id":"954de0e6-983c-408d-93f4-c6e2a048e33d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/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":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["v1","cultivar-types"],"host":["https://app.apextrading.com/api"],"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":"b6c438c1-2318-4c19-b374-374bd8d50eb5","name":"Cultivar Types","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"https://app.apextrading.com/api/cultivar-types","host":["https://app.apextrading.com/api"],"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:39:29 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\": \"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.apextrading.com/api/v1/cultivar-types?page=1\",\n        \"last\": \"https://demo.apextrading.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.apextrading.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.apextrading.com/api/v1/cultivar-types\",\n        \"per_page\": 15,\n        \"to\": 6,\n        \"total\": 6\n    },\n    \"status\": \"success\"\n}"}],"_postman_id":"954de0e6-983c-408d-93f4-c6e2a048e33d"},{"name":"Cultivar Type","id":"5e06ac27-2c66-43e7-811b-5299546a81c3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/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":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["v1","cultivar-types","{{cultivar_type_id}}"],"host":["https://app.apextrading.com/api"],"query":[],"variable":[]}},"response":[{"id":"80c4d985-6da0-447a-ae28-5918a7e75410","name":"Cultivar Type","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/cultivar-types/{{cultivar_type_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 01:39: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":"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\": \"Sativa\"\n    }\n}"}],"_postman_id":"5e06ac27-2c66-43e7-811b-5299546a81c3"}],"id":"a7e70b8b-b096-498f-bdad-28055a945f07","_postman_id":"a7e70b8b-b096-498f-bdad-28055a945f07","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}}},{"name":"Distillate Extract Types","item":[{"name":"Distillate Extract Types","id":"df9642b2-8d1c-415f-ad77-db47c06f8dd6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/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":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["v1","distillate-extract-types"],"host":["https://app.apextrading.com/api"],"query":[{"description":{"content":"<p>Number of records to return per page</p>\n","type":"text/plain"},"key":"per_page","value":"15"}],"variable":[]}},"response":[{"id":"63f81027-cd55-45a6-afaa-41a6c4724b07","name":"Distillate Extract Types","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"https://app.apextrading.com/api/distillate-extract-types?per_page=15","host":["https://app.apextrading.com/api"],"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:27: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":"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\": \"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\": 5,\n            \"name\": \"Compliant\"\n        }\n    ],\n    \"links\": {\n        \"first\": \"https://demo.apextrading.com/api/v1/distillate-extract-types?page=1\",\n        \"last\": \"https://demo.apextrading.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.apextrading.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.apextrading.com/api/v1/distillate-extract-types\",\n        \"per_page\": 15,\n        \"to\": 5,\n        \"total\": 5\n    },\n    \"status\": \"success\"\n}"}],"_postman_id":"df9642b2-8d1c-415f-ad77-db47c06f8dd6"},{"name":"Distillate Extract Type","id":"41312f02-7dd4-4338-a272-17479dba21b9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/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":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["v1","distillate-extract-types","{{distillate_extract_type_id}}"],"host":["https://app.apextrading.com/api"],"query":[],"variable":[]}},"response":[{"id":"e051b7bd-0641-4464-86d5-7989ab363a35","name":"Distillate Extract Type","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/distillate-extract-types/{{distillate_extract_type_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 01:28: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":"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\": \"Broad Spectrum\"\n    }\n}"}],"_postman_id":"41312f02-7dd4-4338-a272-17479dba21b9"}],"id":"f4e811b0-3edc-4c7c-8a47-0829ffe49ea0","_postman_id":"f4e811b0-3edc-4c7c-8a47-0829ffe49ea0","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}}},{"name":"Drying Methods","item":[{"name":"Drying Methods","id":"568e0d31-3b61-45b2-a6d7-9deb120bc6f0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/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":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["v1","drying-methods"],"host":["https://app.apextrading.com/api"],"query":[{"description":{"content":"<p>Number of records to return per page</p>\n","type":"text/plain"},"key":"per_page","value":"15"}],"variable":[]}},"response":[{"id":"abdaa668-278e-47d9-bee9-b13f63ad97bf","name":"Drying Methods","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"https://app.apextrading.com/api/drying-methods?per_page=15","host":["https://app.apextrading.com/api"],"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:28: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":"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.apextrading.com/api/v1/drying-methods?page=1\",\n        \"last\": \"https://demo.apextrading.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.apextrading.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.apextrading.com/api/v1/drying-methods\",\n        \"per_page\": 15,\n        \"to\": 6,\n        \"total\": 6\n    },\n    \"status\": \"success\"\n}"}],"_postman_id":"568e0d31-3b61-45b2-a6d7-9deb120bc6f0"},{"name":"Drying Method","id":"913e0c24-bc8b-48d2-9b80-be3bb0ddc75b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/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":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["v1","drying-methods","{{drying_method_id}}"],"host":["https://app.apextrading.com/api"],"query":[],"variable":[]}},"response":[{"id":"0fa1188c-08c5-4533-91a0-3a627201124b","name":"Drying Method","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/drying-methods/{{drying_method_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 01:28: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\": 2,\n        \"name\": \"Field Dried\"\n    }\n}"}],"_postman_id":"913e0c24-bc8b-48d2-9b80-be3bb0ddc75b"}],"id":"37c9eb46-7f7f-4022-a726-bc2da330ba3d","_postman_id":"37c9eb46-7f7f-4022-a726-bc2da330ba3d","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}}},{"name":"Tags","item":[{"name":"Tags","id":"c6b13832-0a56-4e07-9383-48cb958ccfe8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer  ","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/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":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["v1","tags"],"host":["https://app.apextrading.com/api"],"query":[],"variable":[]}},"response":[{"id":"b3eca8b1-ccbd-4d95-8b95-6583b3a34e89","name":"Tags","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer  ","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/tags"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 08 May 2025 11:18:40 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\": 9,\n            \"name\": \"Provisional License\",\n            \"color\": \"#000000\",\n            \"background_color\": \"#F1F1F1\",\n            \"type\": \"buyer\",\n            \"created_at\": \"2020-07-28T18:45:38.000000Z\",\n            \"updated_at\": \"2025-03-07T03:23:42.000000Z\",\n            \"tag_uses\": 1\n        },\n        {\n            \"id\": 10,\n            \"name\": \"Multi-Location Retail\",\n            \"color\": \"#000000\",\n            \"background_color\": \"#F1F1F1\",\n            \"type\": \"buyer\",\n            \"created_at\": \"2020-07-28T18:47:00.000000Z\",\n            \"updated_at\": \"2025-03-07T03:23:36.000000Z\",\n            \"tag_uses\": 5\n        },\n        {\n            \"id\": 11,\n            \"name\": \"Single Location Retail\",\n            \"color\": \"#000000\",\n            \"background_color\": \"#F1F1F1\",\n            \"type\": \"buyer\",\n            \"created_at\": \"2020-07-28T18:47:17.000000Z\",\n            \"updated_at\": \"2025-03-07T03:23:30.000000Z\",\n            \"tag_uses\": 6\n        },\n        {\n            \"id\": 34,\n            \"name\": \"<100 mile radius\",\n            \"color\": \"#333333\",\n            \"background_color\": \"#F1F1F1\",\n            \"type\": \"buyer\",\n            \"created_at\": \"2020-08-10T19:34:47.000000Z\",\n            \"updated_at\": \"2020-08-10T19:34:47.000000Z\",\n            \"tag_uses\": 6\n        },\n        {\n            \"id\": 35,\n            \"name\": \"100+ mile radius\",\n            \"color\": \"#333333\",\n            \"background_color\": \"#F1F1F1\",\n            \"type\": \"buyer\",\n            \"created_at\": \"2020-08-10T19:35:39.000000Z\",\n            \"updated_at\": \"2020-08-10T19:35:39.000000Z\",\n            \"tag_uses\": 0\n        },\n        {\n            \"id\": 36,\n            \"name\": \"Primary Contact\",\n            \"color\": \"#333333\",\n            \"background_color\": \"#F1F1F1\",\n            \"type\": \"contact\",\n            \"created_at\": \"2020-08-10T19:40:19.000000Z\",\n            \"updated_at\": \"2025-03-07T03:23:01.000000Z\",\n            \"tag_uses\": 9\n        },\n        {\n            \"id\": 37,\n            \"name\": \"Billing Contact\",\n            \"color\": \"#333333\",\n            \"background_color\": \"#F1F1F1\",\n            \"type\": \"contact\",\n            \"created_at\": \"2020-08-10T19:40:27.000000Z\",\n            \"updated_at\": \"2025-03-07T03:22:50.000000Z\",\n            \"tag_uses\": 2\n        },\n        {\n            \"id\": 51,\n            \"name\": \"Intake Manager\",\n            \"color\": \"#333333\",\n            \"background_color\": \"#F1F1F1\",\n            \"type\": \"contact\",\n            \"created_at\": \"2020-09-01T23:03:47.000000Z\",\n            \"updated_at\": \"2020-09-01T23:03:47.000000Z\",\n            \"tag_uses\": 1\n        },\n        {\n            \"id\": 61,\n            \"name\": \"Monday Ordering Only\",\n            \"color\": \"#000000\",\n            \"background_color\": \"#F1F1F1\",\n            \"type\": \"buyer\",\n            \"created_at\": \"2020-09-04T18:24:02.000000Z\",\n            \"updated_at\": \"2025-03-07T03:22:21.000000Z\",\n            \"tag_uses\": 2\n        },\n        {\n            \"id\": 90,\n            \"name\": \"NEW PROSPECT\",\n            \"color\": \"#333333\",\n            \"background_color\": \"#F1F1F1\",\n            \"type\": \"buyer\",\n            \"created_at\": \"2021-01-18T20:18:26.000000Z\",\n            \"updated_at\": \"2021-01-18T20:18:26.000000Z\",\n            \"tag_uses\": 1\n        },\n        {\n            \"id\": 92,\n            \"name\": \"High Volume\",\n            \"color\": \"#333333\",\n            \"background_color\": \"#F1F1F1\",\n            \"type\": \"buyer\",\n            \"created_at\": \"2021-01-26T17:41:45.000000Z\",\n            \"updated_at\": \"2021-01-26T17:41:45.000000Z\",\n            \"tag_uses\": 8\n        },\n        {\n            \"id\": 94,\n            \"name\": \"Minority Owned\",\n            \"color\": \"#333333\",\n            \"background_color\": \"#F1F1F1\",\n            \"type\": \"buyer\",\n            \"created_at\": \"2021-02-09T16:34:01.000000Z\",\n            \"updated_at\": \"2021-02-09T16:34:01.000000Z\",\n            \"tag_uses\": 5\n        },\n        {\n            \"id\": 102,\n            \"name\": \"Preferred Buyer\",\n            \"color\": \"#333333\",\n            \"background_color\": \"#F1F1F1\",\n            \"type\": \"buyer\",\n            \"created_at\": \"2021-03-23T18:49:09.000000Z\",\n            \"updated_at\": \"2021-03-23T18:49:09.000000Z\",\n            \"tag_uses\": 2\n        },\n        {\n            \"id\": 120,\n            \"name\": \"Pre Roll Heavy\",\n            \"color\": \"#333333\",\n            \"background_color\": \"#F1F1F1\",\n            \"type\": \"buyer\",\n            \"created_at\": \"2021-05-11T22:56:36.000000Z\",\n            \"updated_at\": \"2021-05-11T22:56:36.000000Z\",\n            \"tag_uses\": 5\n        },\n        {\n            \"id\": 148,\n            \"name\": \"Accounting\",\n            \"color\": \"#000000\",\n            \"background_color\": \"#F1F1F1\",\n            \"type\": \"contact\",\n            \"created_at\": \"2021-07-13T17:15:52.000000Z\",\n            \"updated_at\": \"2025-03-07T03:20:50.000000Z\",\n            \"tag_uses\": 0\n        }\n    ],\n    \"links\": {\n        \"first\": \"https://demo.apextrading.com/api/v1/tags?page=1\",\n        \"last\": \"https://demo.apextrading.com/api/v1/tags?page=3\",\n        \"prev\": null,\n        \"next\": \"https://demo.apextrading.com/api/v1/tags?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.apextrading.com/api/v1/tags?page=1\",\n                \"label\": \"1\",\n                \"active\": true\n            },\n            {\n                \"url\": \"https://demo.apextrading.com/api/v1/tags?page=2\",\n                \"label\": \"2\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.apextrading.com/api/v1/tags?page=3\",\n                \"label\": \"3\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.apextrading.com/api/v1/tags?page=2\",\n                \"label\": \"Next &raquo;\",\n                \"active\": false\n            }\n        ],\n        \"path\": \"https://demo.apextrading.com/api/v1/tags\",\n        \"per_page\": 15,\n        \"to\": 15,\n        \"total\": 44\n    }\n}"}],"_postman_id":"c6b13832-0a56-4e07-9383-48cb958ccfe8"}],"id":"dfb389e9-ab36-4a90-8936-bbc50a085548","_postman_id":"dfb389e9-ab36-4a90-8936-bbc50a085548","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}}},{"name":"Deal Flows","item":[{"name":"Deal Flows","id":"1d418b5e-5882-4b71-876b-8ed72c1b0f44","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer  ","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/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":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["v1","deal-flows"],"host":["https://app.apextrading.com/api"],"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":"797e55aa-ad5e-4e96-9e70-046b70143d3a","name":"Deal Flows","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer  ","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"https://app.apextrading.com/api/deal-flows?with_order_statuses=true","host":["https://app.apextrading.com/api"],"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 10:44: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":"4999"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"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                    \"id\": 3535,\n                    \"name\": \"Create Metrc Manifest & Tags\",\n                    \"payment_percentage\": 0,\n                    \"archived\": false,\n                    \"position\": 3,\n                    \"parent_status\": {\n                        \"id\": 2,\n                        \"name\": \"Accepted\"\n                    }\n                },\n                {\n                    \"id\": 477,\n                    \"name\": \"At Facility - In Packaging\",\n                    \"payment_percentage\": 0,\n                    \"archived\": false,\n                    \"position\": 4,\n                    \"parent_status\": {\n                        \"id\": 3,\n                        \"name\": \"Pending Shipment\"\n                    }\n                },\n                {\n                    \"id\": 3536,\n                    \"name\": \"Packaged - Pending Shipment\",\n                    \"payment_percentage\": 0,\n                    \"archived\": false,\n                    \"position\": 5,\n                    \"parent_status\": {\n                        \"id\": 3,\n                        \"name\": \"Pending Shipment\"\n                    }\n                },\n                {\n                    \"id\": 3537,\n                    \"name\": \"Out for Delivery\",\n                    \"payment_percentage\": 0,\n                    \"archived\": false,\n                    \"position\": 6,\n                    \"parent_status\": {\n                        \"id\": 4,\n                        \"name\": \"In-Transit\"\n                    }\n                },\n                {\n                    \"id\": 479,\n                    \"name\": \"Delivered\",\n                    \"payment_percentage\": 0,\n                    \"archived\": false,\n                    \"position\": 7,\n                    \"parent_status\": {\n                        \"id\": 5,\n                        \"name\": \"Delivered\"\n                    }\n                },\n                {\n                    \"id\": 484,\n                    \"name\": \"Complete & Paid\",\n                    \"payment_percentage\": 0,\n                    \"archived\": false,\n                    \"position\": 8,\n                    \"parent_status\": {\n                        \"id\": 6,\n                        \"name\": \"Complete\"\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": 29,\n            \"name\": \"New Order - Work Flow/SOP\",\n            \"default\": false,\n            \"type\": null,\n            \"summary\": \"All new orders will follow this internal process to ensure timely packaging and delivery.\",\n            \"uses_deal_flow_payments\": false,\n            \"created_at\": \"2020-07-28T18:55:36.000000Z\",\n            \"updated_at\": \"2021-03-31T21:09:39.000000Z\",\n            \"order_statuses\": [\n                {\n                    \"id\": 1237,\n                    \"name\": \"Submitted\",\n                    \"payment_percentage\": 0,\n                    \"archived\": false,\n                    \"position\": 1,\n                    \"parent_status\": {\n                        \"id\": 1,\n                        \"name\": \"Submitted\"\n                    }\n                },\n                {\n                    \"id\": 2916,\n                    \"name\": \"Pack Order\",\n                    \"payment_percentage\": 0,\n                    \"archived\": false,\n                    \"position\": 2,\n                    \"parent_status\": {\n                        \"id\": 2,\n                        \"name\": \"Accepted\"\n                    }\n                },\n                {\n                    \"id\": 552,\n                    \"name\": \"Pending Shipment\",\n                    \"payment_percentage\": 0,\n                    \"archived\": false,\n                    \"position\": 3,\n                    \"parent_status\": {\n                        \"id\": 3,\n                        \"name\": \"Pending Shipment\"\n                    }\n                },\n                {\n                    \"id\": 1630,\n                    \"name\": \"In Transit\",\n                    \"payment_percentage\": 0,\n                    \"archived\": false,\n                    \"position\": 4,\n                    \"parent_status\": {\n                        \"id\": 4,\n                        \"name\": \"In-Transit\"\n                    }\n                },\n                {\n                    \"id\": 554,\n                    \"name\": \"Delivered\",\n                    \"payment_percentage\": 0,\n                    \"archived\": false,\n                    \"position\": 5,\n                    \"parent_status\": {\n                        \"id\": 5,\n                        \"name\": \"Delivered\"\n                    }\n                },\n                {\n                    \"id\": 1463,\n                    \"name\": \"Rejection\",\n                    \"payment_percentage\": 0,\n                    \"archived\": false,\n                    \"position\": 6,\n                    \"parent_status\": {\n                        \"id\": 5,\n                        \"name\": \"Delivered\"\n                    }\n                },\n                {\n                    \"id\": 559,\n                    \"name\": \"Complete\",\n                    \"payment_percentage\": 0,\n                    \"archived\": false,\n                    \"position\": 7,\n                    \"parent_status\": {\n                        \"id\": 6,\n                        \"name\": \"Complete\"\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": 310,\n            \"name\": \"Pre Order Deal Flow\",\n            \"default\": false,\n            \"type\": null,\n            \"summary\": null,\n            \"uses_deal_flow_payments\": false,\n            \"created_at\": \"2021-11-11T20:51:51.000000Z\",\n            \"updated_at\": \"2021-11-11T20:51:51.000000Z\",\n            \"order_statuses\": [\n                {\n                    \"id\": 3082,\n                    \"name\": \"Order Placed\",\n                    \"payment_percentage\": 0,\n                    \"archived\": false,\n                    \"position\": 1,\n                    \"parent_status\": {\n                        \"id\": 1,\n                        \"name\": \"Submitted\"\n                    }\n                },\n                {\n                    \"id\": 3083,\n                    \"name\": \"Confirm Order\",\n                    \"payment_percentage\": 0,\n                    \"archived\": false,\n                    \"position\": 2,\n                    \"parent_status\": {\n                        \"id\": 1,\n                        \"name\": \"Submitted\"\n                    }\n                },\n                {\n                    \"id\": 3084,\n                    \"name\": \"Confirm Delivery\",\n                    \"payment_percentage\": 0,\n                    \"archived\": false,\n                    \"position\": 3,\n                    \"parent_status\": {\n                        \"id\": 1,\n                        \"name\": \"Submitted\"\n                    }\n                },\n                {\n                    \"id\": 3085,\n                    \"name\": \"Delivered\",\n                    \"payment_percentage\": 0,\n                    \"archived\": false,\n                    \"position\": 4,\n                    \"parent_status\": {\n                        \"id\": 1,\n                        \"name\": \"Submitted\"\n                    }\n                },\n                {\n                    \"id\": 3086,\n                    \"name\": \"Delivery Scheduled\",\n                    \"payment_percentage\": 0,\n                    \"archived\": false,\n                    \"position\": 5,\n                    \"parent_status\": {\n                        \"id\": 1,\n                        \"name\": \"Submitted\"\n                    }\n                },\n                {\n                    \"id\": 3087,\n                    \"name\": \"Complete and Paid\",\n                    \"payment_percentage\": 0,\n                    \"archived\": false,\n                    \"position\": 6,\n                    \"parent_status\": {\n                        \"id\": 1,\n                        \"name\": \"Submitted\"\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": 409,\n            \"name\": \"Stef's Example Deal Flow\",\n            \"default\": false,\n            \"type\": null,\n            \"summary\": null,\n            \"uses_deal_flow_payments\": false,\n            \"created_at\": \"2024-04-23T14:49:39.000000Z\",\n            \"updated_at\": \"2024-04-23T14:49:39.000000Z\",\n            \"order_statuses\": [\n                {\n                    \"id\": 3696,\n                    \"name\": \"John Reviews Order\",\n                    \"payment_percentage\": 0,\n                    \"archived\": false,\n                    \"position\": 1,\n                    \"parent_status\": {\n                        \"id\": 1,\n                        \"name\": \"Submitted\"\n                    }\n                },\n                {\n                    \"id\": 3697,\n                    \"name\": \"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                    \"id\": 3698,\n                    \"name\": \"Create Metrc Manifest & Tags\",\n                    \"payment_percentage\": 0,\n                    \"archived\": false,\n                    \"position\": 3,\n                    \"parent_status\": {\n                        \"id\": 2,\n                        \"name\": \"Accepted\"\n                    }\n                },\n                {\n                    \"id\": 3699,\n                    \"name\": \"At Facility - In Packaging\",\n                    \"payment_percentage\": 0,\n                    \"archived\": false,\n                    \"position\": 4,\n                    \"parent_status\": {\n                        \"id\": 3,\n                        \"name\": \"Pending Shipment\"\n                    }\n                },\n                {\n                    \"id\": 3700,\n                    \"name\": \"Packaged - Pending Shipment\",\n                    \"payment_percentage\": 0,\n                    \"archived\": false,\n                    \"position\": 5,\n                    \"parent_status\": {\n                        \"id\": 3,\n                        \"name\": \"Pending Shipment\"\n                    }\n                },\n                {\n                    \"id\": 3701,\n                    \"name\": \"Out for Delivery\",\n                    \"payment_percentage\": 0,\n                    \"archived\": false,\n                    \"position\": 6,\n                    \"parent_status\": {\n                        \"id\": 4,\n                        \"name\": \"In-Transit\"\n                    }\n                },\n                {\n                    \"id\": 3702,\n                    \"name\": \"Delivered\",\n                    \"payment_percentage\": 0,\n                    \"archived\": false,\n                    \"position\": 7,\n                    \"parent_status\": {\n                        \"id\": 5,\n                        \"name\": \"Delivered\"\n                    }\n                },\n                {\n                    \"id\": 3703,\n                    \"name\": \"Complete & Paid\",\n                    \"payment_percentage\": 0,\n                    \"archived\": false,\n                    \"position\": 8,\n                    \"parent_status\": {\n                        \"id\": 6,\n                        \"name\": \"Complete\"\n                    }\n                }\n            ]\n        }\n    ],\n    \"links\": {\n        \"first\": \"https://demo.apextrading.com/api/v1/deal-flows?page=1\",\n        \"last\": \"https://demo.apextrading.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.apextrading.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.apextrading.com/api/v1/deal-flows\",\n        \"per_page\": 15,\n        \"to\": 4,\n        \"total\": 4\n    }\n}"}],"_postman_id":"1d418b5e-5882-4b71-876b-8ed72c1b0f44"},{"name":"Deal Flow","id":"b87b88a4-9c89-45d6-941b-24032d610d46","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer  ","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/v1/deal-flows/{{deal_flow_id}}","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":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["v1","deal-flows","{{deal_flow_id}}"],"host":["https://app.apextrading.com/api"],"query":[],"variable":[]}},"response":[{"id":"9ba5ed4c-a80c-479c-b310-24306d57c375","name":"Deal Flow","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer  ","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/deal-flows/{{deal_flow_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 02:12: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    \"dealflow\": {\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        \"documents\": [\n            {\n                \"uuid\": \"7e086494-0a27-410c-92de-6284fd6b4351\",\n                \"name\": \"100k_Order_Contract.png\",\n                \"label\": \"$100k+ Order Contract\",\n                \"type\": \"image/png\",\n                \"requires_signature\": false,\n                \"e_signable\": false,\n                \"show_url\": \"https://demo.apextrading.com/b-api/deal-docs/7e086494-0a27-410c-92de-6284fd6b4351\",\n                \"download_url\": \"https://demo.apextrading.com/b-api/deal-docs/download/7e086494-0a27-410c-92de-6284fd6b4351\",\n                \"created_at\": \"2020-08-17T22:13:52.000000Z\",\n                \"updated_at\": \"2020-08-17T22:13:52.000000Z\"\n            }\n        ],\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                \"id\": 3535,\n                \"name\": \"Create Metrc Manifest & Tags\",\n                \"payment_percentage\": 0,\n                \"archived\": false,\n                \"position\": 3,\n                \"parent_status\": {\n                    \"id\": 2,\n                    \"name\": \"Accepted\"\n                }\n            },\n            {\n                \"id\": 477,\n                \"name\": \"At Facility - In Packaging\",\n                \"payment_percentage\": 0,\n                \"archived\": false,\n                \"position\": 4,\n                \"parent_status\": {\n                    \"id\": 3,\n                    \"name\": \"Pending Shipment\"\n                }\n            },\n            {\n                \"id\": 3536,\n                \"name\": \"Packaged - Pending Shipment\",\n                \"payment_percentage\": 0,\n                \"archived\": false,\n                \"position\": 5,\n                \"parent_status\": {\n                    \"id\": 3,\n                    \"name\": \"Pending Shipment\"\n                }\n            },\n            {\n                \"id\": 3537,\n                \"name\": \"Out for Delivery\",\n                \"payment_percentage\": 0,\n                \"archived\": false,\n                \"position\": 6,\n                \"parent_status\": {\n                    \"id\": 4,\n                    \"name\": \"In-Transit\"\n                }\n            },\n            {\n                \"id\": 479,\n                \"name\": \"Delivered\",\n                \"payment_percentage\": 0,\n                \"archived\": false,\n                \"position\": 7,\n                \"parent_status\": {\n                    \"id\": 5,\n                    \"name\": \"Delivered\"\n                }\n            },\n            {\n                \"id\": 484,\n                \"name\": \"Complete & Paid\",\n                \"payment_percentage\": 0,\n                \"archived\": false,\n                \"position\": 8,\n                \"parent_status\": {\n                    \"id\": 6,\n                    \"name\": \"Complete\"\n                }\n            }\n        ]\n    }\n}"}],"_postman_id":"b87b88a4-9c89-45d6-941b-24032d610d46"}],"id":"b96b62f4-6d81-4106-ad9e-974d316f5fcc","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":"b96b62f4-6d81-4106-ad9e-974d316f5fcc","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}}},{"name":"Deal Docs","item":[{"name":"Deal Docs","id":"bdacc700-fa4d-458c-a3fc-a6a2527a0c81","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer  ","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/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":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["v1","deal-docs"],"host":["https://app.apextrading.com/api"],"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":"bdacc700-fa4d-458c-a3fc-a6a2527a0c81"},{"name":"Deal Doc","id":"341bb898-b790-49f6-951e-1d7ef754ef88","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer  ","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/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":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["v1","deal-docs","{{deal_doc_id}}"],"host":["https://app.apextrading.com/api"],"query":[],"variable":[]}},"response":[],"_postman_id":"341bb898-b790-49f6-951e-1d7ef754ef88"}],"id":"0a0f92af-b60b-4cee-aadd-2d358d570f2d","_postman_id":"0a0f92af-b60b-4cee-aadd-2d358d570f2d","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}}},{"name":"Environmental Issues","item":[{"name":"Environmental Issues","id":"6e45ead0-214b-4e46-9592-623a19da3589","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/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":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["v1","environmental-issues"],"host":["https://app.apextrading.com/api"],"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":"317a30a8-01bf-41f6-b842-34c4c6e79348","name":"Environmental Issues","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"https://app.apextrading.com/api/environmental-issues","host":["https://app.apextrading.com/api"],"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:31: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    \"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    \"links\": {\n        \"first\": \"https://demo.apextrading.com/api/v1/environmental-issues?page=1\",\n        \"last\": \"https://demo.apextrading.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.apextrading.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.apextrading.com/api/v1/environmental-issues\",\n        \"per_page\": 15,\n        \"to\": 2,\n        \"total\": 2\n    },\n    \"status\": \"success\"\n}"}],"_postman_id":"6e45ead0-214b-4e46-9592-623a19da3589"},{"name":"Environmental Issue","id":"bce81b0e-724e-495a-8254-0a276008834b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/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":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["v1","environmental-issues","{{environmental_issue_id}}"],"host":["https://app.apextrading.com/api"],"query":[],"variable":[]}},"response":[{"id":"b570adf7-dc33-4570-95db-5e5f0448e056","name":"Environmental Issue","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/environmental-issues/{{environmental_issue_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 01:31: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":"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\": \"Microbial\",\n        \"company_id\": null\n    }\n}"}],"_postman_id":"bce81b0e-724e-495a-8254-0a276008834b"},{"name":"Environmental Issue","id":"ca5806a2-1f48-46ef-90c7-4ebc5aeeaed2","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://app.apextrading.com/api/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":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["v1","environmental-issues","{{environmental_issue_id}}"],"host":["https://app.apextrading.com/api"],"query":[],"variable":[]}},"response":[{"id":"2537108d-d8ee-4d4f-a0a2-6562152157ac","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://app.apextrading.com/api/environmental-issues/{{environmental_issue_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 01:32:51 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\": 13\n    }\n}"}],"_postman_id":"ca5806a2-1f48-46ef-90c7-4ebc5aeeaed2"},{"name":"Environmental Issue","id":"3e918ac0-db33-4b8f-b467-66913cb2b420","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/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":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["v1","environmental-issues","{{environmental_issue_id}}"],"host":["https://app.apextrading.com/api"],"query":[],"variable":[]}},"response":[{"id":"b306c8d9-de55-4fde-9824-e18108d1a20a","name":"Environmental Issue","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/environmental-issues/{{environmental_issue_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 01:32: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":"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":"3e918ac0-db33-4b8f-b467-66913cb2b420"},{"name":"Environmental Issue","id":"22d20a2f-ac12-4be5-bb1a-45cd14fad214","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://app.apextrading.com/api/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":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["v1","environmental-issues"],"host":["https://app.apextrading.com/api"],"query":[],"variable":[]}},"response":[{"id":"b77c15f4-f66b-48a8-af15-f5ba10b7e490","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://app.apextrading.com/api/environmental-issues"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 01:32:27 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\": 13\n    }\n}"}],"_postman_id":"22d20a2f-ac12-4be5-bb1a-45cd14fad214"}],"id":"0869cc85-1169-473b-a4d6-fbe27c7ab99d","_postman_id":"0869cc85-1169-473b-a4d6-fbe27c7ab99d","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}}},{"name":"Extraction Methods","item":[{"name":"Extraction Methods","id":"cad06966-6804-4a50-a9dc-7ac15a19eb18","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/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":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["v1","extraction-methods"],"host":["https://app.apextrading.com/api"],"query":[{"description":{"content":"<p>Number of records to return per page</p>\n","type":"text/plain"},"key":"per_page","value":"15"}],"variable":[]}},"response":[{"id":"5d52ddcf-2832-4936-a4c3-0e97bf4bca38","name":"Extraction Methods","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"https://app.apextrading.com/api/extraction-methods?per_page=15","host":["https://app.apextrading.com/api"],"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:28: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":"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\": \"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.apextrading.com/api/v1/extraction-methods?page=1\",\n        \"last\": \"https://demo.apextrading.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.apextrading.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.apextrading.com/api/v1/extraction-methods\",\n        \"per_page\": 15,\n        \"to\": 13,\n        \"total\": 13\n    },\n    \"status\": \"success\"\n}"}],"_postman_id":"cad06966-6804-4a50-a9dc-7ac15a19eb18"},{"name":"Extraction Method","id":"d0493433-e82b-48d3-a0e7-2fc5127dbc1d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/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":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["v1","extraction-methods","{{extraction_method_id}}"],"host":["https://app.apextrading.com/api"],"query":[],"variable":[]}},"response":[{"id":"688a22e7-694c-4702-97e9-b045ff0b416b","name":"Extraction Method","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/extraction-methods/{{extraction_method_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 01:28:16 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":"4992"},{"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":"d0493433-e82b-48d3-a0e7-2fc5127dbc1d"}],"id":"5b139b5a-b428-4754-a717-432bef1b7073","_postman_id":"5b139b5a-b428-4754-a717-432bef1b7073","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}}},{"name":"Feminized Types","item":[{"name":"Feminized Types","id":"0cbcf071-09c1-4d9c-8a09-8126fc2e6ec6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/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":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["v1","feminized-types"],"host":["https://app.apextrading.com/api"],"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":"4e909657-0937-4ba5-82ce-0e33c61d00ba","name":"Feminized Types","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"https://app.apextrading.com/api/feminized-types","host":["https://app.apextrading.com/api"],"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:39: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        {\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.apextrading.com/api/v1/feminized-types?page=1\",\n        \"last\": \"https://demo.apextrading.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.apextrading.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.apextrading.com/api/v1/feminized-types\",\n        \"per_page\": 15,\n        \"to\": 3,\n        \"total\": 3\n    },\n    \"status\": \"success\"\n}"}],"_postman_id":"0cbcf071-09c1-4d9c-8a09-8126fc2e6ec6"},{"name":"Feminized Type","id":"383dc5b2-8282-4ec7-821d-5bc06ae37791","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/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":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["v1","feminized-types","{{feminized_type_id}}"],"host":["https://app.apextrading.com/api"],"query":[],"variable":[]}},"response":[{"id":"c71dde6c-ee72-4606-aa2e-1d0b68bd8f0a","name":"Feminized Type","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/feminized-types/{{feminized_type_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 01:39: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":"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\": \"STS (Silver Thiosulfate Solution)\"\n    }\n}"}],"_postman_id":"383dc5b2-8282-4ec7-821d-5bc06ae37791"}],"id":"9d78d6ee-7e3c-4d89-82c7-4624694f954b","_postman_id":"9d78d6ee-7e3c-4d89-82c7-4624694f954b","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}}},{"name":"Flavors","item":[{"name":"Flavors","id":"3f64d600-c30c-40b9-b9ee-46f086612680","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/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":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["v1","flavors"],"host":["https://app.apextrading.com/api"],"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":"88ea4f2f-921f-46fc-9a26-c9bba384b4d9","name":"Flavors","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"https://app.apextrading.com/api/flavors","host":["https://app.apextrading.com/api"],"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:34: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":"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\": 2,\n            \"name\": \"Apple\",\n            \"company_id\": null\n        },\n        {\n            \"id\": 1,\n            \"name\": \"Plant Derived\",\n            \"company_id\": null\n        },\n        {\n            \"id\": 14,\n            \"name\": \"Lemon\",\n            \"company_id\": null\n        },\n        {\n            \"id\": 13,\n            \"name\": \"Green Apple\",\n            \"company_id\": null\n        },\n        {\n            \"id\": 12,\n            \"name\": \"Grapefruit\",\n            \"company_id\": null\n        },\n        {\n            \"id\": 11,\n            \"name\": \"Grape\",\n            \"company_id\": null\n        },\n        {\n            \"id\": 10,\n            \"name\": \"Fruit Punch\",\n            \"company_id\": null\n        },\n        {\n            \"id\": 9,\n            \"name\": \"Cinnamon\",\n            \"company_id\": null\n        },\n        {\n            \"id\": 7,\n            \"name\": \"Caramel Apple\",\n            \"company_id\": null\n        },\n        {\n            \"id\": 8,\n            \"name\": \"Cherry\",\n            \"company_id\": null\n        },\n        {\n            \"id\": 3,\n            \"name\": \"Banana\",\n            \"company_id\": null\n        },\n        {\n            \"id\": 4,\n            \"name\": \"Blackberry\",\n            \"company_id\": null\n        },\n        {\n            \"id\": 6,\n            \"name\": \"Butterscotch\",\n            \"company_id\": null\n        },\n        {\n            \"id\": 5,\n            \"name\": \"Blueberry\",\n            \"company_id\": null\n        },\n        {\n            \"id\": 30,\n            \"name\": \"Dreamsicle\",\n            \"company_id\": null\n        }\n    ],\n    \"links\": {\n        \"first\": \"https://demo.apextrading.com/api/v1/flavors?page=1\",\n        \"last\": \"https://demo.apextrading.com/api/v1/flavors?page=3\",\n        \"prev\": null,\n        \"next\": \"https://demo.apextrading.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.apextrading.com/api/v1/flavors?page=1\",\n                \"label\": \"1\",\n                \"active\": true\n            },\n            {\n                \"url\": \"https://demo.apextrading.com/api/v1/flavors?page=2\",\n                \"label\": \"2\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.apextrading.com/api/v1/flavors?page=3\",\n                \"label\": \"3\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.apextrading.com/api/v1/flavors?page=2\",\n                \"label\": \"Next &raquo;\",\n                \"active\": false\n            }\n        ],\n        \"path\": \"https://demo.apextrading.com/api/v1/flavors\",\n        \"per_page\": 15,\n        \"to\": 15,\n        \"total\": 36\n    },\n    \"status\": \"success\"\n}"}],"_postman_id":"3f64d600-c30c-40b9-b9ee-46f086612680"},{"name":"Flavor","id":"fd13d98d-942b-4cce-925c-8af44e2b37ce","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/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":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["v1","flavors","{{flavor_id}}"],"host":["https://app.apextrading.com/api"],"query":[],"variable":[]}},"response":[{"id":"9dae0cb0-72c1-4bc4-9bf8-67b1db212536","name":"Flavor","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/flavors/{{flavor_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 01:34: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":"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\": \"Apple\",\n        \"company_id\": null\n    }\n}"}],"_postman_id":"fd13d98d-942b-4cce-925c-8af44e2b37ce"},{"name":"Flavor","id":"27695bee-ae17-4350-b2eb-9920bcaf7c0a","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://app.apextrading.com/api/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":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["v1","flavors","{{flavor_id}}"],"host":["https://app.apextrading.com/api"],"query":[],"variable":[]}},"response":[{"id":"f7fc7708-c57f-49f6-b286-00d98c9cacfc","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://app.apextrading.com/api/flavors/{{flavor_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 01:34:51 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\": 38,\n        \"name\": \"my flavor name\",\n        \"company_id\": 13\n    }\n}"}],"_postman_id":"27695bee-ae17-4350-b2eb-9920bcaf7c0a"},{"name":"Flavor","id":"c7c639eb-9489-46cb-b58a-bcad394f7f88","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/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":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["v1","flavors","{{flavor_id}}"],"host":["https://app.apextrading.com/api"],"query":[],"variable":[]}},"response":[{"id":"ef45068a-46a8-44f2-bb84-9d6e6bf76b5b","name":"Flavor","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/flavors/{{flavor_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 01:35: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":"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":"c7c639eb-9489-46cb-b58a-bcad394f7f88"},{"name":"Flavor","id":"283fb119-2615-46ae-a252-80e51990a55e","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://app.apextrading.com/api/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":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["v1","flavors"],"host":["https://app.apextrading.com/api"],"query":[],"variable":[]}},"response":[{"id":"d4f7f56a-2e5a-4639-8335-01c8500deb76","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://app.apextrading.com/api/flavors"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 01:34:38 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\": 38,\n        \"name\": \"my flavor name\",\n        \"company_id\": 13\n    }\n}"}],"_postman_id":"283fb119-2615-46ae-a252-80e51990a55e"}],"id":"2c6216c5-3864-4371-a633-edb30ed13b86","_postman_id":"2c6216c5-3864-4371-a633-edb30ed13b86","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}}},{"name":"Flowering Periods","item":[{"name":"Flowering Periods","id":"1b2655b1-2d2c-4b8b-8068-8c1a1f795c47","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/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":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["v1","flowering-periods"],"host":["https://app.apextrading.com/api"],"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":"45f35577-18f2-42b4-8016-11e11356dd38","name":"Flowering Periods","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"https://app.apextrading.com/api/flowering-periods","host":["https://app.apextrading.com/api"],"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 01:38:27 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\": \"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.apextrading.com/api/v1/flowering-periods?page=1\",\n        \"last\": \"https://demo.apextrading.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.apextrading.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.apextrading.com/api/v1/flowering-periods\",\n        \"per_page\": 15,\n        \"to\": 3,\n        \"total\": 3\n    },\n    \"status\": \"success\"\n}"}],"_postman_id":"1b2655b1-2d2c-4b8b-8068-8c1a1f795c47"},{"name":"Flowering Period","id":"c407ba6b-cd37-4617-8aee-713da24adfa9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/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":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["v1","flowering-periods","{{flowering_period_id}}"],"host":["https://app.apextrading.com/api"],"query":[],"variable":[]}},"response":[{"id":"d58b9e99-05c9-4c13-b14d-719919fcc819","name":"Flowering Period","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/flowering-periods/{{flowering_period_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 01:38: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":"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\": \"Auto\",\n        \"company_id\": null\n    }\n}"}],"_postman_id":"c407ba6b-cd37-4617-8aee-713da24adfa9"},{"name":"Flowering Period","id":"a2ccf66e-f85f-405a-827d-6c463b383c13","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://app.apextrading.com/api/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":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["v1","flowering-periods","{{flowering_period_id}}"],"host":["https://app.apextrading.com/api"],"query":[],"variable":[]}},"response":[{"id":"ba3db4fe-7337-466e-baaa-bc80a8c2a0ae","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://app.apextrading.com/api/flowering-periods/{{flowering_period_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 01:38: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":"4996"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 6,\n        \"name\": \"my flowering name\",\n        \"company_id\": 13\n    }\n}"}],"_postman_id":"a2ccf66e-f85f-405a-827d-6c463b383c13"},{"name":"Flowering Period","id":"d2e9c970-2594-422a-94bb-45280c391860","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/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":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["v1","flowering-periods","{{flowering_period_id}}"],"host":["https://app.apextrading.com/api"],"query":[],"variable":[]}},"response":[{"id":"61fe327c-a50f-499a-ace5-fd2a956a7beb","name":"Flowering Period","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/flowering-periods/{{flowering_period_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 01:38: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":"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":"d2e9c970-2594-422a-94bb-45280c391860"},{"name":"Flowering Period","id":"2a2ca306-4ccc-4a95-abed-5fa8dc9b4eac","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://app.apextrading.com/api/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":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["v1","flowering-periods"],"host":["https://app.apextrading.com/api"],"query":[],"variable":[]}},"response":[{"id":"680939b4-594d-43f1-9193-14b0d06ed2e6","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://app.apextrading.com/api/flowering-periods"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 01:38:40 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\": 6,\n        \"name\": \"my flowering name\",\n        \"company_id\": 13\n    }\n}"}],"_postman_id":"2a2ca306-4ccc-4a95-abed-5fa8dc9b4eac"}],"id":"8c87e74d-a00b-4abb-9068-e75e4452770f","_postman_id":"8c87e74d-a00b-4abb-9068-e75e4452770f","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}}},{"name":"Government Agencies","item":[{"name":"Government Agencies","id":"0b95e422-406b-4c47-8eb7-a10de7048779","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/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":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["v1","government-agencies"],"host":["https://app.apextrading.com/api"],"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":"115784c9-8222-44ac-9c49-27b07bfaa859","name":"Government Agencies","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"https://app.apextrading.com/api/government-agencies","host":["https://app.apextrading.com/api"],"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:40: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":"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\": \"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.apextrading.com/api/v1/government-agencies?page=1\",\n        \"last\": \"https://demo.apextrading.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.apextrading.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.apextrading.com/api/v1/government-agencies\",\n        \"per_page\": 15,\n        \"to\": 3,\n        \"total\": 3\n    },\n    \"status\": \"success\"\n}"}],"_postman_id":"0b95e422-406b-4c47-8eb7-a10de7048779"},{"name":"Government Agency","id":"01a75b17-1a24-4706-9d47-7c86df00b340","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/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":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["v1","government-agencies","{{government_agency_id}}"],"host":["https://app.apextrading.com/api"],"query":[],"variable":[]}},"response":[{"id":"37ae0899-26cb-4a02-8f96-3dd395fd5a54","name":"Government Agency","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/government-agencies/{{government_agency_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 01:40: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":"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\": \"PPVA\"\n    }\n}"}],"_postman_id":"01a75b17-1a24-4706-9d47-7c86df00b340"}],"id":"cd07eee1-7151-46b1-bd3f-b62a2d97819f","_postman_id":"cd07eee1-7151-46b1-bd3f-b62a2d97819f","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}}},{"name":"Grow Environments","item":[{"name":"Grow Environments","id":"5519b806-bc1d-4373-99b1-28d194aa0210","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/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":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["v1","grow-environments"],"host":["https://app.apextrading.com/api"],"query":[{"description":{"content":"<p>Number of records to return per page</p>\n","type":"text/plain"},"key":"per_page","value":"15"}],"variable":[]}},"response":[{"id":"7e4ed5db-922d-4518-96bb-7d47936dafa3","name":"Grow Environments","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"https://app.apextrading.com/api/grow-environments?per_page=15","host":["https://app.apextrading.com/api"],"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:29: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":"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\": \"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.apextrading.com/api/v1/grow-environments?page=1\",\n        \"last\": \"https://demo.apextrading.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.apextrading.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.apextrading.com/api/v1/grow-environments\",\n        \"per_page\": 15,\n        \"to\": 7,\n        \"total\": 7\n    },\n    \"status\": \"success\"\n}"}],"_postman_id":"5519b806-bc1d-4373-99b1-28d194aa0210"},{"name":"Grow Environment","id":"08840b93-f6d2-471a-8973-43ba17d4278c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/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":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["v1","grow-environments","{{grow_environment_id}}"],"host":["https://app.apextrading.com/api"],"query":[],"variable":[]}},"response":[{"id":"8f14e78c-4c35-41b0-a96f-6d40344bc322","name":"Grow Environment","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/grow-environments/{{grow_environment_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 01:29:07 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\": \"Hybrid Indoor\"\n    }\n}"}],"_postman_id":"08840b93-f6d2-471a-8973-43ba17d4278c"}],"id":"110bd2b0-77ad-414a-88f9-2c4fde29fce4","_postman_id":"110bd2b0-77ad-414a-88f9-2c4fde29fce4","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}}},{"name":"Grow Mediums","item":[{"name":"Grow Mediums","id":"a6b1634b-d247-4c3f-b8dc-262b3ff88b54","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/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":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["v1","grow-mediums"],"host":["https://app.apextrading.com/api"],"query":[{"description":{"content":"<p>Number of records to return per page</p>\n","type":"text/plain"},"key":"per_page","value":"15"}],"variable":[]}},"response":[{"id":"adcb4b64-2700-4275-8d16-f1155e3237e3","name":"Grow Mediums","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"https://app.apextrading.com/api/grow-mediums?per_page=15","host":["https://app.apextrading.com/api"],"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:29:16 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\": \"Medium\"\n        },\n        {\n            \"id\": 2,\n            \"name\": \"Black Gold Soil\"\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\": 12,\n            \"name\": \"Hybrid = Hydropronic & Organic\"\n        },\n        {\n            \"id\": 13,\n            \"name\": \"Grodan\"\n        },\n        {\n            \"id\": 16,\n            \"name\": \"Pro Mix\"\n        }\n    ],\n    \"links\": {\n        \"first\": \"https://demo.apextrading.com/api/v1/grow-mediums?page=1\",\n        \"last\": \"https://demo.apextrading.com/api/v1/grow-mediums?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.apextrading.com/api/v1/grow-mediums?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.apextrading.com/api/v1/grow-mediums\",\n        \"per_page\": 15,\n        \"to\": 12,\n        \"total\": 12\n    },\n    \"status\": \"success\"\n}"}],"_postman_id":"a6b1634b-d247-4c3f-b8dc-262b3ff88b54"},{"name":"Grow Medium","id":"7cc05fcd-c947-4f2a-a345-62bdda253e66","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/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":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["v1","grow-mediums","{{grow-medium_id}}"],"host":["https://app.apextrading.com/api"],"query":[],"variable":[]}},"response":[{"id":"ac27a340-64e3-4d31-8d1f-c8241d0eda5b","name":"Grow Medium","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/grow-mediums/{{grow-medium_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 01:29: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":"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\": \"Black Gold Soil\"\n    }\n}"}],"_postman_id":"7cc05fcd-c947-4f2a-a345-62bdda253e66"}],"id":"4660e37d-f714-4e53-a35d-65df2e2a9fd3","_postman_id":"4660e37d-f714-4e53-a35d-65df2e2a9fd3","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}}},{"name":"Infusion Methods","item":[{"name":"Infusion Methods","id":"c5dd709b-6136-499a-83cd-51e6debb3600","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/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":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["v1","infusion-methods"],"host":["https://app.apextrading.com/api"],"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":"ce13d65e-2981-4ad9-a44d-944178d42e75","name":"Infusion Methods","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"https://app.apextrading.com/api/infusion-methods","host":["https://app.apextrading.com/api"],"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:26: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":"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.apextrading.com/api/v1/infusion-methods?page=1\",\n        \"last\": \"https://demo.apextrading.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.apextrading.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.apextrading.com/api/v1/infusion-methods\",\n        \"per_page\": 15,\n        \"to\": 4,\n        \"total\": 4\n    }\n}"}],"_postman_id":"c5dd709b-6136-499a-83cd-51e6debb3600"},{"name":"Infusion Method","id":"26aca18c-29b6-473b-b2cf-42b0d6752105","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/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":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["v1","infusion-methods","{{infusion_method_id}}"],"host":["https://app.apextrading.com/api"],"query":[],"variable":[]}},"response":[{"id":"22ac8b3b-724a-4eef-991a-8b2e8efc7b82","name":"Infusion Method","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/infusion-methods/{{infusion_method_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 01:26: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":"4997"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 1,\n        \"name\": \"Oil\"\n    }\n}"}],"_postman_id":"26aca18c-29b6-473b-b2cf-42b0d6752105"}],"id":"7ddb1eb1-8299-4655-bb6c-177f9b5a4c8e","_postman_id":"7ddb1eb1-8299-4655-bb6c-177f9b5a4c8e","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}}},{"name":"Leads","item":[{"name":"Buyer Leads","id":"ea69c1a8-82b3-4c0f-9645-57ca09b95f15","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer  ","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/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":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["v1","buyer-leads"],"host":["https://app.apextrading.com/api"],"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":[{"id":"b4efbc23-1ab5-44b6-970d-a61b640c5b77","name":"Buyer Leads","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer  ","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"https://app.apextrading.com/api/buyer-leads","host":["https://app.apextrading.com/api"],"path":["buyer-leads"],"query":[{"key":"with_notes","value":"true","description":"include notes","type":"text","disabled":true},{"key":"per_page","value":"15","description":"# of records to return per page","type":"text","disabled":true},{"key":"ignore","value":"true","description":"filter by ignored. All returned if no key present","type":"text","disabled":true},{"key":"ids[]","value":"3","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}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 07 May 2025 02:33: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":"4999"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"leads\": [\n        {\n            \"id\": 3,\n            \"lead_id\": 2609,\n            \"priority\": \"High\",\n            \"stage\": \"Contacted\",\n            \"is_buyer\": true,\n            \"ignore\": false,\n            \"firstname\": \"Lisa\",\n            \"lastname\": \"Jones\",\n            \"email\": \"Jones@gmail.com\",\n            \"phone\": \"61652487\",\n            \"created_at\": \"2021-03-13T01:28:57.000000Z\",\n            \"updated_at\": \"2021-05-12T15:26:12.000000Z\"\n        },\n        {\n            \"id\": 4,\n            \"lead_id\": 2608,\n            \"priority\": \"Low\",\n            \"stage\": \"Cold\",\n            \"is_buyer\": false,\n            \"ignore\": true,\n            \"firstname\": null,\n            \"lastname\": null,\n            \"email\": null,\n            \"phone\": null,\n            \"created_at\": \"2021-03-13T01:49:55.000000Z\",\n            \"updated_at\": \"2021-03-15T17:12:59.000000Z\"\n        },\n        {\n            \"id\": 5,\n            \"lead_id\": 2614,\n            \"priority\": \"High\",\n            \"stage\": \"Cold\",\n            \"is_buyer\": true,\n            \"ignore\": false,\n            \"firstname\": null,\n            \"lastname\": null,\n            \"email\": null,\n            \"phone\": null,\n            \"created_at\": \"2021-03-13T01:49:55.000000Z\",\n            \"updated_at\": \"2021-03-26T19:22:02.000000Z\"\n        },\n        {\n            \"id\": 6,\n            \"lead_id\": 2616,\n            \"priority\": \"High\",\n            \"stage\": \"Contacted\",\n            \"is_buyer\": true,\n            \"ignore\": false,\n            \"firstname\": null,\n            \"lastname\": null,\n            \"email\": null,\n            \"phone\": null,\n            \"created_at\": \"2021-03-13T01:49:55.000000Z\",\n            \"updated_at\": \"2021-04-14T21:36:02.000000Z\"\n        },\n        {\n            \"id\": 758,\n            \"lead_id\": 2610,\n            \"priority\": \"High\",\n            \"stage\": \"Interested\",\n            \"is_buyer\": true,\n            \"ignore\": false,\n            \"firstname\": \"John\",\n            \"lastname\": \"Doe\",\n            \"email\": \"Test@gmail.com\",\n            \"phone\": \"4834939\",\n            \"created_at\": \"2021-03-15T17:15:00.000000Z\",\n            \"updated_at\": \"2021-08-04T18:33:49.000000Z\"\n        },\n        {\n            \"id\": 759,\n            \"lead_id\": 2611,\n            \"priority\": \"High\",\n            \"stage\": \"Cold\",\n            \"is_buyer\": true,\n            \"ignore\": false,\n            \"firstname\": \"Jim\",\n            \"lastname\": null,\n            \"email\": \"jim@420ville\",\n            \"phone\": null,\n            \"created_at\": \"2021-03-15T17:15:00.000000Z\",\n            \"updated_at\": \"2021-03-31T21:34:55.000000Z\"\n        },\n        {\n            \"id\": 760,\n            \"lead_id\": 2612,\n            \"priority\": \"High\",\n            \"stage\": \"Interested\",\n            \"is_buyer\": true,\n            \"ignore\": false,\n            \"firstname\": \"Joe\",\n            \"lastname\": \"Buyer\",\n            \"email\": \"joe@buyer.com\",\n            \"phone\": \"58493493\",\n            \"created_at\": \"2021-03-15T17:15:00.000000Z\",\n            \"updated_at\": \"2021-03-18T15:24:06.000000Z\"\n        },\n        {\n            \"id\": 761,\n            \"lead_id\": 2613,\n            \"priority\": \"High\",\n            \"stage\": \"Cold\",\n            \"is_buyer\": true,\n            \"ignore\": false,\n            \"firstname\": null,\n            \"lastname\": null,\n            \"email\": null,\n            \"phone\": null,\n            \"created_at\": \"2021-03-15T17:15:00.000000Z\",\n            \"updated_at\": \"2021-03-31T21:35:45.000000Z\"\n        },\n        {\n            \"id\": 762,\n            \"lead_id\": 2615,\n            \"priority\": \"High\",\n            \"stage\": \"Contacted\",\n            \"is_buyer\": true,\n            \"ignore\": false,\n            \"firstname\": \"Stephanie\",\n            \"lastname\": null,\n            \"email\": \"steph@apextrading.com\",\n            \"phone\": null,\n            \"created_at\": \"2021-03-15T17:15:00.000000Z\",\n            \"updated_at\": \"2021-04-06T21:48:53.000000Z\"\n        },\n        {\n            \"id\": 763,\n            \"lead_id\": 2617,\n            \"priority\": \"High\",\n            \"stage\": \"Contacted\",\n            \"is_buyer\": true,\n            \"ignore\": false,\n            \"firstname\": \"Blair\",\n            \"lastname\": null,\n            \"email\": \"test.com\",\n            \"phone\": \"473829298\",\n            \"created_at\": \"2021-03-15T17:15:00.000000Z\",\n            \"updated_at\": \"2021-04-16T15:26:05.000000Z\"\n        },\n        {\n            \"id\": 764,\n            \"lead_id\": 2618,\n            \"priority\": \"High\",\n            \"stage\": \"Interested\",\n            \"is_buyer\": true,\n            \"ignore\": false,\n            \"firstname\": \"Lisa\",\n            \"lastname\": \"Jones\",\n            \"email\": \"Lisa@gmail.com\",\n            \"phone\": \"7345698978\",\n            \"created_at\": \"2021-03-15T17:15:00.000000Z\",\n            \"updated_at\": \"2021-05-12T15:31:17.000000Z\"\n        },\n        {\n            \"id\": 765,\n            \"lead_id\": 2619,\n            \"priority\": \"High\",\n            \"stage\": \"Cold\",\n            \"is_buyer\": true,\n            \"ignore\": false,\n            \"firstname\": \"Jill\",\n            \"lastname\": null,\n            \"email\": \"jill@ama\",\n            \"phone\": null,\n            \"created_at\": \"2021-03-15T17:15:00.000000Z\",\n            \"updated_at\": \"2021-03-31T16:10:12.000000Z\"\n        },\n        {\n            \"id\": 766,\n            \"lead_id\": 2620,\n            \"priority\": \"High\",\n            \"stage\": \"Contacted\",\n            \"is_buyer\": true,\n            \"ignore\": false,\n            \"firstname\": \"Katie\",\n            \"lastname\": null,\n            \"email\": \"Katie@amberlight.com\",\n            \"phone\": null,\n            \"created_at\": \"2021-03-15T17:15:00.000000Z\",\n            \"updated_at\": \"2021-03-31T17:09:30.000000Z\"\n        },\n        {\n            \"id\": 767,\n            \"lead_id\": 2621,\n            \"priority\": \"High\",\n            \"stage\": \"Contacted\",\n            \"is_buyer\": true,\n            \"ignore\": false,\n            \"firstname\": \"Jenn\",\n            \"lastname\": \"Do\",\n            \"email\": \"jenn@apextrading.com\",\n            \"phone\": null,\n            \"created_at\": \"2021-03-15T17:15:00.000000Z\",\n            \"updated_at\": \"2021-05-12T16:03:35.000000Z\"\n        },\n        {\n            \"id\": 768,\n            \"lead_id\": 2622,\n            \"priority\": \"High\",\n            \"stage\": \"Cold\",\n            \"is_buyer\": true,\n            \"ignore\": false,\n            \"firstname\": \"123 Test\",\n            \"lastname\": null,\n            \"email\": \"121919129823@apextrading.com\",\n            \"phone\": null,\n            \"created_at\": \"2021-03-15T17:15:00.000000Z\",\n            \"updated_at\": \"2021-05-12T17:51:49.000000Z\"\n        }\n    ],\n    \"links\": {\n        \"first\": \"https://demo.apextrading.com/api/v1/buyer-leads?page=1\",\n        \"last\": \"https://demo.apextrading.com/api/v1/buyer-leads?page=53\",\n        \"prev\": null,\n        \"next\": \"https://demo.apextrading.com/api/v1/buyer-leads?page=2\"\n    },\n    \"meta\": {\n        \"current_page\": 1,\n        \"from\": 1,\n        \"last_page\": 53,\n        \"links\": [\n            {\n                \"url\": null,\n                \"label\": \"&laquo; Previous\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.apextrading.com/api/v1/buyer-leads?page=1\",\n                \"label\": \"1\",\n                \"active\": true\n            },\n            {\n                \"url\": \"https://demo.apextrading.com/api/v1/buyer-leads?page=2\",\n                \"label\": \"2\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.apextrading.com/api/v1/buyer-leads?page=3\",\n                \"label\": \"3\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.apextrading.com/api/v1/buyer-leads?page=4\",\n                \"label\": \"4\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.apextrading.com/api/v1/buyer-leads?page=5\",\n                \"label\": \"5\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.apextrading.com/api/v1/buyer-leads?page=6\",\n                \"label\": \"6\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.apextrading.com/api/v1/buyer-leads?page=7\",\n                \"label\": \"7\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.apextrading.com/api/v1/buyer-leads?page=8\",\n                \"label\": \"8\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.apextrading.com/api/v1/buyer-leads?page=9\",\n                \"label\": \"9\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.apextrading.com/api/v1/buyer-leads?page=10\",\n                \"label\": \"10\",\n                \"active\": false\n            },\n            {\n                \"url\": null,\n                \"label\": \"...\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.apextrading.com/api/v1/buyer-leads?page=52\",\n                \"label\": \"52\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.apextrading.com/api/v1/buyer-leads?page=53\",\n                \"label\": \"53\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.apextrading.com/api/v1/buyer-leads?page=2\",\n                \"label\": \"Next &raquo;\",\n                \"active\": false\n            }\n        ],\n        \"path\": \"https://demo.apextrading.com/api/v1/buyer-leads\",\n        \"per_page\": 15,\n        \"to\": 15,\n        \"total\": 787\n    }\n}"}],"_postman_id":"ea69c1a8-82b3-4c0f-9645-57ca09b95f15"},{"name":"Buyer Lead","id":"559cf2b6-bfbc-4903-bf58-21fb7f8b7980","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer  ","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/v1/buyer-leads/{{buyer_lead_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":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["v1","buyer-leads","{{buyer_lead_id}}"],"host":["https://app.apextrading.com/api"],"query":[],"variable":[]}},"response":[{"id":"0b4514d8-8476-4d8c-8c2c-d4605020eab1","name":"Buyer Lead","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer  ","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/buyer-leads/{{buyer_lead_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 02:12: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    \"lead\": {\n        \"id\": 3,\n        \"lead_id\": 2609,\n        \"priority\": \"High\",\n        \"stage\": \"Contacted\",\n        \"is_buyer\": true,\n        \"ignore\": false,\n        \"firstname\": \"Lisa\",\n        \"lastname\": \"Jones\",\n        \"email\": \"Jones@gmail.com\",\n        \"phone\": \"61652487\",\n        \"created_at\": \"2021-03-13T01:28:57.000000Z\",\n        \"updated_at\": \"2021-05-12T15:26:12.000000Z\",\n        \"notes\": [\n            {\n                \"id\": 71,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-08-04T15:10:46.000000Z\",\n                \"updated_at\": \"2021-08-04T15:10:46.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 72,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-08-04T15:10:46.000000Z\",\n                \"updated_at\": \"2021-08-04T15:10:46.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 73,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-08-04T15:10:46.000000Z\",\n                \"updated_at\": \"2021-08-04T15:10:46.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 74,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-08-04T15:10:46.000000Z\",\n                \"updated_at\": \"2021-08-04T15:10:46.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 75,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-08-04T15:10:46.000000Z\",\n                \"updated_at\": \"2021-08-04T15:10:46.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 76,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-08-04T15:10:46.000000Z\",\n                \"updated_at\": \"2021-08-04T15:10:46.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 77,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-08-04T15:10:46.000000Z\",\n                \"updated_at\": \"2021-08-04T15:10:46.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 78,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-08-04T15:10:46.000000Z\",\n                \"updated_at\": \"2021-08-04T15:10:46.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 79,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-08-04T15:10:46.000000Z\",\n                \"updated_at\": \"2021-08-04T15:10:46.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 80,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-08-04T15:10:46.000000Z\",\n                \"updated_at\": \"2021-08-04T15:10:46.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 81,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-08-04T15:10:46.000000Z\",\n                \"updated_at\": \"2021-08-04T15:10:46.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 82,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-08-04T15:10:46.000000Z\",\n                \"updated_at\": \"2021-08-04T15:10:46.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 83,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-08-04T15:10:46.000000Z\",\n                \"updated_at\": \"2021-08-04T15:10:46.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 84,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-08-04T15:10:46.000000Z\",\n                \"updated_at\": \"2021-08-04T15:10:46.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 85,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-08-04T15:10:46.000000Z\",\n                \"updated_at\": \"2021-08-04T15:10:46.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 86,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-08-04T15:10:46.000000Z\",\n                \"updated_at\": \"2021-08-04T15:10:46.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 87,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-08-04T15:10:46.000000Z\",\n                \"updated_at\": \"2021-08-04T15:10:46.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 88,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-08-04T15:10:46.000000Z\",\n                \"updated_at\": \"2021-08-04T15:10:46.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 89,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-08-04T15:10:46.000000Z\",\n                \"updated_at\": \"2021-08-04T15:10:46.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 90,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-08-04T15:10:46.000000Z\",\n                \"updated_at\": \"2021-08-04T15:10:46.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 91,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-08-04T15:10:46.000000Z\",\n                \"updated_at\": \"2021-08-04T15:10:46.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 92,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-08-04T15:10:46.000000Z\",\n                \"updated_at\": \"2021-08-04T15:10:46.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 93,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-08-04T15:10:46.000000Z\",\n                \"updated_at\": \"2021-08-04T15:10:46.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 94,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-08-04T15:10:46.000000Z\",\n                \"updated_at\": \"2021-08-04T15:10:46.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 95,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-08-04T15:10:46.000000Z\",\n                \"updated_at\": \"2021-08-04T15:10:46.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 96,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-08-04T15:10:46.000000Z\",\n                \"updated_at\": \"2021-08-04T15:10:46.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 97,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-08-04T15:10:46.000000Z\",\n                \"updated_at\": \"2021-08-04T15:10:46.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 98,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-08-04T15:10:46.000000Z\",\n                \"updated_at\": \"2021-08-04T15:10:46.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 99,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-08-04T15:10:46.000000Z\",\n                \"updated_at\": \"2021-08-04T15:10:46.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 100,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-08-04T15:10:46.000000Z\",\n                \"updated_at\": \"2021-08-04T15:10:46.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 101,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-08-04T15:10:46.000000Z\",\n                \"updated_at\": \"2021-08-04T15:10:46.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 102,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-08-04T15:10:46.000000Z\",\n                \"updated_at\": \"2021-08-04T15:10:46.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 103,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-08-04T15:10:46.000000Z\",\n                \"updated_at\": \"2021-08-04T15:10:46.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 104,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-08-04T15:10:46.000000Z\",\n                \"updated_at\": \"2021-08-04T15:10:46.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 105,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-08-04T15:10:46.000000Z\",\n                \"updated_at\": \"2021-08-04T15:10:46.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 106,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-08-04T15:10:46.000000Z\",\n                \"updated_at\": \"2021-08-04T15:10:46.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 107,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-08-04T15:10:46.000000Z\",\n                \"updated_at\": \"2021-08-04T15:10:46.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 108,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-08-04T15:10:46.000000Z\",\n                \"updated_at\": \"2021-08-04T15:10:46.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 109,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-08-04T15:10:46.000000Z\",\n                \"updated_at\": \"2021-08-04T15:10:46.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 110,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-08-04T15:10:46.000000Z\",\n                \"updated_at\": \"2021-08-04T15:10:46.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 111,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-08-04T15:10:46.000000Z\",\n                \"updated_at\": \"2021-08-04T15:10:46.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 112,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-08-04T15:10:46.000000Z\",\n                \"updated_at\": \"2021-08-04T15:10:46.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 113,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-08-04T15:10:46.000000Z\",\n                \"updated_at\": \"2021-08-04T15:10:46.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 114,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-08-04T15:10:46.000000Z\",\n                \"updated_at\": \"2021-08-04T15:10:46.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 115,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-08-04T15:10:46.000000Z\",\n                \"updated_at\": \"2021-08-04T15:10:46.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 116,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-08-04T15:10:46.000000Z\",\n                \"updated_at\": \"2021-08-04T15:10:46.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 117,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-08-04T15:10:46.000000Z\",\n                \"updated_at\": \"2021-08-04T15:10:46.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 118,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-08-04T15:10:46.000000Z\",\n                \"updated_at\": \"2021-08-04T15:10:46.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 119,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-08-04T15:10:46.000000Z\",\n                \"updated_at\": \"2021-08-04T15:10:46.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 120,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-08-04T15:10:46.000000Z\",\n                \"updated_at\": \"2021-08-04T15:10:46.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 121,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-08-04T15:10:46.000000Z\",\n                \"updated_at\": \"2021-08-04T15:10:46.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 122,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-08-04T15:10:46.000000Z\",\n                \"updated_at\": \"2021-08-04T15:10:46.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 123,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-08-04T15:10:46.000000Z\",\n                \"updated_at\": \"2021-08-04T15:10:46.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 124,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-08-04T15:10:46.000000Z\",\n                \"updated_at\": \"2021-08-04T15:10:46.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 125,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-08-04T15:10:46.000000Z\",\n                \"updated_at\": \"2021-08-04T15:10:46.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 126,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-08-04T15:10:46.000000Z\",\n                \"updated_at\": \"2021-08-04T15:10:46.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 127,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-08-04T15:10:46.000000Z\",\n                \"updated_at\": \"2021-08-04T15:10:46.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 128,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-08-04T15:10:46.000000Z\",\n                \"updated_at\": \"2021-08-04T15:10:46.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 129,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-08-04T15:10:46.000000Z\",\n                \"updated_at\": \"2021-08-04T15:10:46.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 69,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-08-04T15:10:45.000000Z\",\n                \"updated_at\": \"2021-08-04T15:10:45.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 70,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-08-04T15:10:45.000000Z\",\n                \"updated_at\": \"2021-08-04T15:10:45.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 40,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-08-04T15:10:05.000000Z\",\n                \"updated_at\": \"2021-08-04T15:10:05.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 41,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-08-04T15:10:05.000000Z\",\n                \"updated_at\": \"2021-08-04T15:10:05.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 42,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-08-04T15:10:05.000000Z\",\n                \"updated_at\": \"2021-08-04T15:10:05.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 43,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-08-04T15:10:05.000000Z\",\n                \"updated_at\": \"2021-08-04T15:10:05.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 44,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-08-04T15:10:05.000000Z\",\n                \"updated_at\": \"2021-08-04T15:10:05.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 45,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-08-04T15:10:05.000000Z\",\n                \"updated_at\": \"2021-08-04T15:10:05.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 46,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-08-04T15:10:05.000000Z\",\n                \"updated_at\": \"2021-08-04T15:10:05.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 47,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-08-04T15:10:05.000000Z\",\n                \"updated_at\": \"2021-08-04T15:10:05.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 48,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-08-04T15:10:05.000000Z\",\n                \"updated_at\": \"2021-08-04T15:10:05.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 49,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-08-04T15:10:05.000000Z\",\n                \"updated_at\": \"2021-08-04T15:10:05.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 50,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-08-04T15:10:05.000000Z\",\n                \"updated_at\": \"2021-08-04T15:10:05.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 51,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-08-04T15:10:05.000000Z\",\n                \"updated_at\": \"2021-08-04T15:10:05.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 52,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-08-04T15:10:05.000000Z\",\n                \"updated_at\": \"2021-08-04T15:10:05.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 53,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-08-04T15:10:05.000000Z\",\n                \"updated_at\": \"2021-08-04T15:10:05.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 54,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-08-04T15:10:05.000000Z\",\n                \"updated_at\": \"2021-08-04T15:10:05.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 55,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-08-04T15:10:05.000000Z\",\n                \"updated_at\": \"2021-08-04T15:10:05.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 56,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-08-04T15:10:05.000000Z\",\n                \"updated_at\": \"2021-08-04T15:10:05.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 57,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-08-04T15:10:05.000000Z\",\n                \"updated_at\": \"2021-08-04T15:10:05.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 58,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-08-04T15:10:05.000000Z\",\n                \"updated_at\": \"2021-08-04T15:10:05.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 59,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-08-04T15:10:05.000000Z\",\n                \"updated_at\": \"2021-08-04T15:10:05.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 60,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-08-04T15:10:05.000000Z\",\n                \"updated_at\": \"2021-08-04T15:10:05.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 61,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-08-04T15:10:05.000000Z\",\n                \"updated_at\": \"2021-08-04T15:10:05.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 62,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-08-04T15:10:05.000000Z\",\n                \"updated_at\": \"2021-08-04T15:10:05.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 63,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-08-04T15:10:05.000000Z\",\n                \"updated_at\": \"2021-08-04T15:10:05.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 64,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-08-04T15:10:05.000000Z\",\n                \"updated_at\": \"2021-08-04T15:10:05.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 65,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-08-04T15:10:05.000000Z\",\n                \"updated_at\": \"2021-08-04T15:10:05.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 66,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-08-04T15:10:05.000000Z\",\n                \"updated_at\": \"2021-08-04T15:10:05.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 67,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-08-04T15:10:05.000000Z\",\n                \"updated_at\": \"2021-08-04T15:10:05.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 68,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-08-04T15:10:05.000000Z\",\n                \"updated_at\": \"2021-08-04T15:10:05.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 24,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-06-15T14:31:52.000000Z\",\n                \"updated_at\": \"2021-06-15T14:31:52.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 25,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-06-15T14:31:52.000000Z\",\n                \"updated_at\": \"2021-06-15T14:31:52.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 26,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-06-15T14:31:52.000000Z\",\n                \"updated_at\": \"2021-06-15T14:31:52.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 27,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-06-15T14:31:52.000000Z\",\n                \"updated_at\": \"2021-06-15T14:31:52.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 28,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-06-15T14:31:52.000000Z\",\n                \"updated_at\": \"2021-06-15T14:31:52.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 29,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-06-15T14:31:52.000000Z\",\n                \"updated_at\": \"2021-06-15T14:31:52.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 30,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-06-15T14:31:52.000000Z\",\n                \"updated_at\": \"2021-06-15T14:31:52.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 31,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-06-15T14:31:52.000000Z\",\n                \"updated_at\": \"2021-06-15T14:31:52.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 32,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-06-15T14:31:52.000000Z\",\n                \"updated_at\": \"2021-06-15T14:31:52.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 33,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-06-15T14:31:52.000000Z\",\n                \"updated_at\": \"2021-06-15T14:31:52.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 34,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-06-15T14:31:52.000000Z\",\n                \"updated_at\": \"2021-06-15T14:31:52.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 35,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-06-15T14:31:52.000000Z\",\n                \"updated_at\": \"2021-06-15T14:31:52.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 36,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-06-15T14:31:52.000000Z\",\n                \"updated_at\": \"2021-06-15T14:31:52.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 37,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-06-15T14:31:52.000000Z\",\n                \"updated_at\": \"2021-06-15T14:31:52.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 38,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-06-15T14:31:52.000000Z\",\n                \"updated_at\": \"2021-06-15T14:31:52.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 39,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-06-15T14:31:52.000000Z\",\n                \"updated_at\": \"2021-06-15T14:31:52.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 16,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-06-15T14:31:41.000000Z\",\n                \"updated_at\": \"2021-06-15T14:31:41.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 17,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-06-15T14:31:41.000000Z\",\n                \"updated_at\": \"2021-06-15T14:31:41.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 18,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-06-15T14:31:41.000000Z\",\n                \"updated_at\": \"2021-06-15T14:31:41.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 19,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-06-15T14:31:41.000000Z\",\n                \"updated_at\": \"2021-06-15T14:31:41.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 20,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-06-15T14:31:41.000000Z\",\n                \"updated_at\": \"2021-06-15T14:31:41.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 21,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-06-15T14:31:41.000000Z\",\n                \"updated_at\": \"2021-06-15T14:31:41.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 22,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-06-15T14:31:41.000000Z\",\n                \"updated_at\": \"2021-06-15T14:31:41.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 23,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-06-15T14:31:41.000000Z\",\n                \"updated_at\": \"2021-06-15T14:31:41.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 12,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-05-12T17:53:07.000000Z\",\n                \"updated_at\": \"2021-05-12T17:53:07.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 13,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-05-12T17:53:07.000000Z\",\n                \"updated_at\": \"2021-05-12T17:53:07.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 14,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-05-12T17:53:07.000000Z\",\n                \"updated_at\": \"2021-05-12T17:53:07.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 15,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-05-12T17:53:07.000000Z\",\n                \"updated_at\": \"2021-05-12T17:53:07.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 8,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-05-12T15:27:32.000000Z\",\n                \"updated_at\": \"2021-05-12T15:27:32.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 9,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-05-12T15:27:32.000000Z\",\n                \"updated_at\": \"2021-05-12T15:27:32.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 7,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-05-12T15:25:57.000000Z\",\n                \"updated_at\": \"2021-05-12T15:25:57.000000Z\",\n                \"user\": {\n                    \"name\": \"Erin Beck\"\n                }\n            },\n            {\n                \"id\": 1,\n                \"title\": \"Spoke with Intake Manager Lisa\",\n                \"note\": \"Lisa said to go ahead and drop in on Wednesdays to drop off samples and to meet her. She's usually in after 3:00 p.m. but said to call before I stop by just to be sure.\",\n                \"created_at\": \"2021-03-13T01:28:57.000000Z\",\n                \"updated_at\": \"2021-03-13T01:28:57.000000Z\",\n                \"user\": {\n                    \"name\": \"Jenn Do\"\n                }\n            }\n        ]\n    }\n}"}],"_postman_id":"559cf2b6-bfbc-4903-bf58-21fb7f8b7980"}],"id":"f50517f3-0ad3-4194-9cc6-f5a9b223cec5","_postman_id":"f50517f3-0ad3-4194-9cc6-f5a9b223cec5","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}}},{"name":"Net Terms","item":[{"name":"Net Terms","id":"83edfaae-fe35-4600-b82c-7ebbb6cc34e0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer  ","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/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":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["v1","net-terms"],"host":["https://app.apextrading.com/api"],"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":"191d56be-9fce-44f7-a44a-9a214835a5ef","name":"Net Terms","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer  ","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"https://app.apextrading.com/api/net-terms","host":["https://app.apextrading.com/api"],"path":["net-terms"],"query":[{"key":"per_page","value":"15","description":"# of records to return per page","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 07 May 2025 02:33: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":"4997"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"terms\": [\n        {\n            \"id\": 8,\n            \"name\": \"50% On Delivery, 50% Net 14\"\n        },\n        {\n            \"id\": 21,\n            \"name\": \"Net 5\"\n        },\n        {\n            \"id\": 24,\n            \"name\": \"ACH\"\n        },\n        {\n            \"id\": 25,\n            \"name\": \"50% on delivery, 50% Net 30\"\n        }\n    ],\n    \"links\": {\n        \"first\": \"https://demo.apextrading.com/api/v1/net-terms?page=1\",\n        \"last\": \"https://demo.apextrading.com/api/v1/net-terms?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.apextrading.com/api/v1/net-terms?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.apextrading.com/api/v1/net-terms\",\n        \"per_page\": 15,\n        \"to\": 4,\n        \"total\": 4\n    }\n}"}],"_postman_id":"83edfaae-fe35-4600-b82c-7ebbb6cc34e0"},{"name":"Net Term","id":"b93d21c9-7ee3-4615-ae8e-9cf73567773a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer  ","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/v1/net-terms/{{net_term_id}}","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":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["v1","net-terms","{{net_term_id}}"],"host":["https://app.apextrading.com/api"],"query":[],"variable":[]}},"response":[{"id":"a3504e44-1f13-4ad4-a821-97b409068489","name":"Net Term","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer  ","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/net-terms/{{net_term_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 02:13: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":"4996"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"term\": {\n        \"id\": 8,\n        \"name\": \"50% On Delivery, 50% Net 14\"\n    }\n}"}],"_postman_id":"b93d21c9-7ee3-4615-ae8e-9cf73567773a"}],"id":"3d291462-f572-4f96-b3a6-3f53e8852528","_postman_id":"3d291462-f572-4f96-b3a6-3f53e8852528","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}}},{"name":"Operations","item":[{"name":"Operations","id":"ea21b037-9874-4a77-813f-f31999fed97f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/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":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["v1","operations"],"host":["https://app.apextrading.com/api"],"query":[{"description":{"content":"<p>Number of records to return per page</p>\n","type":"text/plain"},"key":"per_page","value":"15"}],"variable":[]}},"response":[{"id":"0b1da64e-4c04-45a6-9b5a-987f6629f29b","name":"Operations","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"https://app.apextrading.com/api/operations?per_page=15","host":["https://app.apextrading.com/api"],"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:28: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":"4991"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 13,\n            \"name\": \"High Hopes Farm - Cultivation\"\n        },\n        {\n            \"id\": 14,\n            \"name\": \"High Hopes Farm -  Processing\"\n        },\n        {\n            \"id\": 37,\n            \"name\": \"Lab 333\"\n        },\n        {\n            \"id\": 41,\n            \"name\": \"TJ's Gardens - Eugene\"\n        },\n        {\n            \"id\": 42,\n            \"name\": \"Yerba Buena - HIllsboro\"\n        },\n        {\n            \"id\": 43,\n            \"name\": \"Bottom Shelf Budz\"\n        },\n        {\n            \"id\": 46,\n            \"name\": \"Moonlight Farm\"\n        },\n        {\n            \"id\": 56,\n            \"name\": \"12341234\"\n        },\n        {\n            \"id\": 58,\n            \"name\": \"sdf\"\n        },\n        {\n            \"id\": 86,\n            \"name\": \"Test\"\n        },\n        {\n            \"id\": 102,\n            \"name\": \"High Hopes Dispensary\"\n        },\n        {\n            \"id\": 167,\n            \"name\": \"test\"\n        },\n        {\n            \"id\": 203,\n            \"name\": \"Test Location\"\n        },\n        {\n            \"id\": 279,\n            \"name\": \"High Hopes - Med\"\n        }\n    ],\n    \"links\": {\n        \"first\": \"https://demo.apextrading.com/api/v1/operations?page=1\",\n        \"last\": \"https://demo.apextrading.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.apextrading.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.apextrading.com/api/v1/operations\",\n        \"per_page\": 15,\n        \"to\": 14,\n        \"total\": 14\n    },\n    \"status\": \"success\"\n}"}],"_postman_id":"ea21b037-9874-4a77-813f-f31999fed97f"},{"name":"Operations","id":"3487311e-3a15-48b2-82ca-4c096a3b3f77","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/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":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["v1","operations","{{operation_id}}"],"host":["https://app.apextrading.com/api"],"query":[],"variable":[]}},"response":[{"id":"e13b3973-b595-4aea-910e-ce8bfd193bc9","name":"Operations","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/operations/{{operation_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 01:28:38 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\": 13,\n        \"name\": \"High Hopes Farm - Cultivation\"\n    }\n}"}],"_postman_id":"3487311e-3a15-48b2-82ca-4c096a3b3f77"}],"id":"1372f47d-8ffb-413d-9cb9-521ce85d746e","_postman_id":"1372f47d-8ffb-413d-9cb9-521ce85d746e","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}}},{"name":"Package Sizes","item":[{"name":"Package Sizes","id":"8f32a8d5-3769-4e53-bb4d-d4360813eb7b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/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":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["v1","package-sizes"],"host":["https://app.apextrading.com/api"],"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":"04d054fd-ff46-4f5c-ae22-19a1e129f5cc","name":"Package Sizes","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"https://app.apextrading.com/api/package-sizes","host":["https://app.apextrading.com/api"],"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:30: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":"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\": 2,\n            \"name\": \"2 Gram\"\n        },\n        {\n            \"id\": 15,\n            \"name\": \"Per Lb\"\n        },\n        {\n            \"id\": 14,\n            \"name\": \"Per Oz\"\n        },\n        {\n            \"id\": 13,\n            \"name\": \"Per Gram\"\n        },\n        {\n            \"id\": 12,\n            \"name\": \"Per Seed\"\n        },\n        {\n            \"id\": 11,\n            \"name\": \"1 Lb\"\n        },\n        {\n            \"id\": 10,\n            \"name\": \"3/4 Lb\"\n        },\n        {\n            \"id\": 9,\n            \"name\": \"1/2 Lb\"\n        },\n        {\n            \"id\": 8,\n            \"name\": \"1/4 Lb\"\n        },\n        {\n            \"id\": 7,\n            \"name\": \"1 Oz\"\n        },\n        {\n            \"id\": 6,\n            \"name\": \"3/4 Oz\"\n        },\n        {\n            \"id\": 5,\n            \"name\": \"1/2 Oz\"\n        },\n        {\n            \"id\": 4,\n            \"name\": \"1/4 Oz\"\n        },\n        {\n            \"id\": 3,\n            \"name\": \"1/8 Oz\"\n        },\n        {\n            \"id\": 1,\n            \"name\": \"Gram\"\n        }\n    ],\n    \"links\": {\n        \"first\": \"https://demo.apextrading.com/api/v1/package-sizes?page=1\",\n        \"last\": \"https://demo.apextrading.com/api/v1/package-sizes?page=2\",\n        \"prev\": null,\n        \"next\": \"https://demo.apextrading.com/api/v1/package-sizes?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.apextrading.com/api/v1/package-sizes?page=1\",\n                \"label\": \"1\",\n                \"active\": true\n            },\n            {\n                \"url\": \"https://demo.apextrading.com/api/v1/package-sizes?page=2\",\n                \"label\": \"2\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.apextrading.com/api/v1/package-sizes?page=2\",\n                \"label\": \"Next &raquo;\",\n                \"active\": false\n            }\n        ],\n        \"path\": \"https://demo.apextrading.com/api/v1/package-sizes\",\n        \"per_page\": 15,\n        \"to\": 15,\n        \"total\": 17\n    },\n    \"status\": \"success\"\n}"}],"_postman_id":"8f32a8d5-3769-4e53-bb4d-d4360813eb7b"},{"name":"Package Size","id":"90f4e7a3-410f-4d7f-ba09-404941c86d0d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/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":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["v1","package-sizes","{{unit_measurement_id}}"],"host":["https://app.apextrading.com/api"],"query":[],"variable":[]}},"response":[{"id":"e56d4d4b-0ed0-4584-be17-d296f573660b","name":"Package Size","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/package-sizes/{{unit_measurement_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 01:30: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":"4995"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 15,\n        \"name\": \"Per Lb\"\n    }\n}"}],"_postman_id":"90f4e7a3-410f-4d7f-ba09-404941c86d0d"}],"id":"f681a689-dfde-4ee6-b373-d0bd1d987cba","_postman_id":"f681a689-dfde-4ee6-b373-d0bd1d987cba","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}}},{"name":"Products","item":[{"name":"Images","item":[{"name":"Image","id":"a48a4d60-138a-47ff-afcd-dfbe75b524f2","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","src":"xw2gZVEzK/ChatGPT Image May 24, 2025, 08_34_13 PM.png"}]},"url":"https://app.apextrading.com/api/v1/products/{{product_id}}/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":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["v1","products","{{product_id}}","images"],"host":["https://app.apextrading.com/api"],"query":[],"variable":[]}},"response":[{"id":"251dfa60-5309-4d25-a83f-5b79681cc18a","name":"Image","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"image","type":"file","uuid":"26b61182-5c84-4755-a03d-fcbe74d8c2b9","src":"xw2gZVEzK/ChatGPT Image May 24, 2025, 08_34_13 PM.png"}]},"url":"https://app.apextrading.com/api/products/{{product_id}}/images"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 30 May 2025 14:45: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":"4998"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"image\": {\n        \"id\": 1342,\n        \"sort_order\": 1,\n        \"link\": \"https://s3-us-west-2.amazonaws.com/upload-app-demo.apextrading.com/public/companies/13/images/product/2958/1748616347-ChatGPT-Image-May-24-2025-08_34_13-PM_processed.png\",\n        \"created_at\": \"2025-05-30T14:45:49.000000Z\"\n    }\n}"}],"_postman_id":"a48a4d60-138a-47ff-afcd-dfbe75b524f2"},{"name":"Image","id":"abd7dc40-7e4c-43cd-8b07-7c46bca83726","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://app.apextrading.com/api/v1/products/{{product_id}}/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":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["v1","products","{{product_id}}","images","{{product_image_id}}"],"host":["https://app.apextrading.com/api"],"query":[],"variable":[]}},"response":[{"id":"e9c35145-d8f3-410c-9c22-d86dfbf2a733","name":"Image","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://app.apextrading.com/api/products/{{product_id}}/images/{{product_image_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 30 May 2025 14:46:07 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    \"message\": \"Image deleted successfully\"\n}"}],"_postman_id":"abd7dc40-7e4c-43cd-8b07-7c46bca83726"}],"id":"709be485-159a-4e80-b5fe-bb4295f065bf","_postman_id":"709be485-159a-4e80-b5fe-bb4295f065bf","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}}},{"name":"Products","id":"a46fd9c8-ab76-4de9-a374-2de1a1b8c63f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer  ","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/v1/products?updated_at_from=2025-05-03T22:04:50Z&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":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["v1","products"],"host":["https://app.apextrading.com/api"],"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. Instead use this to update product fields and the batch endpoints to update batch fields. </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"},{"disabled":true,"description":{"content":"<p>Number of records to return per page</p>\n","type":"text/plain"},"key":"per_page","value":"15"},{"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</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":[{"id":"049dc9c1-97a0-4b66-9203-d55594318d4c","name":"Products","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer  ","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"https://app.apextrading.com/api/v1/products?updated_at_from=2025-05-03T22:04:50Z&has_available_batches=false&include_sold_out_batches=false","host":["https://app.apextrading.com/api"],"path":["v1","products"],"query":[{"key":"with_batches","value":"false","description":"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. Instead use this to update product fields and the batch endpoints to update batch fields. ","type":"text","disabled":true},{"key":"archived","value":"false","description":"filter by archived products. All returned if no key present","disabled":true},{"key":"ids[]","value":"3","description":"filter by ids","disabled":true},{"key":"brand_id","value":"3","description":"filter by brand id (deprecated)","disabled":true},{"key":"brand_ids[]","value":"3","description":"filter by brand ids","disabled":true},{"key":"product_category_id","value":"3","description":"filter by category id  (deprecated)","disabled":true},{"key":"product_category_ids[]","value":"3","description":"filter by category ids","disabled":true},{"key":"product_type_ids[]","value":"3","description":"filter by product type ids","disabled":true},{"key":"updated_at_to","value":"2025-04-22T22:04:50Z","description":"filter by created before query in UTC","disabled":true},{"key":"created_at_from","value":"2025-04-20T22:04:50Z","description":"filter by updated after query in UTC","disabled":true},{"key":"created_at_to","value":"2025-04-22T22:04:50Z","description":"filter by updated before query in UTC","disabled":true},{"key":"per_page","value":"15","description":"Number of records to return per page","disabled":true},{"key":"updated_at_from","value":"2025-05-03T22:04:50Z","description":"**REQUIRED **"},{"key":"has_available_batches","value":"false","description":"only return products that have batches with inventory"},{"key":"include_sold_out_batches","value":"false","description":"if with_batches flag is set, also return batches that have no inventory or are archived"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 05 Nov 2025 00:16: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":"4996"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"products\": [\n        {\n            \"id\": 74,\n            \"uuid\": \"93064f38-cacc-4fa2-9072-01e53397568c\",\n            \"name\": \"Yerba Flower Test\",\n            \"featured\": false,\n            \"list_to_buyers\": false,\n            \"list_to_clearinghouse\": false,\n            \"description\": null,\n            \"ingredients\": null,\n            \"ingredients_upload\": null,\n            \"brand_id\": null,\n            \"product_sku\": null,\n            \"dutchie_sku\": null,\n            \"product_category_id\": 16,\n            \"product_cultivar_id\": null,\n            \"product_cultivar_type_id\": null,\n            \"product_type_id\": 90,\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            \"units_per_package\": null,\n            \"units_per_case\": null,\n            \"gram_per_preroll\": null,\n            \"lineage\": null,\n            \"feminized\": null,\n            \"germination_rate\": null,\n            \"herm_male_rate\": null,\n            \"yields_per_acre_outdoor\": null,\n            \"per_sq_ft_indoor\": null,\n            \"curing_method\": null,\n            \"extraction_method_id\": null,\n            \"flavor_id\": null,\n            \"unit_size\": null,\n            \"sold_as\": \"Unit\",\n            \"product_infusion_id\": null,\n            \"for_pets\": false,\n            \"archived\": true,\n            \"archived_at\": \"2020-08-31T21:24:06.000000Z\",\n            \"flowering_period_id\": null,\n            \"feminized_type_id\": null,\n            \"product_packaged_unit_size_id\": null,\n            \"predominate_canabinoid_id\": 10,\n            \"for_distributors\": true,\n            \"for_retailers\": true,\n            \"for_wholesalers\": true,\n            \"internal_notes\": null,\n            \"listing_price\": \"1500.00\",\n            \"listing_price_base_unit\": \"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            \"created_at\": \"2020-08-31T19:24:59.000000Z\",\n            \"updated_at\": \"2025-06-04T15:19:03.000000Z\",\n            \"brand\": null,\n            \"category\": {\n                \"id\": 16,\n                \"name\": \"Flower\",\n                \"short_display_name\": \"Flower\",\n                \"long_display_name\": \"Flower – Bulk\"\n            },\n            \"product_type\": {\n                \"id\": 90,\n                \"name\": \"A Bud\",\n                \"product_category_id\": 16,\n                \"company_id\": null\n            },\n            \"cultivar\": null,\n            \"cultivar_type\": null,\n            \"distillate_extract_sub_type\": null,\n            \"crude_extract_sub_type\": null,\n            \"unit_measurement\": {\n                \"name\": \"Pound\",\n                \"alias\": \"Lb\"\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\": null,\n            \"infusion_method\": null,\n            \"predominate_canabinoid\": {\n                \"id\": 10,\n                \"name\": \"Tetrahydrocannabinol\",\n                \"abbreviation\": \"THC\",\n                \"display_name\": \"(THC) Tetrahydrocannabinol\"\n            },\n            \"images\": [],\n            \"government_agencies\": [],\n            \"additives\": [],\n            \"environmental_issues\": []\n        },\n        {\n            \"id\": 94,\n            \"uuid\": \"6bb11d94-78ce-4125-9610-2077434c7101\",\n            \"name\": \"Blackberry Kush\",\n            \"featured\": true,\n            \"list_to_buyers\": true,\n            \"list_to_clearinghouse\": false,\n            \"description\": \"<b><span style=\\\"color: rgb(95, 99, 104); font-family: Roboto, arial, sans-serif; font-size: 14px; white-space: normal;\\\">Blackberry Kush</span><span style=\\\"color: rgb(77, 81, 86); font-family: Roboto, arial, sans-serif; font-size: 14px; white-space: normal;\\\">&nbsp;is an indica dominant cannabis strain that is a mix of Afghani and&nbsp;</span><span style=\\\"color: rgb(95, 99, 104); font-family: Roboto, arial, sans-serif; font-size: 14px; white-space: normal;\\\">Blackberry</span><span style=\\\"color: rgb(77, 81, 86); font-family: Roboto, arial, sans-serif; font-size: 14px; white-space: normal;\\\">&nbsp;strains. Medicinally, it is often used for pain relief.</span></b><br>\",\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            \"ingredients_upload\": null,\n            \"brand_id\": 5,\n            \"product_sku\": \"BBKLR-10PK\",\n            \"dutchie_sku\": null,\n            \"product_category_id\": 7,\n            \"product_cultivar_id\": 545,\n            \"product_cultivar_type_id\": 1,\n            \"product_type_id\": 100,\n            \"product_crude_extract_type_id\": null,\n            \"product_distillate_extract_sub_type_id\": null,\n            \"product_unit_measurement_id\": 14,\n            \"unit_size_unit_measurement_id\": 2,\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\": 29,\n            \"product_trim_method_id\": null,\n            \"units_per_package\": null,\n            \"units_per_case\": null,\n            \"gram_per_preroll\": null,\n            \"lineage\": null,\n            \"feminized\": null,\n            \"germination_rate\": null,\n            \"herm_male_rate\": null,\n            \"yields_per_acre_outdoor\": null,\n            \"per_sq_ft_indoor\": null,\n            \"curing_method\": null,\n            \"extraction_method_id\": null,\n            \"flavor_id\": null,\n            \"unit_size\": 1,\n            \"sold_as\": \"Unit\",\n            \"product_infusion_id\": null,\n            \"for_pets\": false,\n            \"archived\": false,\n            \"archived_at\": \"2025-03-06T15:34:22.000000Z\",\n            \"flowering_period_id\": null,\n            \"feminized_type_id\": null,\n            \"product_packaged_unit_size_id\": null,\n            \"predominate_canabinoid_id\": 10,\n            \"for_distributors\": true,\n            \"for_retailers\": true,\n            \"for_wholesalers\": true,\n            \"internal_notes\": null,\n            \"listing_price\": \"18.00\",\n            \"listing_price_base_unit\": \"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            \"created_at\": \"2020-09-23T04:01:43.000000Z\",\n            \"updated_at\": \"2025-06-23T18:56:58.000000Z\",\n            \"brand\": {\n                \"id\": 5,\n                \"name\": \"Medical Extracts\"\n            },\n            \"category\": {\n                \"id\": 7,\n                \"name\": \"Extract\",\n                \"short_display_name\": \"Extracts\",\n                \"long_display_name\": \"Extracts\"\n            },\n            \"product_type\": {\n                \"id\": 100,\n                \"name\": \"Live Resin\",\n                \"product_category_id\": 7,\n                \"company_id\": null\n            },\n            \"cultivar\": {\n                \"id\": 545,\n                \"name\": \"Blackberry Kush\"\n            },\n            \"cultivar_type\": {\n                \"id\": 1,\n                \"name\": \"Indica\"\n            },\n            \"distillate_extract_sub_type\": null,\n            \"crude_extract_sub_type\": null,\n            \"unit_measurement\": {\n                \"name\": \"Unit\",\n                \"alias\": \"U\"\n            },\n            \"unit_size_unit_measurement\": {\n                \"name\": \"Gram\",\n                \"alias\": \"Gm\"\n            },\n            \"state_of_material\": null,\n            \"grow_environment\": null,\n            \"grow_medium\": null,\n            \"drying_method\": null,\n            \"storage_type\": null,\n            \"container_type\": {\n                \"id\": 29,\n                \"name\": \"Glass Container\"\n            },\n            \"trim_method\": null,\n            \"packaged_unit_size\": null,\n            \"feminized_type\": null,\n            \"flowering_period\": null,\n            \"flavor\": null,\n            \"extraction_method\": null,\n            \"infusion_method\": null,\n            \"predominate_canabinoid\": {\n                \"id\": 10,\n                \"name\": \"Tetrahydrocannabinol\",\n                \"abbreviation\": \"THC\",\n                \"display_name\": \"(THC) Tetrahydrocannabinol\"\n            },\n            \"images\": [\n                {\n                    \"id\": 75,\n                    \"sort_order\": 1,\n                    \"link\": \"https://s3-us-west-2.amazonaws.com/upload-app-demo.apextrading.com/public/companies/13/images/product/94/1600834225-Ultra-Sonja-Live-Diamonds_processed.png\",\n                    \"created_at\": \"2020-09-23T04:10:25.000000Z\"\n                }\n            ],\n            \"government_agencies\": [],\n            \"additives\": [],\n            \"environmental_issues\": []\n        },\n        {\n            \"id\": 263,\n            \"uuid\": \"0307f729-10f6-4bcb-b659-abf99187fab3\",\n            \"name\": \"Doc's OG\",\n            \"featured\": false,\n            \"list_to_buyers\": true,\n            \"list_to_clearinghouse\": false,\n            \"description\": null,\n            \"ingredients\": null,\n            \"ingredients_upload\": null,\n            \"brand_id\": null,\n            \"product_sku\": null,\n            \"dutchie_sku\": null,\n            \"product_category_id\": 14,\n            \"product_cultivar_id\": null,\n            \"product_cultivar_type_id\": 2,\n            \"product_type_id\": 105,\n            \"product_crude_extract_type_id\": null,\n            \"product_distillate_extract_sub_type_id\": null,\n            \"product_unit_measurement_id\": 2,\n            \"unit_size_unit_measurement_id\": 2,\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            \"units_per_package\": null,\n            \"units_per_case\": null,\n            \"gram_per_preroll\": null,\n            \"lineage\": null,\n            \"feminized\": null,\n            \"germination_rate\": null,\n            \"herm_male_rate\": null,\n            \"yields_per_acre_outdoor\": null,\n            \"per_sq_ft_indoor\": null,\n            \"curing_method\": null,\n            \"extraction_method_id\": null,\n            \"flavor_id\": null,\n            \"unit_size\": null,\n            \"sold_as\": \"Unit\",\n            \"product_infusion_id\": null,\n            \"for_pets\": false,\n            \"archived\": true,\n            \"archived_at\": \"2021-06-03T16:40:59.000000Z\",\n            \"flowering_period_id\": null,\n            \"feminized_type_id\": null,\n            \"product_packaged_unit_size_id\": null,\n            \"predominate_canabinoid_id\": 10,\n            \"for_distributors\": true,\n            \"for_retailers\": true,\n            \"for_wholesalers\": true,\n            \"internal_notes\": null,\n            \"listing_price\": \"0.00\",\n            \"listing_price_base_unit\": \"0.00\",\n            \"pto_oneg_listing_price\": \"0.00\",\n            \"pto_twog_listing_price\": \"0.00\",\n            \"pto_eighthoz_listing_price\": \"45.00\",\n            \"pto_quarteroz_listing_price\": \"80.00\",\n            \"pto_halfoz_listing_price\": \"0.00\",\n            \"pto_oneoz_listing_price\": \"200.00\",\n            \"pto_quarterpound_listing_price\": \"0.00\",\n            \"pto_halfpound_listing_price\": \"0.00\",\n            \"pto_onepound_listing_price\": \"0.00\",\n            \"created_at\": \"2021-02-11T21:04:54.000000Z\",\n            \"updated_at\": \"2025-06-04T16:33:27.000000Z\",\n            \"brand\": null,\n            \"category\": {\n                \"id\": 14,\n                \"name\": \"Pack To Order\",\n                \"short_display_name\": \"Pack to Order\",\n                \"long_display_name\": \"Flower – Pack to Order\"\n            },\n            \"product_type\": {\n                \"id\": 105,\n                \"name\": \"A Bud\",\n                \"product_category_id\": 14,\n                \"company_id\": null\n            },\n            \"cultivar\": null,\n            \"cultivar_type\": {\n                \"id\": 2,\n                \"name\": \"Sativa\"\n            },\n            \"distillate_extract_sub_type\": null,\n            \"crude_extract_sub_type\": null,\n            \"unit_measurement\": {\n                \"name\": \"Gram\",\n                \"alias\": \"Gm\"\n            },\n            \"unit_size_unit_measurement\": {\n                \"name\": \"Gram\",\n                \"alias\": \"Gm\"\n            },\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\": null,\n            \"infusion_method\": null,\n            \"predominate_canabinoid\": {\n                \"id\": 10,\n                \"name\": \"Tetrahydrocannabinol\",\n                \"abbreviation\": \"THC\",\n                \"display_name\": \"(THC) Tetrahydrocannabinol\"\n            },\n            \"images\": [],\n            \"government_agencies\": [],\n            \"additives\": [],\n            \"environmental_issues\": []\n        },\n        {\n            \"id\": 2055,\n            \"uuid\": \"929dd48c-2cf5-4d10-ab51-eb705d138e7b\",\n            \"name\": \"1Lemon Haze - Bulk Flower\",\n            \"featured\": true,\n            \"list_to_buyers\": true,\n            \"list_to_clearinghouse\": false,\n            \"description\": \"<p><span style=\\\"color: rgb(51, 51, 51);\\\">Lemon Haze&nbsp;is a&nbsp;</span><a href=\\\"https://www.leafly.com/strains/lists/category/sativa\\\" rel=\\\"noopener noreferrer\\\" target=\\\"_blank\\\" style=\\\"color: var(--color-green);\\\">sativa</a><span style=\\\"color: rgb(51, 51, 51);\\\">&nbsp;marijuana strain that smells and tastes&nbsp;like&nbsp;fresh peeled lemon slices. Lemon Haze is made by crossing&nbsp;</span><a href=\\\"https://www.leafly.com/strains/lemon-skunk\\\" rel=\\\"noopener noreferrer\\\" target=\\\"_blank\\\" style=\\\"color: var(--color-green);\\\">Lemon Skunk</a><span style=\\\"color: rgb(51, 51, 51);\\\">&nbsp;with&nbsp;</span><a href=\\\"https://www.leafly.com/strains/silver-haze\\\" rel=\\\"noopener noreferrer\\\" target=\\\"_blank\\\" style=\\\"color: var(--color-green);\\\">Silver Haze</a><span style=\\\"color: rgb(51, 51, 51);\\\">. Its buds appear to be green and yellow with amber hairs on the trichomes, giving it the yellow tint.&nbsp;</span></p><p><br></p><ul><li>Feelings:</li><li><a href=\\\"https://www.leafly.com/strains/lemon-haze#strain-sensations-section\\\" rel=\\\"noopener noreferrer\\\" target=\\\"_blank\\\" style=\\\"background-color: rgb(255, 255, 255); color: var(--color-green);\\\">Energetic</a></li><li><span style=\\\"color: var(--color-green);\\\">.</span><a href=\\\"https://www.leafly.com/strains/lemon-haze#strain-sensations-section\\\" rel=\\\"noopener noreferrer\\\" target=\\\"_blank\\\" style=\\\"color: var(--color-green);\\\">Talkative</a></li><li><span style=\\\"color: var(--color-green);\\\">.</span><a href=\\\"https://www.leafly.com/strains/lemon-haze#strain-sensations-section\\\" rel=\\\"noopener noreferrer\\\" target=\\\"_blank\\\" style=\\\"color: var(--color-green);\\\">Uplifted</a></li></ul><p><br></p><ul><li>Helps with:</li><li><a href=\\\"https://www.leafly.com/strains/lemon-haze#helps-with-section\\\" rel=\\\"noopener noreferrer\\\" target=\\\"_blank\\\" style=\\\"color: var(--color-green);\\\">Stress</a></li><li><span style=\\\"color: var(--color-green);\\\">.</span><a href=\\\"https://www.leafly.com/strains/lemon-haze#helps-with-section\\\" rel=\\\"noopener noreferrer\\\" target=\\\"_blank\\\" style=\\\"color: var(--color-green);\\\">Depression</a></li><li><span style=\\\"color: var(--color-green);\\\">.</span><a href=\\\"https://www.leafly.com/strains/lemon-haze#helps-with-section\\\" rel=\\\"noopener noreferrer\\\" target=\\\"_blank\\\" style=\\\"color: var(--color-green);\\\">Anxiety</a></li></ul><p><br></p><p><br></p><p><span style=\\\"color: rgb(51, 51, 51);\\\">((STEF'S TRAINING ITEM DO NOT CHANGE))</span></p>\",\n            \"ingredients\": null,\n            \"ingredients_upload\": null,\n            \"brand_id\": 118,\n            \"product_sku\": \"LH-1234\",\n            \"dutchie_sku\": null,\n            \"product_category_id\": 16,\n            \"product_cultivar_id\": 1715,\n            \"product_cultivar_type_id\": 2,\n            \"product_type_id\": 90,\n            \"product_crude_extract_type_id\": null,\n            \"product_distillate_extract_sub_type_id\": null,\n            \"product_unit_measurement_id\": 2,\n            \"unit_size_unit_measurement_id\": null,\n            \"state_of_material_id\": null,\n            \"product_grow_environment_id\": 3,\n            \"product_grow_medium_id\": 9,\n            \"product_drying_method_id\": 6,\n            \"product_storage_type_id\": null,\n            \"product_container_type_id\": null,\n            \"product_trim_method_id\": 5,\n            \"units_per_package\": null,\n            \"units_per_case\": null,\n            \"gram_per_preroll\": null,\n            \"lineage\": null,\n            \"feminized\": null,\n            \"germination_rate\": null,\n            \"herm_male_rate\": null,\n            \"yields_per_acre_outdoor\": null,\n            \"per_sq_ft_indoor\": null,\n            \"curing_method\": null,\n            \"extraction_method_id\": null,\n            \"flavor_id\": null,\n            \"unit_size\": null,\n            \"sold_as\": \"Unit\",\n            \"product_infusion_id\": null,\n            \"for_pets\": false,\n            \"archived\": false,\n            \"archived_at\": null,\n            \"flowering_period_id\": null,\n            \"feminized_type_id\": null,\n            \"product_packaged_unit_size_id\": null,\n            \"predominate_canabinoid_id\": 10,\n            \"for_distributors\": true,\n            \"for_retailers\": true,\n            \"for_wholesalers\": true,\n            \"internal_notes\": null,\n            \"listing_price\": \"6.00\",\n            \"listing_price_base_unit\": \"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            \"created_at\": \"2024-04-17T16:47:16.000000Z\",\n            \"updated_at\": \"2025-09-11T16:11:17.000000Z\",\n            \"brand\": {\n                \"id\": 118,\n                \"name\": \"CannaCrate Cultivation\"\n            },\n            \"category\": {\n                \"id\": 16,\n                \"name\": \"Flower\",\n                \"short_display_name\": \"Flower\",\n                \"long_display_name\": \"Flower – Bulk\"\n            },\n            \"product_type\": {\n                \"id\": 90,\n                \"name\": \"A Bud\",\n                \"product_category_id\": 16,\n                \"company_id\": null\n            },\n            \"cultivar\": {\n                \"id\": 1715,\n                \"name\": \"Lemon Skunk\"\n            },\n            \"cultivar_type\": {\n                \"id\": 2,\n                \"name\": \"Sativa\"\n            },\n            \"distillate_extract_sub_type\": null,\n            \"crude_extract_sub_type\": null,\n            \"unit_measurement\": {\n                \"name\": \"Gram\",\n                \"alias\": \"Gm\"\n            },\n            \"unit_size_unit_measurement\": null,\n            \"state_of_material\": null,\n            \"grow_environment\": {\n                \"id\": 3,\n                \"name\": \"Greenhouse\"\n            },\n            \"grow_medium\": {\n                \"id\": 9,\n                \"name\": \"Living Soil Organic\"\n            },\n            \"drying_method\": {\n                \"id\": 6,\n                \"name\": \"Humidity & Temp Controlled Room\"\n            },\n            \"storage_type\": null,\n            \"container_type\": null,\n            \"trim_method\": {\n                \"id\": 5,\n                \"name\": \"Machine - EZTrim\"\n            },\n            \"packaged_unit_size\": null,\n            \"feminized_type\": null,\n            \"flowering_period\": null,\n            \"flavor\": null,\n            \"extraction_method\": null,\n            \"infusion_method\": null,\n            \"predominate_canabinoid\": {\n                \"id\": 10,\n                \"name\": \"Tetrahydrocannabinol\",\n                \"abbreviation\": \"THC\",\n                \"display_name\": \"(THC) Tetrahydrocannabinol\"\n            },\n            \"images\": [\n                {\n                    \"id\": 1089,\n                    \"sort_order\": 1,\n                    \"link\": \"https://s3-us-west-2.amazonaws.com/upload-app-demo.apextrading.com/public/companies/13/images/product/2055/1713378116-appreciated_processed.png\",\n                    \"created_at\": \"2024-04-17T18:21:57.000000Z\"\n                },\n                {\n                    \"id\": 1090,\n                    \"sort_order\": 2,\n                    \"link\": \"https://s3-us-west-2.amazonaws.com/upload-app-demo.apextrading.com/public/companies/13/images/product/2055/1713378117-appreciated-2_processed.png\",\n                    \"created_at\": \"2024-04-17T18:21:57.000000Z\"\n                },\n                {\n                    \"id\": 1091,\n                    \"sort_order\": 3,\n                    \"link\": \"https://s3-us-west-2.amazonaws.com/upload-app-demo.apextrading.com/public/companies/13/images/product/2055/1713378117-appreciated-1_processed.png\",\n                    \"created_at\": \"2024-04-17T18:21:58.000000Z\"\n                },\n                {\n                    \"id\": 1088,\n                    \"sort_order\": 4,\n                    \"link\": \"https://s3-us-west-2.amazonaws.com/upload-app-demo.apextrading.com/public/companies/13/images/product/2055/1713372436-LH_processed.png\",\n                    \"created_at\": \"2024-04-17T16:47:17.000000Z\"\n                },\n                {\n                    \"id\": 1092,\n                    \"sort_order\": 5,\n                    \"link\": \"https://s3-us-west-2.amazonaws.com/upload-app-demo.apextrading.com/public/companies/13/images/product/2055/1713378118-THC-Design-Super-Lemon-Haze-Main-Image_processed.jpg\",\n                    \"created_at\": \"2024-04-17T18:21:59.000000Z\"\n                }\n            ],\n            \"government_agencies\": [],\n            \"additives\": [],\n            \"environmental_issues\": []\n        },\n        {\n            \"id\": 2197,\n            \"uuid\": \"7fce39e0-41c9-4a35-b076-da57e4297db3\",\n            \"name\": \"1Lemon Haze - 1/8 Prepack\",\n            \"featured\": true,\n            \"list_to_buyers\": false,\n            \"list_to_clearinghouse\": false,\n            \"description\": \"<p><span style=\\\"color: rgb(51, 51, 51);\\\">Lemon Haze&nbsp;is a&nbsp;</span><a href=\\\"https://www.leafly.com/strains/lists/category/sativa\\\" rel=\\\"noopener noreferrer\\\" target=\\\"_blank\\\" style=\\\"color: var(--color-green);\\\">sativa</a><span style=\\\"color: rgb(51, 51, 51);\\\">&nbsp;marijuana strain that smells and tastes&nbsp;like&nbsp;fresh peeled lemon slices. Lemon Haze is made by crossing&nbsp;</span><a href=\\\"https://www.leafly.com/strains/lemon-skunk\\\" rel=\\\"noopener noreferrer\\\" target=\\\"_blank\\\" style=\\\"color: var(--color-green);\\\">Lemon Skunk</a><span style=\\\"color: rgb(51, 51, 51);\\\">&nbsp;with&nbsp;</span><a href=\\\"https://www.leafly.com/strains/silver-haze\\\" rel=\\\"noopener noreferrer\\\" target=\\\"_blank\\\" style=\\\"color: var(--color-green);\\\">Silver Haze</a><span style=\\\"color: rgb(51, 51, 51);\\\">. Its buds appear to be green and yellow with amber hairs on the trichomes, giving it the yellow tint.&nbsp;</span></p><p><br></p>\",\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            \"ingredients_upload\": null,\n            \"brand_id\": 118,\n            \"product_sku\": null,\n            \"dutchie_sku\": null,\n            \"product_category_id\": 2,\n            \"product_cultivar_id\": null,\n            \"product_cultivar_type_id\": 2,\n            \"product_type_id\": 109,\n            \"product_crude_extract_type_id\": null,\n            \"product_distillate_extract_sub_type_id\": null,\n            \"product_unit_measurement_id\": 14,\n            \"unit_size_unit_measurement_id\": null,\n            \"state_of_material_id\": null,\n            \"product_grow_environment_id\": 2,\n            \"product_grow_medium_id\": 7,\n            \"product_drying_method_id\": 6,\n            \"product_storage_type_id\": 2,\n            \"product_container_type_id\": null,\n            \"product_trim_method_id\": 2,\n            \"units_per_package\": null,\n            \"units_per_case\": 32,\n            \"gram_per_preroll\": null,\n            \"lineage\": null,\n            \"feminized\": null,\n            \"germination_rate\": null,\n            \"herm_male_rate\": null,\n            \"yields_per_acre_outdoor\": null,\n            \"per_sq_ft_indoor\": null,\n            \"curing_method\": null,\n            \"extraction_method_id\": null,\n            \"flavor_id\": null,\n            \"unit_size\": null,\n            \"sold_as\": \"Case\",\n            \"product_infusion_id\": null,\n            \"for_pets\": false,\n            \"archived\": true,\n            \"archived_at\": \"2025-05-08T17:39:39.000000Z\",\n            \"flowering_period_id\": null,\n            \"feminized_type_id\": null,\n            \"product_packaged_unit_size_id\": 3,\n            \"predominate_canabinoid_id\": 10,\n            \"for_distributors\": true,\n            \"for_retailers\": true,\n            \"for_wholesalers\": true,\n            \"internal_notes\": null,\n            \"listing_price\": \"350.00\",\n            \"listing_price_base_unit\": \"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            \"created_at\": \"2025-03-06T16:03:09.000000Z\",\n            \"updated_at\": \"2025-05-30T14:44:39.000000Z\",\n            \"brand\": {\n                \"id\": 118,\n                \"name\": \"CannaCrate Cultivation\"\n            },\n            \"category\": {\n                \"id\": 2,\n                \"name\": \"Prepack\",\n                \"short_display_name\": \"Prepack\",\n                \"long_display_name\": \"Flower – Prepackaged\"\n            },\n            \"product_type\": {\n                \"id\": 109,\n                \"name\": \"A Bud\",\n                \"product_category_id\": 2,\n                \"company_id\": null\n            },\n            \"cultivar\": null,\n            \"cultivar_type\": {\n                \"id\": 2,\n                \"name\": \"Sativa\"\n            },\n            \"distillate_extract_sub_type\": null,\n            \"crude_extract_sub_type\": null,\n            \"unit_measurement\": {\n                \"name\": \"Unit\",\n                \"alias\": \"U\"\n            },\n            \"unit_size_unit_measurement\": null,\n            \"state_of_material\": null,\n            \"grow_environment\": {\n                \"id\": 2,\n                \"name\": \"Hybrid Indoor\"\n            },\n            \"grow_medium\": {\n                \"id\": 7,\n                \"name\": \"Organic Soil\"\n            },\n            \"drying_method\": {\n                \"id\": 6,\n                \"name\": \"Humidity & Temp Controlled Room\"\n            },\n            \"storage_type\": {\n                \"id\": 2,\n                \"name\": \"Humidity/Temp Controlled Room\"\n            },\n            \"container_type\": null,\n            \"trim_method\": {\n                \"id\": 2,\n                \"name\": \"Hand\"\n            },\n            \"packaged_unit_size\": {\n                \"id\": 3,\n                \"name\": \"1/8 Oz\"\n            },\n            \"feminized_type\": null,\n            \"flowering_period\": null,\n            \"flavor\": null,\n            \"extraction_method\": null,\n            \"infusion_method\": null,\n            \"predominate_canabinoid\": {\n                \"id\": 10,\n                \"name\": \"Tetrahydrocannabinol\",\n                \"abbreviation\": \"THC\",\n                \"display_name\": \"(THC) Tetrahydrocannabinol\"\n            },\n            \"images\": [\n                {\n                    \"id\": 1263,\n                    \"sort_order\": 1,\n                    \"link\": \"https://s3-us-west-2.amazonaws.com/upload-app-demo.apextrading.com/public/companies/13/images/product/2197/1741276989-Screenshot-2025-03-06-at-10.02.52_processed.png\",\n                    \"created_at\": \"2025-03-06T16:03:10.000000Z\"\n                }\n            ],\n            \"government_agencies\": [],\n            \"additives\": [],\n            \"environmental_issues\": []\n        },\n        {\n            \"id\": 2198,\n            \"uuid\": \"597ea4dd-7b69-414c-ac3b-83aebefae985\",\n            \"name\": \"Blue Dream - Pack To Order\",\n            \"featured\": true,\n            \"list_to_buyers\": true,\n            \"list_to_clearinghouse\": false,\n            \"description\": \"<p>Blue Dream is a sativa-dominant hybrid strain comprising around 60% sativa and 40% indica. Blue Dream is one of the most popular varieties of cannabis. It is a favorite among novice and veteran cannabis consumers due to its pleasant, sweet berries, sometimes peppery flavor, and manageable effects.</p>\",\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            \"ingredients_upload\": null,\n            \"brand_id\": 118,\n            \"product_sku\": null,\n            \"dutchie_sku\": null,\n            \"product_category_id\": 14,\n            \"product_cultivar_id\": null,\n            \"product_cultivar_type_id\": 5,\n            \"product_type_id\": 122,\n            \"product_crude_extract_type_id\": null,\n            \"product_distillate_extract_sub_type_id\": null,\n            \"product_unit_measurement_id\": 2,\n            \"unit_size_unit_measurement_id\": 2,\n            \"state_of_material_id\": null,\n            \"product_grow_environment_id\": 2,\n            \"product_grow_medium_id\": 7,\n            \"product_drying_method_id\": 6,\n            \"product_storage_type_id\": 2,\n            \"product_container_type_id\": null,\n            \"product_trim_method_id\": 2,\n            \"units_per_package\": null,\n            \"units_per_case\": null,\n            \"gram_per_preroll\": null,\n            \"lineage\": null,\n            \"feminized\": null,\n            \"germination_rate\": null,\n            \"herm_male_rate\": null,\n            \"yields_per_acre_outdoor\": null,\n            \"per_sq_ft_indoor\": null,\n            \"curing_method\": null,\n            \"extraction_method_id\": null,\n            \"flavor_id\": null,\n            \"unit_size\": null,\n            \"sold_as\": \"Unit\",\n            \"product_infusion_id\": null,\n            \"for_pets\": false,\n            \"archived\": false,\n            \"archived_at\": null,\n            \"flowering_period_id\": null,\n            \"feminized_type_id\": null,\n            \"product_packaged_unit_size_id\": null,\n            \"predominate_canabinoid_id\": 10,\n            \"for_distributors\": true,\n            \"for_retailers\": true,\n            \"for_wholesalers\": true,\n            \"internal_notes\": null,\n            \"listing_price\": \"0.00\",\n            \"listing_price_base_unit\": \"0.00\",\n            \"pto_oneg_listing_price\": \"0.00\",\n            \"pto_twog_listing_price\": \"0.00\",\n            \"pto_eighthoz_listing_price\": \"23.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\": \"2800.00\",\n            \"created_at\": \"2025-03-06T16:13:20.000000Z\",\n            \"updated_at\": \"2025-10-20T19:00:50.000000Z\",\n            \"brand\": {\n                \"id\": 118,\n                \"name\": \"CannaCrate Cultivation\"\n            },\n            \"category\": {\n                \"id\": 14,\n                \"name\": \"Pack To Order\",\n                \"short_display_name\": \"Pack to Order\",\n                \"long_display_name\": \"Flower – Pack to Order\"\n            },\n            \"product_type\": {\n                \"id\": 122,\n                \"name\": \"A Bud\",\n                \"product_category_id\": 14,\n                \"company_id\": null\n            },\n            \"cultivar\": null,\n            \"cultivar_type\": {\n                \"id\": 5,\n                \"name\": \"Sativa Dom. Hybrid\"\n            },\n            \"distillate_extract_sub_type\": null,\n            \"crude_extract_sub_type\": null,\n            \"unit_measurement\": {\n                \"name\": \"Gram\",\n                \"alias\": \"Gm\"\n            },\n            \"unit_size_unit_measurement\": {\n                \"name\": \"Gram\",\n                \"alias\": \"Gm\"\n            },\n            \"state_of_material\": null,\n            \"grow_environment\": {\n                \"id\": 2,\n                \"name\": \"Hybrid Indoor\"\n            },\n            \"grow_medium\": {\n                \"id\": 7,\n                \"name\": \"Organic Soil\"\n            },\n            \"drying_method\": {\n                \"id\": 6,\n                \"name\": \"Humidity & Temp Controlled Room\"\n            },\n            \"storage_type\": {\n                \"id\": 2,\n                \"name\": \"Humidity/Temp Controlled Room\"\n            },\n            \"container_type\": null,\n            \"trim_method\": {\n                \"id\": 2,\n                \"name\": \"Hand\"\n            },\n            \"packaged_unit_size\": null,\n            \"feminized_type\": null,\n            \"flowering_period\": null,\n            \"flavor\": null,\n            \"extraction_method\": null,\n            \"infusion_method\": null,\n            \"predominate_canabinoid\": {\n                \"id\": 10,\n                \"name\": \"Tetrahydrocannabinol\",\n                \"abbreviation\": \"THC\",\n                \"display_name\": \"(THC) Tetrahydrocannabinol\"\n            },\n            \"images\": [\n                {\n                    \"id\": 1264,\n                    \"sort_order\": 1,\n                    \"link\": \"https://s3-us-west-2.amazonaws.com/upload-app-demo.apextrading.com/public/companies/13/images/product/2198/1741277600-Screenshot-2025-03-06-at-10.12.59_processed.png\",\n                    \"created_at\": \"2025-03-06T16:13:21.000000Z\"\n                }\n            ],\n            \"government_agencies\": [],\n            \"additives\": [],\n            \"environmental_issues\": []\n        },\n        {\n            \"id\": 2199,\n            \"uuid\": \"af2c0ec2-72c2-46e2-8b12-95334cbc243e\",\n            \"name\": \"Strawberry Cough -1g Single Preroll\",\n            \"featured\": false,\n            \"list_to_buyers\": true,\n            \"list_to_clearinghouse\": false,\n            \"description\": \"<p>Known for its sweet smell of fresh strawberries and an expanding sensation that can make even the most seasoned consumer cough, Strawberry Cough is a potent sativa marijuana strain with mysterious genetic origins. However, Strawberry Cough is thought to be a cross of Haze and Strawberry Fields. The skunky, berry flavors will capture your senses while the cerebral, uplifting effects provide an aura of euphoria that is sure to leave a smile on your face. Strawberry Cough is a great solution in times of elevated stress.&nbsp;</p>\",\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            \"ingredients_upload\": null,\n            \"brand_id\": 118,\n            \"product_sku\": null,\n            \"dutchie_sku\": null,\n            \"product_category_id\": 3,\n            \"product_cultivar_id\": null,\n            \"product_cultivar_type_id\": 2,\n            \"product_type_id\": 65,\n            \"product_crude_extract_type_id\": null,\n            \"product_distillate_extract_sub_type_id\": null,\n            \"product_unit_measurement_id\": 14,\n            \"unit_size_unit_measurement_id\": null,\n            \"state_of_material_id\": null,\n            \"product_grow_environment_id\": 2,\n            \"product_grow_medium_id\": 7,\n            \"product_drying_method_id\": 6,\n            \"product_storage_type_id\": 2,\n            \"product_container_type_id\": null,\n            \"product_trim_method_id\": 2,\n            \"units_per_package\": 1,\n            \"units_per_case\": null,\n            \"gram_per_preroll\": 0.5,\n            \"lineage\": null,\n            \"feminized\": null,\n            \"germination_rate\": null,\n            \"herm_male_rate\": null,\n            \"yields_per_acre_outdoor\": null,\n            \"per_sq_ft_indoor\": null,\n            \"curing_method\": null,\n            \"extraction_method_id\": null,\n            \"flavor_id\": null,\n            \"unit_size\": null,\n            \"sold_as\": \"Unit\",\n            \"product_infusion_id\": null,\n            \"for_pets\": false,\n            \"archived\": false,\n            \"archived_at\": null,\n            \"flowering_period_id\": null,\n            \"feminized_type_id\": null,\n            \"product_packaged_unit_size_id\": null,\n            \"predominate_canabinoid_id\": 10,\n            \"for_distributors\": true,\n            \"for_retailers\": true,\n            \"for_wholesalers\": true,\n            \"internal_notes\": null,\n            \"listing_price\": \"6.00\",\n            \"listing_price_base_unit\": \"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            \"created_at\": \"2025-03-06T16:40:24.000000Z\",\n            \"updated_at\": \"2025-09-23T21:13:00.000000Z\",\n            \"brand\": {\n                \"id\": 118,\n                \"name\": \"CannaCrate Cultivation\"\n            },\n            \"category\": {\n                \"id\": 3,\n                \"name\": \"Preroll\",\n                \"short_display_name\": \"Prerolls\",\n                \"long_display_name\": \"Prerolls\"\n            },\n            \"product_type\": {\n                \"id\": 65,\n                \"name\": \"Whole Flower\",\n                \"product_category_id\": 3,\n                \"company_id\": null\n            },\n            \"cultivar\": null,\n            \"cultivar_type\": {\n                \"id\": 2,\n                \"name\": \"Sativa\"\n            },\n            \"distillate_extract_sub_type\": null,\n            \"crude_extract_sub_type\": null,\n            \"unit_measurement\": {\n                \"name\": \"Unit\",\n                \"alias\": \"U\"\n            },\n            \"unit_size_unit_measurement\": null,\n            \"state_of_material\": null,\n            \"grow_environment\": {\n                \"id\": 2,\n                \"name\": \"Hybrid Indoor\"\n            },\n            \"grow_medium\": {\n                \"id\": 7,\n                \"name\": \"Organic Soil\"\n            },\n            \"drying_method\": {\n                \"id\": 6,\n                \"name\": \"Humidity & Temp Controlled Room\"\n            },\n            \"storage_type\": {\n                \"id\": 2,\n                \"name\": \"Humidity/Temp Controlled Room\"\n            },\n            \"container_type\": null,\n            \"trim_method\": {\n                \"id\": 2,\n                \"name\": \"Hand\"\n            },\n            \"packaged_unit_size\": null,\n            \"feminized_type\": null,\n            \"flowering_period\": null,\n            \"flavor\": null,\n            \"extraction_method\": null,\n            \"infusion_method\": null,\n            \"predominate_canabinoid\": {\n                \"id\": 10,\n                \"name\": \"Tetrahydrocannabinol\",\n                \"abbreviation\": \"THC\",\n                \"display_name\": \"(THC) Tetrahydrocannabinol\"\n            },\n            \"images\": [\n                {\n                    \"id\": 1265,\n                    \"sort_order\": 1,\n                    \"link\": \"https://s3-us-west-2.amazonaws.com/upload-app-demo.apextrading.com/public/companies/13/images/product/2199/1741279224-Screenshot-2025-03-06-at-10.40.06_processed.png\",\n                    \"created_at\": \"2025-03-06T16:40:26.000000Z\"\n                }\n            ],\n            \"government_agencies\": [],\n            \"additives\": [],\n            \"environmental_issues\": []\n        },\n        {\n            \"id\": 2200,\n            \"uuid\": \"39cf2ae4-fe0a-4224-bd3d-3c61682f4e94\",\n            \"name\": \"Strawberry Cough - Dogwalkers (.5g/4pck)\",\n            \"featured\": true,\n            \"list_to_buyers\": true,\n            \"list_to_clearinghouse\": false,\n            \"description\": \"<p><span style=\\\"color: rgb(51, 65, 85);\\\">Known for its sweet smell of fresh strawberries and an expanding sensation that can make even the most seasoned consumer cough, Strawberry Cough is a potent sativa marijuana strain with mysterious genetic origins. However, Strawberry Cough is thought to be a cross of Haze and Strawberry Fields. The skunky, berry flavors will capture your senses while the cerebral, uplifting effects provide an aura of euphoria that is sure to leave a smile on your face. Strawberry Cough is a great solution in times of elevated stress.&nbsp;</span></p>\",\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            \"ingredients_upload\": null,\n            \"brand_id\": 118,\n            \"product_sku\": null,\n            \"dutchie_sku\": null,\n            \"product_category_id\": 3,\n            \"product_cultivar_id\": null,\n            \"product_cultivar_type_id\": 2,\n            \"product_type_id\": 65,\n            \"product_crude_extract_type_id\": null,\n            \"product_distillate_extract_sub_type_id\": null,\n            \"product_unit_measurement_id\": 14,\n            \"unit_size_unit_measurement_id\": null,\n            \"state_of_material_id\": null,\n            \"product_grow_environment_id\": 2,\n            \"product_grow_medium_id\": 7,\n            \"product_drying_method_id\": 6,\n            \"product_storage_type_id\": 2,\n            \"product_container_type_id\": null,\n            \"product_trim_method_id\": 2,\n            \"units_per_package\": 4,\n            \"units_per_case\": null,\n            \"gram_per_preroll\": 0.5,\n            \"lineage\": null,\n            \"feminized\": null,\n            \"germination_rate\": null,\n            \"herm_male_rate\": null,\n            \"yields_per_acre_outdoor\": null,\n            \"per_sq_ft_indoor\": null,\n            \"curing_method\": null,\n            \"extraction_method_id\": null,\n            \"flavor_id\": null,\n            \"unit_size\": null,\n            \"sold_as\": \"Unit\",\n            \"product_infusion_id\": null,\n            \"for_pets\": false,\n            \"archived\": false,\n            \"archived_at\": null,\n            \"flowering_period_id\": null,\n            \"feminized_type_id\": null,\n            \"product_packaged_unit_size_id\": null,\n            \"predominate_canabinoid_id\": 10,\n            \"for_distributors\": true,\n            \"for_retailers\": true,\n            \"for_wholesalers\": true,\n            \"internal_notes\": null,\n            \"listing_price\": \"15.00\",\n            \"listing_price_base_unit\": \"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            \"created_at\": \"2025-03-06T16:51:52.000000Z\",\n            \"updated_at\": \"2025-05-27T19:08:31.000000Z\",\n            \"brand\": {\n                \"id\": 118,\n                \"name\": \"CannaCrate Cultivation\"\n            },\n            \"category\": {\n                \"id\": 3,\n                \"name\": \"Preroll\",\n                \"short_display_name\": \"Prerolls\",\n                \"long_display_name\": \"Prerolls\"\n            },\n            \"product_type\": {\n                \"id\": 65,\n                \"name\": \"Whole Flower\",\n                \"product_category_id\": 3,\n                \"company_id\": null\n            },\n            \"cultivar\": null,\n            \"cultivar_type\": {\n                \"id\": 2,\n                \"name\": \"Sativa\"\n            },\n            \"distillate_extract_sub_type\": null,\n            \"crude_extract_sub_type\": null,\n            \"unit_measurement\": {\n                \"name\": \"Unit\",\n                \"alias\": \"U\"\n            },\n            \"unit_size_unit_measurement\": null,\n            \"state_of_material\": null,\n            \"grow_environment\": {\n                \"id\": 2,\n                \"name\": \"Hybrid Indoor\"\n            },\n            \"grow_medium\": {\n                \"id\": 7,\n                \"name\": \"Organic Soil\"\n            },\n            \"drying_method\": {\n                \"id\": 6,\n                \"name\": \"Humidity & Temp Controlled Room\"\n            },\n            \"storage_type\": {\n                \"id\": 2,\n                \"name\": \"Humidity/Temp Controlled Room\"\n            },\n            \"container_type\": null,\n            \"trim_method\": {\n                \"id\": 2,\n                \"name\": \"Hand\"\n            },\n            \"packaged_unit_size\": null,\n            \"feminized_type\": null,\n            \"flowering_period\": null,\n            \"flavor\": null,\n            \"extraction_method\": null,\n            \"infusion_method\": null,\n            \"predominate_canabinoid\": {\n                \"id\": 10,\n                \"name\": \"Tetrahydrocannabinol\",\n                \"abbreviation\": \"THC\",\n                \"display_name\": \"(THC) Tetrahydrocannabinol\"\n            },\n            \"images\": [\n                {\n                    \"id\": 1382,\n                    \"sort_order\": 1,\n                    \"link\": \"https://s3-us-west-2.amazonaws.com/upload-app-demo.apextrading.com/public/companies/13/images/product/2200/1756335932-1741279912-Screenshot-2025-03-06-at-10.51.42_processed_processed.png\",\n                    \"created_at\": \"2025-08-27T23:05:34.000000Z\"\n                }\n            ],\n            \"government_agencies\": [],\n            \"additives\": [],\n            \"environmental_issues\": []\n        },\n        {\n            \"id\": 2201,\n            \"uuid\": \"c081e07a-9ba2-4f59-9485-4bda4171a350\",\n            \"name\": \"Strawberry Cough -1g Case\",\n            \"featured\": true,\n            \"list_to_buyers\": true,\n            \"list_to_clearinghouse\": false,\n            \"description\": \"<p><span style=\\\"color: rgb(51, 65, 85);\\\">Known for its sweet smell of fresh strawberries and an expanding sensation that can make even the most seasoned consumer cough, Strawberry Cough is a potent sativa marijuana strain with mysterious genetic origins. However, Strawberry Cough is thought to be a cross of Haze and Strawberry Fields. The skunky, berry flavors will capture your senses while the cerebral, uplifting effects provide an aura of euphoria that is sure to leave a smile on your face. Strawberry Cough is a great solution in times of elevated stress.&nbsp;</span></p>\",\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            \"ingredients_upload\": null,\n            \"brand_id\": 118,\n            \"product_sku\": null,\n            \"dutchie_sku\": null,\n            \"product_category_id\": 3,\n            \"product_cultivar_id\": 2537,\n            \"product_cultivar_type_id\": 2,\n            \"product_type_id\": 65,\n            \"product_crude_extract_type_id\": null,\n            \"product_distillate_extract_sub_type_id\": null,\n            \"product_unit_measurement_id\": 14,\n            \"unit_size_unit_measurement_id\": null,\n            \"state_of_material_id\": null,\n            \"product_grow_environment_id\": 2,\n            \"product_grow_medium_id\": 7,\n            \"product_drying_method_id\": 6,\n            \"product_storage_type_id\": 2,\n            \"product_container_type_id\": 16,\n            \"product_trim_method_id\": 2,\n            \"units_per_package\": 6,\n            \"units_per_case\": 100,\n            \"gram_per_preroll\": 1,\n            \"lineage\": null,\n            \"feminized\": null,\n            \"germination_rate\": null,\n            \"herm_male_rate\": null,\n            \"yields_per_acre_outdoor\": null,\n            \"per_sq_ft_indoor\": null,\n            \"curing_method\": null,\n            \"extraction_method_id\": null,\n            \"flavor_id\": null,\n            \"unit_size\": null,\n            \"sold_as\": \"Case\",\n            \"product_infusion_id\": null,\n            \"for_pets\": false,\n            \"archived\": false,\n            \"archived_at\": null,\n            \"flowering_period_id\": null,\n            \"feminized_type_id\": null,\n            \"product_packaged_unit_size_id\": null,\n            \"predominate_canabinoid_id\": 10,\n            \"for_distributors\": true,\n            \"for_retailers\": true,\n            \"for_wholesalers\": true,\n            \"internal_notes\": null,\n            \"listing_price\": \"300.00\",\n            \"listing_price_base_unit\": \"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            \"created_at\": \"2025-03-06T16:53:40.000000Z\",\n            \"updated_at\": \"2025-10-21T18:14:15.000000Z\",\n            \"brand\": {\n                \"id\": 118,\n                \"name\": \"CannaCrate Cultivation\"\n            },\n            \"category\": {\n                \"id\": 3,\n                \"name\": \"Preroll\",\n                \"short_display_name\": \"Prerolls\",\n                \"long_display_name\": \"Prerolls\"\n            },\n            \"product_type\": {\n                \"id\": 65,\n                \"name\": \"Whole Flower\",\n                \"product_category_id\": 3,\n                \"company_id\": null\n            },\n            \"cultivar\": {\n                \"id\": 2537,\n                \"name\": \"Strawberry Cough\"\n            },\n            \"cultivar_type\": {\n                \"id\": 2,\n                \"name\": \"Sativa\"\n            },\n            \"distillate_extract_sub_type\": null,\n            \"crude_extract_sub_type\": null,\n            \"unit_measurement\": {\n                \"name\": \"Unit\",\n                \"alias\": \"U\"\n            },\n            \"unit_size_unit_measurement\": null,\n            \"state_of_material\": null,\n            \"grow_environment\": {\n                \"id\": 2,\n                \"name\": \"Hybrid Indoor\"\n            },\n            \"grow_medium\": {\n                \"id\": 7,\n                \"name\": \"Organic Soil\"\n            },\n            \"drying_method\": {\n                \"id\": 6,\n                \"name\": \"Humidity & Temp Controlled Room\"\n            },\n            \"storage_type\": {\n                \"id\": 2,\n                \"name\": \"Humidity/Temp Controlled Room\"\n            },\n            \"container_type\": {\n                \"id\": 16,\n                \"name\": \"Carton\"\n            },\n            \"trim_method\": {\n                \"id\": 2,\n                \"name\": \"Hand\"\n            },\n            \"packaged_unit_size\": null,\n            \"feminized_type\": null,\n            \"flowering_period\": null,\n            \"flavor\": null,\n            \"extraction_method\": null,\n            \"infusion_method\": null,\n            \"predominate_canabinoid\": {\n                \"id\": 10,\n                \"name\": \"Tetrahydrocannabinol\",\n                \"abbreviation\": \"THC\",\n                \"display_name\": \"(THC) Tetrahydrocannabinol\"\n            },\n            \"images\": [\n                {\n                    \"id\": 1267,\n                    \"sort_order\": 1,\n                    \"link\": \"https://s3-us-west-2.amazonaws.com/upload-app-demo.apextrading.com/public/companies/13/images/product/2199/1741279224-Screenshot-2025-03-06-at-10.40.06_processed.png\",\n                    \"created_at\": \"2025-03-06T16:53:40.000000Z\"\n                }\n            ],\n            \"government_agencies\": [],\n            \"additives\": [],\n            \"environmental_issues\": []\n        },\n        {\n            \"id\": 2203,\n            \"uuid\": \"4a52285b-b058-4c4c-87ae-3bab5e726534\",\n            \"name\": \"Gorilla Glue - .5g Cart\",\n            \"featured\": true,\n            \"list_to_buyers\": true,\n            \"list_to_clearinghouse\": false,\n            \"description\": \"<p>Original Glue is a hybrid weed strain made from a genetic cross between Chem’s Sister, Sour Dubb, and Chocolate Diesel. This strain is 37% sativa and 63% indica. Also known as “GG4”, Original Glue is a potent strain that delivers heavy-handed euphoria and relaxation, leaving you feeling “glued” to the couch. Its chunky, resin-covered buds fill the room with pungent earthy and sour aromas inherited from its parent strains. Original Glue is 20% THC, making this strain an ideal choice for experienced cannabis consumers. Customers tell us Original Glue effects include feeling relaxed, sleepy, and hungry. Medical marijuana patients often choose Original Glue when dealing with symptoms associated with stress, anxiety, and pain.&nbsp;</p>\",\n            \"ingredients\": null,\n            \"ingredients_upload\": null,\n            \"brand_id\": 4,\n            \"product_sku\": null,\n            \"dutchie_sku\": null,\n            \"product_category_id\": 8,\n            \"product_cultivar_id\": 1289,\n            \"product_cultivar_type_id\": 3,\n            \"product_type_id\": 72,\n            \"product_crude_extract_type_id\": null,\n            \"product_distillate_extract_sub_type_id\": null,\n            \"product_unit_measurement_id\": 14,\n            \"unit_size_unit_measurement_id\": 2,\n            \"state_of_material_id\": null,\n            \"product_grow_environment_id\": 2,\n            \"product_grow_medium_id\": 7,\n            \"product_drying_method_id\": 6,\n            \"product_storage_type_id\": 2,\n            \"product_container_type_id\": null,\n            \"product_trim_method_id\": 2,\n            \"units_per_package\": null,\n            \"units_per_case\": 24,\n            \"gram_per_preroll\": null,\n            \"lineage\": null,\n            \"feminized\": null,\n            \"germination_rate\": null,\n            \"herm_male_rate\": null,\n            \"yields_per_acre_outdoor\": null,\n            \"per_sq_ft_indoor\": null,\n            \"curing_method\": null,\n            \"extraction_method_id\": 4,\n            \"flavor_id\": null,\n            \"unit_size\": 0.5,\n            \"sold_as\": \"Case\",\n            \"product_infusion_id\": null,\n            \"for_pets\": false,\n            \"archived\": false,\n            \"archived_at\": null,\n            \"flowering_period_id\": null,\n            \"feminized_type_id\": null,\n            \"product_packaged_unit_size_id\": null,\n            \"predominate_canabinoid_id\": 10,\n            \"for_distributors\": true,\n            \"for_retailers\": true,\n            \"for_wholesalers\": true,\n            \"internal_notes\": null,\n            \"listing_price\": \"250.00\",\n            \"listing_price_base_unit\": \"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            \"created_at\": \"2025-03-06T17:09:12.000000Z\",\n            \"updated_at\": \"2025-09-18T16:50:30.000000Z\",\n            \"brand\": {\n                \"id\": 4,\n                \"name\": \"High Hopes Farm\"\n            },\n            \"category\": {\n                \"id\": 8,\n                \"name\": \"Cartridge\",\n                \"short_display_name\": \"Cartridges\",\n                \"long_display_name\": \"Cartridges\"\n            },\n            \"product_type\": {\n                \"id\": 72,\n                \"name\": \"Distillate Disposable\",\n                \"product_category_id\": 8,\n                \"company_id\": null\n            },\n            \"cultivar\": {\n                \"id\": 1289,\n                \"name\": \"Gorilla Glue\"\n            },\n            \"cultivar_type\": {\n                \"id\": 3,\n                \"name\": \"Hybrid\"\n            },\n            \"distillate_extract_sub_type\": null,\n            \"crude_extract_sub_type\": null,\n            \"unit_measurement\": {\n                \"name\": \"Unit\",\n                \"alias\": \"U\"\n            },\n            \"unit_size_unit_measurement\": {\n                \"name\": \"Gram\",\n                \"alias\": \"Gm\"\n            },\n            \"state_of_material\": null,\n            \"grow_environment\": {\n                \"id\": 2,\n                \"name\": \"Hybrid Indoor\"\n            },\n            \"grow_medium\": {\n                \"id\": 7,\n                \"name\": \"Organic Soil\"\n            },\n            \"drying_method\": {\n                \"id\": 6,\n                \"name\": \"Humidity & Temp Controlled Room\"\n            },\n            \"storage_type\": {\n                \"id\": 2,\n                \"name\": \"Humidity/Temp Controlled Room\"\n            },\n            \"container_type\": null,\n            \"trim_method\": {\n                \"id\": 2,\n                \"name\": \"Hand\"\n            },\n            \"packaged_unit_size\": null,\n            \"feminized_type\": null,\n            \"flowering_period\": null,\n            \"flavor\": null,\n            \"extraction_method\": {\n                \"id\": 4,\n                \"name\": \"CO2\"\n            },\n            \"infusion_method\": null,\n            \"predominate_canabinoid\": {\n                \"id\": 10,\n                \"name\": \"Tetrahydrocannabinol\",\n                \"abbreviation\": \"THC\",\n                \"display_name\": \"(THC) Tetrahydrocannabinol\"\n            },\n            \"images\": [\n                {\n                    \"id\": 1270,\n                    \"sort_order\": 1,\n                    \"link\": \"https://s3-us-west-2.amazonaws.com/upload-app-demo.apextrading.com/public/companies/13/images/product/2202/1741280831-Screenshot-2025-03-06-at-11.04.29_processed.png\",\n                    \"created_at\": \"2025-03-06T17:09:12.000000Z\"\n                }\n            ],\n            \"government_agencies\": [],\n            \"additives\": [],\n            \"environmental_issues\": []\n        },\n        {\n            \"id\": 2205,\n            \"uuid\": \"0af60667-56c5-4f51-93d3-96190e1ca9a4\",\n            \"name\": \"Tropicana Gummies - 100mg (Case of 50)\",\n            \"featured\": true,\n            \"list_to_buyers\": true,\n            \"list_to_clearinghouse\": false,\n            \"description\": \"<p>Fun fruity flavors abound in the wide variety of THC-infused gummies available today. Get THC-CBD combined hybrid, or stick with a pure indica or sativa gummy. Order weed gummies for pickup, delivery, or get them shipped directly to you.</p><p><br></p>\",\n            \"ingredients\": \"sugar, gelatin, water, flavorings, colorings, and sometimes citric acid for a sour taste\",\n            \"ingredients_upload\": null,\n            \"brand_id\": 6,\n            \"product_sku\": null,\n            \"dutchie_sku\": null,\n            \"product_category_id\": 11,\n            \"product_cultivar_id\": null,\n            \"product_cultivar_type_id\": null,\n            \"product_type_id\": 30,\n            \"product_crude_extract_type_id\": null,\n            \"product_distillate_extract_sub_type_id\": null,\n            \"product_unit_measurement_id\": 14,\n            \"unit_size_unit_measurement_id\": 1,\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            \"units_per_package\": 10,\n            \"units_per_case\": 50,\n            \"gram_per_preroll\": null,\n            \"lineage\": null,\n            \"feminized\": null,\n            \"germination_rate\": null,\n            \"herm_male_rate\": null,\n            \"yields_per_acre_outdoor\": null,\n            \"per_sq_ft_indoor\": null,\n            \"curing_method\": null,\n            \"extraction_method_id\": null,\n            \"flavor_id\": null,\n            \"unit_size\": 10,\n            \"sold_as\": \"Case\",\n            \"product_infusion_id\": 1,\n            \"for_pets\": false,\n            \"archived\": false,\n            \"archived_at\": null,\n            \"flowering_period_id\": null,\n            \"feminized_type_id\": null,\n            \"product_packaged_unit_size_id\": null,\n            \"predominate_canabinoid_id\": 10,\n            \"for_distributors\": true,\n            \"for_retailers\": true,\n            \"for_wholesalers\": true,\n            \"internal_notes\": null,\n            \"listing_price\": \"400.00\",\n            \"listing_price_base_unit\": \"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            \"created_at\": \"2025-03-06T17:49:59.000000Z\",\n            \"updated_at\": \"2025-10-29T18:35:18.000000Z\",\n            \"brand\": {\n                \"id\": 6,\n                \"name\": \"CannaLab\"\n            },\n            \"category\": {\n                \"id\": 11,\n                \"name\": \"Edibles & Drink\",\n                \"short_display_name\": \"Edibles & Drinks\",\n                \"long_display_name\": \"Edibles & Drinks\"\n            },\n            \"product_type\": {\n                \"id\": 30,\n                \"name\": \"Gummies\",\n                \"product_category_id\": 11,\n                \"company_id\": null\n            },\n            \"cultivar\": null,\n            \"cultivar_type\": null,\n            \"distillate_extract_sub_type\": null,\n            \"crude_extract_sub_type\": null,\n            \"unit_measurement\": {\n                \"name\": \"Unit\",\n                \"alias\": \"U\"\n            },\n            \"unit_size_unit_measurement\": {\n                \"name\": \"Milligram\",\n                \"alias\": \"Mg\"\n            },\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\": null,\n            \"infusion_method\": {\n                \"id\": 1,\n                \"name\": \"Oil\"\n            },\n            \"predominate_canabinoid\": {\n                \"id\": 10,\n                \"name\": \"Tetrahydrocannabinol\",\n                \"abbreviation\": \"THC\",\n                \"display_name\": \"(THC) Tetrahydrocannabinol\"\n            },\n            \"images\": [\n                {\n                    \"id\": 1273,\n                    \"sort_order\": 1,\n                    \"link\": \"https://s3-us-west-2.amazonaws.com/upload-app-demo.apextrading.com/public/companies/13/images/product/2205/1741283399-Screenshot-2025-03-06-at-11.47.29_processed.png\",\n                    \"created_at\": \"2025-03-06T17:50:01.000000Z\"\n                }\n            ],\n            \"government_agencies\": [],\n            \"additives\": [],\n            \"environmental_issues\": []\n        },\n        {\n            \"id\": 2206,\n            \"uuid\": \"411191f1-48fa-4902-b58f-0e0bd2fcb458\",\n            \"name\": \"Calming Lavender - 50mg (8fl oz)\",\n            \"featured\": true,\n            \"list_to_buyers\": true,\n            \"list_to_clearinghouse\": false,\n            \"description\": \"<p>Relax and rejuvenate with our Lavender THC Infused Lotion, a luxurious blend of calming lavender essential oil and high-quality THC extract. Designed to soothe the body and mind, this lotion helps alleviate muscle tension, reduces stress, and provides deep hydration for all skin types. Perfect for post-workout recovery or winding down after a long day.</p><p><br></p><p>Key Features:</p><p>\\t•\\t50mg THC per bottle for soothing relief</p><p>\\t•\\tCalming lavender scent to promote relaxation</p><p>\\t•\\tHydrating formula for smooth, soft skin</p><p>\\t•\\tIdeal for targeted relief and relaxation</p><p><br></p><p>Experience the ultimate combination of relaxation and skin care with every application!</p>\",\n            \"ingredients\": \"water, emollients (oils and butters), humectants (like glycerin), emulsifiers, and preservatives\",\n            \"ingredients_upload\": null,\n            \"brand_id\": 118,\n            \"product_sku\": null,\n            \"dutchie_sku\": null,\n            \"product_category_id\": 15,\n            \"product_cultivar_id\": null,\n            \"product_cultivar_type_id\": null,\n            \"product_type_id\": 9,\n            \"product_crude_extract_type_id\": null,\n            \"product_distillate_extract_sub_type_id\": null,\n            \"product_unit_measurement_id\": 14,\n            \"unit_size_unit_measurement_id\": 10,\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            \"units_per_package\": 1,\n            \"units_per_case\": null,\n            \"gram_per_preroll\": null,\n            \"lineage\": null,\n            \"feminized\": null,\n            \"germination_rate\": null,\n            \"herm_male_rate\": null,\n            \"yields_per_acre_outdoor\": null,\n            \"per_sq_ft_indoor\": null,\n            \"curing_method\": null,\n            \"extraction_method_id\": null,\n            \"flavor_id\": null,\n            \"unit_size\": 8,\n            \"sold_as\": \"Unit\",\n            \"product_infusion_id\": null,\n            \"for_pets\": false,\n            \"archived\": false,\n            \"archived_at\": null,\n            \"flowering_period_id\": null,\n            \"feminized_type_id\": null,\n            \"product_packaged_unit_size_id\": null,\n            \"predominate_canabinoid_id\": 10,\n            \"for_distributors\": true,\n            \"for_retailers\": true,\n            \"for_wholesalers\": true,\n            \"internal_notes\": null,\n            \"listing_price\": \"27.00\",\n            \"listing_price_base_unit\": \"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            \"created_at\": \"2025-03-07T01:08:54.000000Z\",\n            \"updated_at\": \"2025-10-15T17:16:53.000000Z\",\n            \"brand\": {\n                \"id\": 118,\n                \"name\": \"CannaCrate Cultivation\"\n            },\n            \"category\": {\n                \"id\": 15,\n                \"name\": \"Topicals & Wellness\",\n                \"short_display_name\": \"Topicals & Wellness\",\n                \"long_display_name\": \"Topicals & Wellness\"\n            },\n            \"product_type\": {\n                \"id\": 9,\n                \"name\": \"Lotion\",\n                \"product_category_id\": 15,\n                \"company_id\": null\n            },\n            \"cultivar\": null,\n            \"cultivar_type\": null,\n            \"distillate_extract_sub_type\": null,\n            \"crude_extract_sub_type\": null,\n            \"unit_measurement\": {\n                \"name\": \"Unit\",\n                \"alias\": \"U\"\n            },\n            \"unit_size_unit_measurement\": {\n                \"name\": \"US Fluid Ounce\",\n                \"alias\": \"FOZ\"\n            },\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\": null,\n            \"infusion_method\": null,\n            \"predominate_canabinoid\": {\n                \"id\": 10,\n                \"name\": \"Tetrahydrocannabinol\",\n                \"abbreviation\": \"THC\",\n                \"display_name\": \"(THC) Tetrahydrocannabinol\"\n            },\n            \"images\": [\n                {\n                    \"id\": 1274,\n                    \"sort_order\": 1,\n                    \"link\": \"https://s3-us-west-2.amazonaws.com/upload-app-demo.apextrading.com/public/companies/13/images/product/2206/1741309734-Screenshot-2025-03-06-at-19.07.54_processed.png\",\n                    \"created_at\": \"2025-03-07T01:08:55.000000Z\"\n                }\n            ],\n            \"government_agencies\": [],\n            \"additives\": [],\n            \"environmental_issues\": []\n        },\n        {\n            \"id\": 2207,\n            \"uuid\": \"7b4fb930-262c-46cc-8362-fe118169324c\",\n            \"name\": \"Sleeptime Tincture - 100mg (.75fl oz)\",\n            \"featured\": false,\n            \"list_to_buyers\": true,\n            \"list_to_clearinghouse\": false,\n            \"description\": \"<p>Drift into a peaceful, restful sleep with our Sleepytime Tincture, crafted to help you unwind and relax after a long day. This calming blend of high-quality THC and soothing herbs like chamomile and valerian root promotes relaxation, reduces stress, and supports a natural sleep cycle. Simply add a few drops under your tongue before bed and let the restful effects take over.</p><p><br></p><p>Key Features:</p><p>\\t•\\t100mg THC per dose for relaxation and stress relief</p><p>\\t•\\tInfused with natural herbs like chamomile, valerian root, and lavender</p><p>\\t•\\tPromotes deeper, more restful sleep</p><p>\\t•\\tFast-acting, easy-to-use tincture for nightly use</p><p><br></p><p>Say goodbye to sleepless nights and hello to sweet dreams with Sleepytime Tincture!</p>\",\n            \"ingredients\": null,\n            \"ingredients_upload\": null,\n            \"brand_id\": 118,\n            \"product_sku\": null,\n            \"dutchie_sku\": null,\n            \"product_category_id\": 12,\n            \"product_cultivar_id\": null,\n            \"product_cultivar_type_id\": 1,\n            \"product_type_id\": 32,\n            \"product_crude_extract_type_id\": null,\n            \"product_distillate_extract_sub_type_id\": null,\n            \"product_unit_measurement_id\": 14,\n            \"unit_size_unit_measurement_id\": 10,\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            \"units_per_package\": null,\n            \"units_per_case\": null,\n            \"gram_per_preroll\": null,\n            \"lineage\": null,\n            \"feminized\": null,\n            \"germination_rate\": null,\n            \"herm_male_rate\": null,\n            \"yields_per_acre_outdoor\": null,\n            \"per_sq_ft_indoor\": null,\n            \"curing_method\": null,\n            \"extraction_method_id\": null,\n            \"flavor_id\": null,\n            \"unit_size\": 0.75,\n            \"sold_as\": \"Unit\",\n            \"product_infusion_id\": null,\n            \"for_pets\": false,\n            \"archived\": false,\n            \"archived_at\": null,\n            \"flowering_period_id\": null,\n            \"feminized_type_id\": null,\n            \"product_packaged_unit_size_id\": null,\n            \"predominate_canabinoid_id\": 10,\n            \"for_distributors\": true,\n            \"for_retailers\": true,\n            \"for_wholesalers\": true,\n            \"internal_notes\": null,\n            \"listing_price\": \"12.00\",\n            \"listing_price_base_unit\": \"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            \"created_at\": \"2025-03-07T01:31:15.000000Z\",\n            \"updated_at\": \"2025-05-05T18:54:49.000000Z\",\n            \"brand\": {\n                \"id\": 118,\n                \"name\": \"CannaCrate Cultivation\"\n            },\n            \"category\": {\n                \"id\": 12,\n                \"name\": \"Tincture\",\n                \"short_display_name\": \"Tinctures\",\n                \"long_display_name\": \"Tinctures\"\n            },\n            \"product_type\": {\n                \"id\": 32,\n                \"name\": \"Full Spectrum\",\n                \"product_category_id\": 12,\n                \"company_id\": null\n            },\n            \"cultivar\": null,\n            \"cultivar_type\": {\n                \"id\": 1,\n                \"name\": \"Indica\"\n            },\n            \"distillate_extract_sub_type\": null,\n            \"crude_extract_sub_type\": null,\n            \"unit_measurement\": {\n                \"name\": \"Unit\",\n                \"alias\": \"U\"\n            },\n            \"unit_size_unit_measurement\": {\n                \"name\": \"US Fluid Ounce\",\n                \"alias\": \"FOZ\"\n            },\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\": null,\n            \"infusion_method\": null,\n            \"predominate_canabinoid\": {\n                \"id\": 10,\n                \"name\": \"Tetrahydrocannabinol\",\n                \"abbreviation\": \"THC\",\n                \"display_name\": \"(THC) Tetrahydrocannabinol\"\n            },\n            \"images\": [\n                {\n                    \"id\": 1275,\n                    \"sort_order\": 1,\n                    \"link\": \"https://s3-us-west-2.amazonaws.com/upload-app-demo.apextrading.com/public/companies/13/images/product/2207/1741311075-Screenshot-2025-03-06-at-19.31.00_processed.png\",\n                    \"created_at\": \"2025-03-07T01:31:16.000000Z\"\n                }\n            ],\n            \"government_agencies\": [],\n            \"additives\": [],\n            \"environmental_issues\": []\n        },\n        {\n            \"id\": 2208,\n            \"uuid\": \"284d9703-9b6b-4175-8384-3faf783a3947\",\n            \"name\": \"Sour Diesel Seeds - 6 Feminized Seeds\",\n            \"featured\": false,\n            \"list_to_buyers\": false,\n            \"list_to_clearinghouse\": false,\n            \"description\": \"<p>Sour Diesel is a sativa-dominant strain known for its pungent, diesel-like aroma and energizing, uplifting effects. Often favored for daytime use, it provides a cerebral high that boosts creativity and focus, while also helping to alleviate stress and anxiety. Its energizing effects make it a popular choice for those looking to stay active and engaged throughout the day.</p>\",\n            \"ingredients\": null,\n            \"ingredients_upload\": null,\n            \"brand_id\": 118,\n            \"product_sku\": null,\n            \"dutchie_sku\": null,\n            \"product_category_id\": 4,\n            \"product_cultivar_id\": 2461,\n            \"product_cultivar_type_id\": 2,\n            \"product_type_id\": null,\n            \"product_crude_extract_type_id\": null,\n            \"product_distillate_extract_sub_type_id\": null,\n            \"product_unit_measurement_id\": 14,\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            \"units_per_package\": null,\n            \"units_per_case\": null,\n            \"gram_per_preroll\": null,\n            \"lineage\": null,\n            \"feminized\": true,\n            \"germination_rate\": null,\n            \"herm_male_rate\": null,\n            \"yields_per_acre_outdoor\": null,\n            \"per_sq_ft_indoor\": \"63.8\",\n            \"curing_method\": null,\n            \"extraction_method_id\": null,\n            \"flavor_id\": null,\n            \"unit_size\": null,\n            \"sold_as\": \"Unit\",\n            \"product_infusion_id\": null,\n            \"for_pets\": false,\n            \"archived\": false,\n            \"archived_at\": null,\n            \"flowering_period_id\": 1,\n            \"feminized_type_id\": 1,\n            \"product_packaged_unit_size_id\": null,\n            \"predominate_canabinoid_id\": 10,\n            \"for_distributors\": true,\n            \"for_retailers\": true,\n            \"for_wholesalers\": true,\n            \"internal_notes\": null,\n            \"listing_price\": \"60.00\",\n            \"listing_price_base_unit\": \"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            \"created_at\": \"2025-03-07T01:55:22.000000Z\",\n            \"updated_at\": \"2025-07-14T21:58:00.000000Z\",\n            \"brand\": {\n                \"id\": 118,\n                \"name\": \"CannaCrate Cultivation\"\n            },\n            \"category\": {\n                \"id\": 4,\n                \"name\": \"Seed\",\n                \"short_display_name\": \"Seeds\",\n                \"long_display_name\": \"Seeds\"\n            },\n            \"product_type\": null,\n            \"cultivar\": {\n                \"id\": 2461,\n                \"name\": \"Sour Diesel\"\n            },\n            \"cultivar_type\": {\n                \"id\": 2,\n                \"name\": \"Sativa\"\n            },\n            \"distillate_extract_sub_type\": null,\n            \"crude_extract_sub_type\": null,\n            \"unit_measurement\": {\n                \"name\": \"Unit\",\n                \"alias\": \"U\"\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\": {\n                \"id\": 1,\n                \"name\": \"Colloidal silver\"\n            },\n            \"flowering_period\": {\n                \"id\": 1,\n                \"name\": \"60 days\"\n            },\n            \"flavor\": null,\n            \"extraction_method\": null,\n            \"infusion_method\": null,\n            \"predominate_canabinoid\": {\n                \"id\": 10,\n                \"name\": \"Tetrahydrocannabinol\",\n                \"abbreviation\": \"THC\",\n                \"display_name\": \"(THC) Tetrahydrocannabinol\"\n            },\n            \"images\": [\n                {\n                    \"id\": 1277,\n                    \"sort_order\": 1,\n                    \"link\": \"https://s3-us-west-2.amazonaws.com/upload-app-demo.apextrading.com/public/companies/13/images/product/2208/1741312595-Screenshot-2025-03-06-at-19.55.07_processed.png\",\n                    \"created_at\": \"2025-03-07T01:56:37.000000Z\"\n                }\n            ],\n            \"government_agencies\": [],\n            \"additives\": [],\n            \"environmental_issues\": []\n        },\n        {\n            \"id\": 2209,\n            \"uuid\": \"f0a1324c-db81-4443-a8dd-da8cb31fc2d5\",\n            \"name\": \"Blue Dream Trim\",\n            \"featured\": true,\n            \"list_to_buyers\": true,\n            \"list_to_clearinghouse\": false,\n            \"description\": \"<p>Blue Dream is a balanced hybrid known for its sweet berry aroma and uplifting effects. It provides a perfect mix of euphoria and relaxation, making it ideal for daytime use. With its calming body high and creative, focused head high, Blue Dream is often used to alleviate stress, depression, and pain while maintaining mental clarity.</p>\",\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            \"ingredients_upload\": null,\n            \"brand_id\": 118,\n            \"product_sku\": null,\n            \"dutchie_sku\": null,\n            \"product_category_id\": 1,\n            \"product_cultivar_id\": null,\n            \"product_cultivar_type_id\": 3,\n            \"product_type_id\": 97,\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\": 2,\n            \"product_grow_medium_id\": 7,\n            \"product_drying_method_id\": 6,\n            \"product_storage_type_id\": 2,\n            \"product_container_type_id\": null,\n            \"product_trim_method_id\": 2,\n            \"units_per_package\": null,\n            \"units_per_case\": null,\n            \"gram_per_preroll\": null,\n            \"lineage\": null,\n            \"feminized\": null,\n            \"germination_rate\": null,\n            \"herm_male_rate\": null,\n            \"yields_per_acre_outdoor\": null,\n            \"per_sq_ft_indoor\": null,\n            \"curing_method\": null,\n            \"extraction_method_id\": null,\n            \"flavor_id\": null,\n            \"unit_size\": null,\n            \"sold_as\": \"Unit\",\n            \"product_infusion_id\": null,\n            \"for_pets\": false,\n            \"archived\": false,\n            \"archived_at\": null,\n            \"flowering_period_id\": null,\n            \"feminized_type_id\": null,\n            \"product_packaged_unit_size_id\": null,\n            \"predominate_canabinoid_id\": 10,\n            \"for_distributors\": true,\n            \"for_retailers\": true,\n            \"for_wholesalers\": true,\n            \"internal_notes\": null,\n            \"listing_price\": \"500.00\",\n            \"listing_price_base_unit\": \"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            \"created_at\": \"2025-03-07T02:08:47.000000Z\",\n            \"updated_at\": \"2025-08-06T17:42:06.000000Z\",\n            \"brand\": {\n                \"id\": 118,\n                \"name\": \"CannaCrate Cultivation\"\n            },\n            \"category\": {\n                \"id\": 1,\n                \"name\": \"Plant Material\",\n                \"short_display_name\": \"Plant Material\",\n                \"long_display_name\": \"Plant Material\"\n            },\n            \"product_type\": {\n                \"id\": 97,\n                \"name\": \"Trim\",\n                \"product_category_id\": 1,\n                \"company_id\": null\n            },\n            \"cultivar\": null,\n            \"cultivar_type\": {\n                \"id\": 3,\n                \"name\": \"Hybrid\"\n            },\n            \"distillate_extract_sub_type\": null,\n            \"crude_extract_sub_type\": null,\n            \"unit_measurement\": {\n                \"name\": \"Pound\",\n                \"alias\": \"Lb\"\n            },\n            \"unit_size_unit_measurement\": null,\n            \"state_of_material\": null,\n            \"grow_environment\": {\n                \"id\": 2,\n                \"name\": \"Hybrid Indoor\"\n            },\n            \"grow_medium\": {\n                \"id\": 7,\n                \"name\": \"Organic Soil\"\n            },\n            \"drying_method\": {\n                \"id\": 6,\n                \"name\": \"Humidity & Temp Controlled Room\"\n            },\n            \"storage_type\": {\n                \"id\": 2,\n                \"name\": \"Humidity/Temp Controlled Room\"\n            },\n            \"container_type\": null,\n            \"trim_method\": {\n                \"id\": 2,\n                \"name\": \"Hand\"\n            },\n            \"packaged_unit_size\": null,\n            \"feminized_type\": null,\n            \"flowering_period\": null,\n            \"flavor\": null,\n            \"extraction_method\": null,\n            \"infusion_method\": null,\n            \"predominate_canabinoid\": {\n                \"id\": 10,\n                \"name\": \"Tetrahydrocannabinol\",\n                \"abbreviation\": \"THC\",\n                \"display_name\": \"(THC) Tetrahydrocannabinol\"\n            },\n            \"images\": [\n                {\n                    \"id\": 1278,\n                    \"sort_order\": 1,\n                    \"link\": \"https://s3-us-west-2.amazonaws.com/upload-app-demo.apextrading.com/public/companies/13/images/product/2209/1741313327-Screenshot-2025-03-06-at-20.08.36_processed.png\",\n                    \"created_at\": \"2025-03-07T02:08:49.000000Z\"\n                }\n            ],\n            \"government_agencies\": [],\n            \"additives\": [],\n            \"environmental_issues\": []\n        }\n    ],\n    \"links\": {\n        \"first\": \"https://demo.apextrading.com/api/v1/products?updated_at_from=2025-05-03T22%3A04%3A50Z&has_available_batches=false&include_sold_out_batches=false&page=1\",\n        \"last\": \"https://demo.apextrading.com/api/v1/products?updated_at_from=2025-05-03T22%3A04%3A50Z&has_available_batches=false&include_sold_out_batches=false&page=3\",\n        \"prev\": null,\n        \"next\": \"https://demo.apextrading.com/api/v1/products?updated_at_from=2025-05-03T22%3A04%3A50Z&has_available_batches=false&include_sold_out_batches=false&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.apextrading.com/api/v1/products?updated_at_from=2025-05-03T22%3A04%3A50Z&has_available_batches=false&include_sold_out_batches=false&page=1\",\n                \"label\": \"1\",\n                \"active\": true\n            },\n            {\n                \"url\": \"https://demo.apextrading.com/api/v1/products?updated_at_from=2025-05-03T22%3A04%3A50Z&has_available_batches=false&include_sold_out_batches=false&page=2\",\n                \"label\": \"2\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.apextrading.com/api/v1/products?updated_at_from=2025-05-03T22%3A04%3A50Z&has_available_batches=false&include_sold_out_batches=false&page=3\",\n                \"label\": \"3\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.apextrading.com/api/v1/products?updated_at_from=2025-05-03T22%3A04%3A50Z&has_available_batches=false&include_sold_out_batches=false&page=2\",\n                \"label\": \"Next &raquo;\",\n                \"active\": false\n            }\n        ],\n        \"path\": \"https://demo.apextrading.com/api/v1/products\",\n        \"per_page\": 15,\n        \"to\": 15,\n        \"total\": 40\n    }\n}"}],"_postman_id":"a46fd9c8-ab76-4de9-a374-2de1a1b8c63f"},{"name":"Product","id":"18b36fdf-c63c-4b73-9650-acfad7c64a21","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer  ","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/v1/products/{{product_id}}","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":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["v1","products","{{product_id}}"],"host":["https://app.apextrading.com/api"],"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":[{"id":"423db3d6-f077-47b5-a87a-224ac0b3b98a","name":"Product","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer  ","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"https://app.apextrading.com/api/v1/products/{{product_id}}","host":["https://app.apextrading.com/api"],"path":["v1","products","{{product_id}}"],"query":[{"key":"with_batches","value":"false","description":"include batches in response (requires batch permission on key)","type":"text","disabled":true},{"key":"with_metrc","value":"false","description":"include metrc labs and tabs","type":"text","disabled":true},{"key":"with_history","value":"false","description":"include product history","type":"text","disabled":true},{"key":"has_available_batches","value":"false","description":"only return products that have batches with inventory that are not archived","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Date","value":"Wed, 05 Nov 2025 00:18: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    \"product\": {\n        \"id\": 2200,\n        \"uuid\": \"39cf2ae4-fe0a-4224-bd3d-3c61682f4e94\",\n        \"name\": \"Strawberry Cough - Dogwalkers (.5g/4pck)\",\n        \"featured\": true,\n        \"list_to_buyers\": true,\n        \"list_to_clearinghouse\": false,\n        \"description\": \"<p><span style=\\\"color: rgb(51, 65, 85);\\\">Known for its sweet smell of fresh strawberries and an expanding sensation that can make even the most seasoned consumer cough, Strawberry Cough is a potent sativa marijuana strain with mysterious genetic origins. However, Strawberry Cough is thought to be a cross of Haze and Strawberry Fields. The skunky, berry flavors will capture your senses while the cerebral, uplifting effects provide an aura of euphoria that is sure to leave a smile on your face. Strawberry Cough is a great solution in times of elevated stress.&nbsp;</span></p>\",\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        \"ingredients_upload\": null,\n        \"brand_id\": 118,\n        \"product_sku\": null,\n        \"dutchie_sku\": null,\n        \"product_category_id\": 3,\n        \"product_cultivar_id\": null,\n        \"product_cultivar_type_id\": 2,\n        \"product_type_id\": 65,\n        \"product_crude_extract_type_id\": null,\n        \"product_distillate_extract_sub_type_id\": null,\n        \"product_unit_measurement_id\": 14,\n        \"unit_size_unit_measurement_id\": null,\n        \"state_of_material_id\": null,\n        \"product_grow_environment_id\": 2,\n        \"product_grow_medium_id\": 7,\n        \"product_drying_method_id\": 6,\n        \"product_storage_type_id\": 2,\n        \"product_container_type_id\": null,\n        \"product_trim_method_id\": 2,\n        \"units_per_package\": 4,\n        \"units_per_case\": null,\n        \"gram_per_preroll\": 0.5,\n        \"lineage\": null,\n        \"feminized\": null,\n        \"germination_rate\": null,\n        \"herm_male_rate\": null,\n        \"yields_per_acre_outdoor\": null,\n        \"per_sq_ft_indoor\": null,\n        \"curing_method\": null,\n        \"extraction_method_id\": null,\n        \"flavor_id\": null,\n        \"unit_size\": null,\n        \"sold_as\": \"Unit\",\n        \"product_infusion_id\": null,\n        \"for_pets\": false,\n        \"archived\": false,\n        \"archived_at\": null,\n        \"flowering_period_id\": null,\n        \"feminized_type_id\": null,\n        \"product_packaged_unit_size_id\": null,\n        \"predominate_canabinoid_id\": 10,\n        \"for_distributors\": true,\n        \"for_retailers\": true,\n        \"for_wholesalers\": true,\n        \"internal_notes\": null,\n        \"listing_price\": \"15.00\",\n        \"listing_price_base_unit\": \"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        \"created_at\": \"2025-03-06T16:51:52.000000Z\",\n        \"updated_at\": \"2025-05-27T19:08:31.000000Z\",\n        \"brand\": {\n            \"id\": 118,\n            \"name\": \"CannaCrate Cultivation\"\n        },\n        \"category\": {\n            \"id\": 3,\n            \"name\": \"Preroll\",\n            \"short_display_name\": \"Prerolls\",\n            \"long_display_name\": \"Prerolls\"\n        },\n        \"product_type\": {\n            \"id\": 65,\n            \"name\": \"Whole Flower\",\n            \"product_category_id\": 3,\n            \"company_id\": null\n        },\n        \"cultivar\": null,\n        \"cultivar_type\": {\n            \"id\": 2,\n            \"name\": \"Sativa\"\n        },\n        \"distillate_extract_sub_type\": null,\n        \"crude_extract_sub_type\": null,\n        \"unit_measurement\": {\n            \"name\": \"Unit\",\n            \"alias\": \"U\"\n        },\n        \"unit_size_unit_measurement\": null,\n        \"state_of_material\": null,\n        \"grow_environment\": {\n            \"id\": 2,\n            \"name\": \"Hybrid Indoor\"\n        },\n        \"grow_medium\": {\n            \"id\": 7,\n            \"name\": \"Organic Soil\"\n        },\n        \"drying_method\": {\n            \"id\": 6,\n            \"name\": \"Humidity & Temp Controlled Room\"\n        },\n        \"storage_type\": {\n            \"id\": 2,\n            \"name\": \"Humidity/Temp Controlled Room\"\n        },\n        \"container_type\": null,\n        \"trim_method\": {\n            \"id\": 2,\n            \"name\": \"Hand\"\n        },\n        \"packaged_unit_size\": null,\n        \"feminized_type\": null,\n        \"flowering_period\": null,\n        \"flavor\": null,\n        \"extraction_method\": null,\n        \"infusion_method\": null,\n        \"predominate_canabinoid\": {\n            \"id\": 10,\n            \"name\": \"Tetrahydrocannabinol\",\n            \"abbreviation\": \"THC\",\n            \"display_name\": \"(THC) Tetrahydrocannabinol\"\n        },\n        \"images\": [\n            {\n                \"id\": 1382,\n                \"sort_order\": 1,\n                \"link\": \"https://s3-us-west-2.amazonaws.com/upload-app-demo.apextrading.com/public/companies/13/images/product/2200/1756335932-1741279912-Screenshot-2025-03-06-at-10.51.42_processed_processed.png\",\n                \"created_at\": \"2025-08-27T23:05:34.000000Z\"\n            }\n        ],\n        \"government_agencies\": [],\n        \"additives\": [],\n        \"environmental_issues\": []\n    }\n}"}],"_postman_id":"18b36fdf-c63c-4b73-9650-acfad7c64a21"},{"name":"Product","id":"f5f1e15b-52a0-47fd-8c13-6e910cfa7fbf","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 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://app.apextrading.com/api/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":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["v1","products"],"host":["https://app.apextrading.com/api"],"query":[],"variable":[]}},"response":[],"_postman_id":"f5f1e15b-52a0-47fd-8c13-6e910cfa7fbf"},{"name":"Product","id":"249a5565-46a1-4faf-a2fd-57adbabf6784","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://app.apextrading.com/api/v1/products/{{product_id}}","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":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["v1","products","{{product_id}}"],"host":["https://app.apextrading.com/api"],"query":[],"variable":[]}},"response":[],"_postman_id":"249a5565-46a1-4faf-a2fd-57adbabf6784"},{"name":"Field Rules","id":"26610ad9-316c-4011-8763-f539aa650eb9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer  ","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/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":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["v1","products","meta","field-rules"],"host":["https://app.apextrading.com/api"],"query":[],"variable":[]}},"response":[{"id":"06068966-dae7-4f4e-90eb-a813651112d5","name":"Field Rules","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer  ","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/products/meta/field-rules"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 30 May 2025 14:43:54 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    \"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":"26610ad9-316c-4011-8763-f539aa650eb9"},{"name":"Ingredients Upload","id":"fda736ef-036c-4b36-80f5-c4f3f52c0b31","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://app.apextrading.com/api/v1/products/{{product_id}}/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":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["v1","products","{{product_id}}","ingredients-upload"],"host":["https://app.apextrading.com/api"],"query":[],"variable":[]}},"response":[{"id":"1880d507-2b2c-4429-a161-33622f1fcb31","name":"Ingredients Upload Add","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"file","type":"file","uuid":"26b61182-5c84-4755-a03d-fcbe74d8c2b9","src":"I9UwvfuuT/ChatGPT Image May 24, 2025, 08_34_13 PM.png"}]},"url":"https://app.apextrading.com/api/products/{{product_id}}/ingredients-upload"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 30 May 2025 14:44: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":"4999"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"product\": {\n        \"id\": 2197,\n        \"uuid\": \"7fce39e0-41c9-4a35-b076-da57e4297db3\",\n        \"name\": \"1Lemon Haze - 1/8 Prepack\",\n        \"featured\": true,\n        \"list_to_buyers\": false,\n        \"list_to_clearinghouse\": false,\n        \"description\": \"<p><span style=\\\"color: rgb(51, 51, 51);\\\">Lemon Haze&nbsp;is a&nbsp;</span><a href=\\\"https://www.leafly.com/strains/lists/category/sativa\\\" rel=\\\"noopener noreferrer\\\" target=\\\"_blank\\\" style=\\\"color: var(--color-green);\\\">sativa</a><span style=\\\"color: rgb(51, 51, 51);\\\">&nbsp;marijuana strain that smells and tastes&nbsp;like&nbsp;fresh peeled lemon slices. Lemon Haze is made by crossing&nbsp;</span><a href=\\\"https://www.leafly.com/strains/lemon-skunk\\\" rel=\\\"noopener noreferrer\\\" target=\\\"_blank\\\" style=\\\"color: var(--color-green);\\\">Lemon Skunk</a><span style=\\\"color: rgb(51, 51, 51);\\\">&nbsp;with&nbsp;</span><a href=\\\"https://www.leafly.com/strains/silver-haze\\\" rel=\\\"noopener noreferrer\\\" target=\\\"_blank\\\" style=\\\"color: var(--color-green);\\\">Silver Haze</a><span style=\\\"color: rgb(51, 51, 51);\\\">. Its buds appear to be green and yellow with amber hairs on the trichomes, giving it the yellow tint.&nbsp;</span></p><p><br></p>\",\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        \"ingredients_upload\": \"public/companies/13/1748616260-ChatGPT-Image-May-24-2025-08_34_13-PM.png/2KicHOY9dCpIYzVGIzJuPnDucDLJKAFkzNojIkOD.png\",\n        \"brand_id\": 118,\n        \"product_sku\": null,\n        \"product_category_id\": 2,\n        \"product_cultivar_id\": null,\n        \"product_cultivar_type_id\": 2,\n        \"product_type_id\": 109,\n        \"product_crude_extract_type_id\": null,\n        \"product_distillate_extract_sub_type_id\": null,\n        \"product_unit_measurement_id\": 14,\n        \"unit_size_unit_measurement_id\": null,\n        \"state_of_material_id\": null,\n        \"product_grow_environment_id\": 2,\n        \"product_grow_medium_id\": 7,\n        \"product_drying_method_id\": 6,\n        \"product_storage_type_id\": 2,\n        \"product_container_type_id\": null,\n        \"product_trim_method_id\": 2,\n        \"units_per_package\": 1,\n        \"units_per_case\": 32,\n        \"gram_per_preroll\": null,\n        \"lineage\": null,\n        \"feminized\": null,\n        \"germination_rate\": null,\n        \"herm_male_rate\": null,\n        \"yields_per_acre_outdoor\": null,\n        \"per_sq_ft_indoor\": null,\n        \"curing_method\": null,\n        \"extraction_method_id\": null,\n        \"flavor_id\": null,\n        \"unit_size\": null,\n        \"sold_as\": \"Case\",\n        \"product_infusion_id\": null,\n        \"for_pets\": false,\n        \"archived\": true,\n        \"archived_at\": \"2025-05-08T17:39:39.000000Z\",\n        \"flowering_period_id\": null,\n        \"feminized_type_id\": null,\n        \"product_packaged_unit_size_id\": 3,\n        \"predominate_canabinoid_id\": 10,\n        \"for_distributors\": true,\n        \"for_retailers\": true,\n        \"for_wholesalers\": true,\n        \"internal_notes\": null,\n        \"listing_price\": \"350.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        \"created_at\": \"2025-03-06T16:03:09.000000Z\",\n        \"updated_at\": \"2025-05-30T14:44:20.000000Z\",\n        \"brand\": {\n            \"id\": 118,\n            \"name\": \"CannaCrate Cultivation\"\n        },\n        \"category\": {\n            \"id\": 2,\n            \"name\": \"Prepack\",\n            \"short_display_name\": \"Prepack\",\n            \"long_display_name\": \"Flower – Prepackaged\"\n        },\n        \"product_type\": {\n            \"id\": 109,\n            \"name\": \"A Bud\",\n            \"product_category_id\": 2,\n            \"company_id\": null\n        },\n        \"cultivar\": null,\n        \"cultivar_type\": {\n            \"id\": 2,\n            \"name\": \"Sativa\"\n        },\n        \"distillate_extract_sub_type\": null,\n        \"crude_extract_sub_type\": null,\n        \"unit_measurement\": {\n            \"name\": \"Unit\",\n            \"alias\": \"U\"\n        },\n        \"unit_size_unit_measurement\": null,\n        \"state_of_material\": null,\n        \"grow_environment\": {\n            \"id\": 2,\n            \"name\": \"Hybrid Indoor\"\n        },\n        \"grow_medium\": {\n            \"id\": 7,\n            \"name\": \"Organic Soil\"\n        },\n        \"drying_method\": {\n            \"id\": 6,\n            \"name\": \"Humidity & Temp Controlled Room\"\n        },\n        \"storage_type\": {\n            \"id\": 2,\n            \"name\": \"Humidity/Temp Controlled Room\"\n        },\n        \"container_type\": null,\n        \"trim_method\": {\n            \"id\": 2,\n            \"name\": \"Hand\"\n        },\n        \"packaged_unit_size\": {\n            \"id\": 3,\n            \"name\": \"1/8 Oz\"\n        },\n        \"feminized_type\": null,\n        \"flowering_period\": null,\n        \"flavor\": null,\n        \"extraction_method\": null,\n        \"infusion_method\": null,\n        \"predominate_canabinoid\": {\n            \"id\": 10,\n            \"name\": \"Tetrahydrocannabinol\",\n            \"abbreviation\": \"THC\",\n            \"display_name\": \"(THC) Tetrahydrocannabinol\"\n        },\n        \"images\": [\n            {\n                \"id\": 1263,\n                \"sort_order\": 1,\n                \"link\": \"https://s3-us-west-2.amazonaws.com/upload-app-demo.apextrading.com/public/companies/13/images/product/2197/1741276989-Screenshot-2025-03-06-at-10.02.52_processed.png\",\n                \"created_at\": \"2025-03-06T16:03:10.000000Z\"\n            }\n        ],\n        \"government_agencies\": [],\n        \"additives\": [],\n        \"environmental_issues\": []\n    }\n}"},{"id":"412232e5-a628-4570-9e26-93398a167a0e","name":"Ingredients Upload Remove","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"file","type":"text","uuid":"26b61182-5c84-4755-a03d-fcbe74d8c2b9","value":""}]},"url":"https://app.apextrading.com/api/products/{{product_id}}/ingredients-upload"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 30 May 2025 14:44: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":"4998"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"product\": {\n        \"id\": 2197,\n        \"uuid\": \"7fce39e0-41c9-4a35-b076-da57e4297db3\",\n        \"name\": \"1Lemon Haze - 1/8 Prepack\",\n        \"featured\": true,\n        \"list_to_buyers\": false,\n        \"list_to_clearinghouse\": false,\n        \"description\": \"<p><span style=\\\"color: rgb(51, 51, 51);\\\">Lemon Haze&nbsp;is a&nbsp;</span><a href=\\\"https://www.leafly.com/strains/lists/category/sativa\\\" rel=\\\"noopener noreferrer\\\" target=\\\"_blank\\\" style=\\\"color: var(--color-green);\\\">sativa</a><span style=\\\"color: rgb(51, 51, 51);\\\">&nbsp;marijuana strain that smells and tastes&nbsp;like&nbsp;fresh peeled lemon slices. Lemon Haze is made by crossing&nbsp;</span><a href=\\\"https://www.leafly.com/strains/lemon-skunk\\\" rel=\\\"noopener noreferrer\\\" target=\\\"_blank\\\" style=\\\"color: var(--color-green);\\\">Lemon Skunk</a><span style=\\\"color: rgb(51, 51, 51);\\\">&nbsp;with&nbsp;</span><a href=\\\"https://www.leafly.com/strains/silver-haze\\\" rel=\\\"noopener noreferrer\\\" target=\\\"_blank\\\" style=\\\"color: var(--color-green);\\\">Silver Haze</a><span style=\\\"color: rgb(51, 51, 51);\\\">. Its buds appear to be green and yellow with amber hairs on the trichomes, giving it the yellow tint.&nbsp;</span></p><p><br></p>\",\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        \"ingredients_upload\": null,\n        \"brand_id\": 118,\n        \"product_sku\": null,\n        \"product_category_id\": 2,\n        \"product_cultivar_id\": null,\n        \"product_cultivar_type_id\": 2,\n        \"product_type_id\": 109,\n        \"product_crude_extract_type_id\": null,\n        \"product_distillate_extract_sub_type_id\": null,\n        \"product_unit_measurement_id\": 14,\n        \"unit_size_unit_measurement_id\": null,\n        \"state_of_material_id\": null,\n        \"product_grow_environment_id\": 2,\n        \"product_grow_medium_id\": 7,\n        \"product_drying_method_id\": 6,\n        \"product_storage_type_id\": 2,\n        \"product_container_type_id\": null,\n        \"product_trim_method_id\": 2,\n        \"units_per_package\": 1,\n        \"units_per_case\": 32,\n        \"gram_per_preroll\": null,\n        \"lineage\": null,\n        \"feminized\": null,\n        \"germination_rate\": null,\n        \"herm_male_rate\": null,\n        \"yields_per_acre_outdoor\": null,\n        \"per_sq_ft_indoor\": null,\n        \"curing_method\": null,\n        \"extraction_method_id\": null,\n        \"flavor_id\": null,\n        \"unit_size\": null,\n        \"sold_as\": \"Case\",\n        \"product_infusion_id\": null,\n        \"for_pets\": false,\n        \"archived\": true,\n        \"archived_at\": \"2025-05-08T17:39:39.000000Z\",\n        \"flowering_period_id\": null,\n        \"feminized_type_id\": null,\n        \"product_packaged_unit_size_id\": 3,\n        \"predominate_canabinoid_id\": 10,\n        \"for_distributors\": true,\n        \"for_retailers\": true,\n        \"for_wholesalers\": true,\n        \"internal_notes\": null,\n        \"listing_price\": \"350.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        \"created_at\": \"2025-03-06T16:03:09.000000Z\",\n        \"updated_at\": \"2025-05-30T14:44:39.000000Z\",\n        \"brand\": {\n            \"id\": 118,\n            \"name\": \"CannaCrate Cultivation\"\n        },\n        \"category\": {\n            \"id\": 2,\n            \"name\": \"Prepack\",\n            \"short_display_name\": \"Prepack\",\n            \"long_display_name\": \"Flower – Prepackaged\"\n        },\n        \"product_type\": {\n            \"id\": 109,\n            \"name\": \"A Bud\",\n            \"product_category_id\": 2,\n            \"company_id\": null\n        },\n        \"cultivar\": null,\n        \"cultivar_type\": {\n            \"id\": 2,\n            \"name\": \"Sativa\"\n        },\n        \"distillate_extract_sub_type\": null,\n        \"crude_extract_sub_type\": null,\n        \"unit_measurement\": {\n            \"name\": \"Unit\",\n            \"alias\": \"U\"\n        },\n        \"unit_size_unit_measurement\": null,\n        \"state_of_material\": null,\n        \"grow_environment\": {\n            \"id\": 2,\n            \"name\": \"Hybrid Indoor\"\n        },\n        \"grow_medium\": {\n            \"id\": 7,\n            \"name\": \"Organic Soil\"\n        },\n        \"drying_method\": {\n            \"id\": 6,\n            \"name\": \"Humidity & Temp Controlled Room\"\n        },\n        \"storage_type\": {\n            \"id\": 2,\n            \"name\": \"Humidity/Temp Controlled Room\"\n        },\n        \"container_type\": null,\n        \"trim_method\": {\n            \"id\": 2,\n            \"name\": \"Hand\"\n        },\n        \"packaged_unit_size\": {\n            \"id\": 3,\n            \"name\": \"1/8 Oz\"\n        },\n        \"feminized_type\": null,\n        \"flowering_period\": null,\n        \"flavor\": null,\n        \"extraction_method\": null,\n        \"infusion_method\": null,\n        \"predominate_canabinoid\": {\n            \"id\": 10,\n            \"name\": \"Tetrahydrocannabinol\",\n            \"abbreviation\": \"THC\",\n            \"display_name\": \"(THC) Tetrahydrocannabinol\"\n        },\n        \"images\": [\n            {\n                \"id\": 1263,\n                \"sort_order\": 1,\n                \"link\": \"https://s3-us-west-2.amazonaws.com/upload-app-demo.apextrading.com/public/companies/13/images/product/2197/1741276989-Screenshot-2025-03-06-at-10.02.52_processed.png\",\n                \"created_at\": \"2025-03-06T16:03:10.000000Z\"\n            }\n        ],\n        \"government_agencies\": [],\n        \"additives\": [],\n        \"environmental_issues\": []\n    }\n}"}],"_postman_id":"fda736ef-036c-4b36-80f5-c4f3f52c0b31"}],"id":"2cf096f0-9515-4d72-990d-9e9dba2c4e5e","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.</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":"2cf096f0-9515-4d72-990d-9e9dba2c4e5e","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}}},{"name":"Product Additives","item":[{"name":"Product Additives","id":"d1361ee7-ee35-41f8-be40-7ef7f6659404","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/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":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["v1","product-additives"],"host":["https://app.apextrading.com/api"],"query":[{"description":{"content":"<p>Number of records to return per page</p>\n","type":"text/plain"},"key":"per_page","value":"15"}],"variable":[]}},"response":[{"id":"56b54975-5b4a-42b3-8aac-59e2e65bfabe","name":"Product Additives","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"https://app.apextrading.com/api/product-additives?per_page=15","host":["https://app.apextrading.com/api"],"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:30: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":"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\": \"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.apextrading.com/api/v1/product-additives?page=1\",\n        \"last\": \"https://demo.apextrading.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.apextrading.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.apextrading.com/api/v1/product-additives\",\n        \"per_page\": 15,\n        \"to\": 5,\n        \"total\": 5\n    },\n    \"status\": \"success\"\n}"}],"_postman_id":"d1361ee7-ee35-41f8-be40-7ef7f6659404"},{"name":"Product Additive","id":"8cb1ad08-e0b0-483f-980f-4bcbd7b5b4ee","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/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":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["v1","product-additives","{{product_additive_id}}"],"host":["https://app.apextrading.com/api"],"query":[],"variable":[]}},"response":[{"id":"db876a33-265d-477d-af10-4f43744b97b5","name":"Product Additive","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/product-additives/{{product_additive_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 01:30: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":"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\": \"Propylene Glycol\",\n        \"abbreviation\": \"PG\"\n    }\n}"}],"_postman_id":"8cb1ad08-e0b0-483f-980f-4bcbd7b5b4ee"}],"id":"ef03dfe4-dc59-480d-86fe-6ffdb4b578e2","_postman_id":"ef03dfe4-dc59-480d-86fe-6ffdb4b578e2","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}}},{"name":"Product Categories","item":[{"name":"Product Categories","id":"e28272d7-497a-4292-a001-4a3bc02b3a5e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[]},"url":"https://app.apextrading.com/api/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":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["v1","product-categories"],"host":["https://app.apextrading.com/api"],"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":"4937b682-087c-4854-a512-f341d5c51c28","name":"Product Categories","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[]},"url":{"raw":"https://app.apextrading.com/api/product-categories?with_types=true&per_page=15","host":["https://app.apextrading.com/api"],"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:30: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":"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\": \"Plant Material\",\n            \"short_display_name\": \"Plant Material\",\n            \"long_display_name\": \"Plant Material\",\n            \"product_types\": [\n                {\n                    \"id\": 95,\n                    \"name\": \"Fresh Frozen\",\n                    \"product_category_id\": 1,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 96,\n                    \"name\": \"Shake\",\n                    \"product_category_id\": 1,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 97,\n                    \"name\": \"Trim\",\n                    \"product_category_id\": 1,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 98,\n                    \"name\": \"Untrimmed Flower\",\n                    \"product_category_id\": 1,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 99,\n                    \"name\": \"Whole Plant\",\n                    \"product_category_id\": 1,\n                    \"company_id\": null\n                }\n            ]\n        },\n        {\n            \"id\": 2,\n            \"name\": \"Prepack\",\n            \"short_display_name\": \"Prepack\",\n            \"long_display_name\": \"Flower – Prepackaged\",\n            \"product_types\": [\n                {\n                    \"id\": 109,\n                    \"name\": \"A Bud\",\n                    \"product_category_id\": 2,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 110,\n                    \"name\": \"B Bud\",\n                    \"product_category_id\": 2,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 111,\n                    \"name\": \"Popcorn\",\n                    \"product_category_id\": 2,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 126,\n                    \"name\": \"A Bud Premium\",\n                    \"product_category_id\": 2,\n                    \"company_id\": 23\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\": 64,\n                    \"name\": \"Trim / Shake\",\n                    \"product_category_id\": 3,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 65,\n                    \"name\": \"Whole Flower\",\n                    \"product_category_id\": 3,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 66,\n                    \"name\": \"Whole Flower Infused\",\n                    \"product_category_id\": 3,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 67,\n                    \"name\": \"Whole Flower Blunt\",\n                    \"product_category_id\": 3,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 146,\n                    \"name\": \"Infused\",\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\": 3,\n                    \"name\": \"Seedlings\",\n                    \"product_category_id\": 5,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 4,\n                    \"name\": \"Clones\",\n                    \"product_category_id\": 5,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 5,\n                    \"name\": \"Starts\",\n                    \"product_category_id\": 5,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 6,\n                    \"name\": \"Tissue Culture\",\n                    \"product_category_id\": 5,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 104,\n                    \"name\": \"Teens\",\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\": 38,\n                    \"name\": \"Crude\",\n                    \"product_category_id\": 6,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 39,\n                    \"name\": \"Distillate\",\n                    \"product_category_id\": 6,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 40,\n                    \"name\": \"Isolate\",\n                    \"product_category_id\": 6,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 41,\n                    \"name\": \"Full Plant\",\n                    \"product_category_id\": 6,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 42,\n                    \"name\": \"Water Soluble\",\n                    \"product_category_id\": 6,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 43,\n                    \"name\": \"Crystals\",\n                    \"product_category_id\": 6,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 44,\n                    \"name\": \"Wax\",\n                    \"product_category_id\": 6,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 45,\n                    \"name\": \"Shatter\",\n                    \"product_category_id\": 6,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 46,\n                    \"name\": \"Crumble\",\n                    \"product_category_id\": 6,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 47,\n                    \"name\": \"Terpsolate\",\n                    \"product_category_id\": 6,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 48,\n                    \"name\": \"RSO\",\n                    \"product_category_id\": 6,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 49,\n                    \"name\": \"Kief\",\n                    \"product_category_id\": 6,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 50,\n                    \"name\": \"Terpenes\",\n                    \"product_category_id\": 6,\n                    \"company_id\": null\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\": 51,\n                    \"name\": \"Crude\",\n                    \"product_category_id\": 7,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 52,\n                    \"name\": \"Distillate\",\n                    \"product_category_id\": 7,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 53,\n                    \"name\": \"Isolate\",\n                    \"product_category_id\": 7,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 54,\n                    \"name\": \"Full Plant\",\n                    \"product_category_id\": 7,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 55,\n                    \"name\": \"Water Soluble\",\n                    \"product_category_id\": 7,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 56,\n                    \"name\": \"Crystals\",\n                    \"product_category_id\": 7,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 57,\n                    \"name\": \"Wax\",\n                    \"product_category_id\": 7,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 58,\n                    \"name\": \"Shatter\",\n                    \"product_category_id\": 7,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 59,\n                    \"name\": \"Crumble\",\n                    \"product_category_id\": 7,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 60,\n                    \"name\": \"Terpsolate\",\n                    \"product_category_id\": 7,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 61,\n                    \"name\": \"RSO\",\n                    \"product_category_id\": 7,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 62,\n                    \"name\": \"Kief\",\n                    \"product_category_id\": 7,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 63,\n                    \"name\": \"Terpenes\",\n                    \"product_category_id\": 7,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 100,\n                    \"name\": \"Live Resin\",\n                    \"product_category_id\": 7,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 101,\n                    \"name\": \"Sugar Wax\",\n                    \"product_category_id\": 7,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 102,\n                    \"name\": \"Crumble\",\n                    \"product_category_id\": 7,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 103,\n                    \"name\": \"Live Diamonds\",\n                    \"product_category_id\": 7,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 106,\n                    \"name\": \"Live Diamonds - A Grade\",\n                    \"product_category_id\": 7,\n                    \"company_id\": 13\n                },\n                {\n                    \"id\": 115,\n                    \"name\": \"Live Rosin Badder\",\n                    \"product_category_id\": 7,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 116,\n                    \"name\": \"Ice Water Hash\",\n                    \"product_category_id\": 7,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 117,\n                    \"name\": \"Live Rosin\",\n                    \"product_category_id\": 7,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 118,\n                    \"name\": \"Badder\",\n                    \"product_category_id\": 7,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 119,\n                    \"name\": \"Diamonds\",\n                    \"product_category_id\": 7,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 120,\n                    \"name\": \"test\",\n                    \"product_category_id\": 7,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 121,\n                    \"name\": \"test\",\n                    \"product_category_id\": 7,\n                    \"company_id\": 6\n                },\n                {\n                    \"id\": 128,\n                    \"name\": \"Live Diamonds - Special\",\n                    \"product_category_id\": 7,\n                    \"company_id\": 63\n                },\n                {\n                    \"id\": 133,\n                    \"name\": \"Crystalline\",\n                    \"product_category_id\": 7,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 135,\n                    \"name\": \"Hash\",\n                    \"product_category_id\": 7,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 136,\n                    \"name\": \"Oil\",\n                    \"product_category_id\": 7,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 137,\n                    \"name\": \"Rosin\",\n                    \"product_category_id\": 7,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 138,\n                    \"name\": \"Other\",\n                    \"product_category_id\": 7,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 147,\n                    \"name\": \"Sugar\",\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\": 68,\n                    \"name\": \"Distillate\",\n                    \"product_category_id\": 8,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 69,\n                    \"name\": \"CO2\",\n                    \"product_category_id\": 8,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 70,\n                    \"name\": \"Live Resin\",\n                    \"product_category_id\": 8,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 71,\n                    \"name\": \"CO2 Disposable\",\n                    \"product_category_id\": 8,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 72,\n                    \"name\": \"Distillate Disposable\",\n                    \"product_category_id\": 8,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 73,\n                    \"name\": \"Inhaler\",\n                    \"product_category_id\": 8,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 74,\n                    \"name\": \"Syringe\",\n                    \"product_category_id\": 8,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 131,\n                    \"name\": \"Disposable\",\n                    \"product_category_id\": 8,\n                    \"company_id\": 160\n                },\n                {\n                    \"id\": 132,\n                    \"name\": \"Other\",\n                    \"product_category_id\": 8,\n                    \"company_id\": 160\n                },\n                {\n                    \"id\": 148,\n                    \"name\": \"Disposable\",\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\": 112,\n                    \"name\": \"Batteries\",\n                    \"product_category_id\": 10,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 113,\n                    \"name\": \"Hats\",\n                    \"product_category_id\": 10,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 114,\n                    \"name\": \"Shirts\",\n                    \"product_category_id\": 10,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 124,\n                    \"name\": \"Refund\",\n                    \"product_category_id\": 10,\n                    \"company_id\": 23\n                },\n                {\n                    \"id\": 125,\n                    \"name\": \"Credit\",\n                    \"product_category_id\": 10,\n                    \"company_id\": 23\n                },\n                {\n                    \"id\": 127,\n                    \"name\": \"Cultivation Tax\",\n                    \"product_category_id\": 10,\n                    \"company_id\": 10\n                },\n                {\n                    \"id\": 129,\n                    \"name\": \"Apparel\",\n                    \"product_category_id\": 10,\n                    \"company_id\": 160\n                },\n                {\n                    \"id\": 130,\n                    \"name\": \"Other\",\n                    \"product_category_id\": 10,\n                    \"company_id\": 160\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\": 19,\n                    \"name\": \"Beverage\",\n                    \"product_category_id\": 11,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 20,\n                    \"name\": \"Brownie\",\n                    \"product_category_id\": 11,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 21,\n                    \"name\": \"Candy\",\n                    \"product_category_id\": 11,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 22,\n                    \"name\": \"Chocolate\",\n                    \"product_category_id\": 11,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 23,\n                    \"name\": \"Condiment\",\n                    \"product_category_id\": 11,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 24,\n                    \"name\": \"Cookie\",\n                    \"product_category_id\": 11,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 25,\n                    \"name\": \"Cooking\",\n                    \"product_category_id\": 11,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 26,\n                    \"name\": \"Frozen\",\n                    \"product_category_id\": 11,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 27,\n                    \"name\": \"Snack Food\",\n                    \"product_category_id\": 11,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 28,\n                    \"name\": \"Coffee\",\n                    \"product_category_id\": 11,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 29,\n                    \"name\": \"Popcorn\",\n                    \"product_category_id\": 11,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 30,\n                    \"name\": \"Gummies\",\n                    \"product_category_id\": 11,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 123,\n                    \"name\": \"Gummies Special\",\n                    \"product_category_id\": 11,\n                    \"company_id\": 113\n                },\n                {\n                    \"id\": 139,\n                    \"name\": \"Baked Goods\",\n                    \"product_category_id\": 11,\n                    \"company_id\": 160\n                },\n                {\n                    \"id\": 140,\n                    \"name\": \"Capsules\",\n                    \"product_category_id\": 11,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 141,\n                    \"name\": \"Culinary\",\n                    \"product_category_id\": 11,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 142,\n                    \"name\": \"Hard Candy\",\n                    \"product_category_id\": 11,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 143,\n                    \"name\": \"Ice Cream\",\n                    \"product_category_id\": 11,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 144,\n                    \"name\": \"Other\",\n                    \"product_category_id\": 11,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 145,\n                    \"name\": \"Tinctures\",\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\": 31,\n                    \"name\": \"Isolate\",\n                    \"product_category_id\": 12,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 32,\n                    \"name\": \"Full Spectrum\",\n                    \"product_category_id\": 12,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 33,\n                    \"name\": \"Broad Spectrum\",\n                    \"product_category_id\": 12,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 34,\n                    \"name\": \"THC Free\",\n                    \"product_category_id\": 12,\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\": \"Flower – Pack to Order\",\n            \"product_types\": [\n                {\n                    \"id\": 105,\n                    \"name\": \"A Bud\",\n                    \"product_category_id\": 14,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 107,\n                    \"name\": \"B Bud\",\n                    \"product_category_id\": 14,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 108,\n                    \"name\": \"Popcorn\",\n                    \"product_category_id\": 14,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 122,\n                    \"name\": \"A Bud\",\n                    \"product_category_id\": 14,\n                    \"company_id\": null\n                }\n            ]\n        },\n        {\n            \"id\": 15,\n            \"name\": \"Topicals & Wellness\",\n            \"short_display_name\": \"Topicals & Wellness\",\n            \"long_display_name\": \"Topicals & Wellness\",\n            \"product_types\": [\n                {\n                    \"id\": 7,\n                    \"name\": \"Salve\",\n                    \"product_category_id\": 15,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 8,\n                    \"name\": \"Shampoo\",\n                    \"product_category_id\": 15,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 9,\n                    \"name\": \"Lotion\",\n                    \"product_category_id\": 15,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 10,\n                    \"name\": \"Soap\",\n                    \"product_category_id\": 15,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 11,\n                    \"name\": \"Balm\",\n                    \"product_category_id\": 15,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 12,\n                    \"name\": \"Mask\",\n                    \"product_category_id\": 15,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 13,\n                    \"name\": \"Serum\",\n                    \"product_category_id\": 15,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 14,\n                    \"name\": \"Cleanser\",\n                    \"product_category_id\": 15,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 15,\n                    \"name\": \"Toner\",\n                    \"product_category_id\": 15,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 16,\n                    \"name\": \"Bath Bomb\",\n                    \"product_category_id\": 15,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 17,\n                    \"name\": \"Lip Balm\",\n                    \"product_category_id\": 15,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 18,\n                    \"name\": \"Massage Oil\",\n                    \"product_category_id\": 15,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 35,\n                    \"name\": \"Suppositories\",\n                    \"product_category_id\": 15,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 36,\n                    \"name\": \"Transdermal Patches\",\n                    \"product_category_id\": 15,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 37,\n                    \"name\": \"Capsules\",\n                    \"product_category_id\": 15,\n                    \"company_id\": null\n                }\n            ]\n        },\n        {\n            \"id\": 16,\n            \"name\": \"Flower\",\n            \"short_display_name\": \"Flower\",\n            \"long_display_name\": \"Flower – Bulk\",\n            \"product_types\": [\n                {\n                    \"id\": 90,\n                    \"name\": \"A Bud\",\n                    \"product_category_id\": 16,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 91,\n                    \"name\": \"B Bud\",\n                    \"product_category_id\": 16,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 92,\n                    \"name\": \"C Bud\",\n                    \"product_category_id\": 16,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 93,\n                    \"name\": \"Infused Flower\",\n                    \"product_category_id\": 16,\n                    \"company_id\": null\n                },\n                {\n                    \"id\": 94,\n                    \"name\": \"Popcorn\",\n                    \"product_category_id\": 16,\n                    \"company_id\": null\n                }\n            ]\n        }\n    ],\n    \"links\": {\n        \"first\": \"https://demo.apextrading.com/api/v1/product-categories?page=1\",\n        \"last\": \"https://demo.apextrading.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.apextrading.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.apextrading.com/api/v1/product-categories\",\n        \"per_page\": 15,\n        \"to\": 14,\n        \"total\": 14\n    },\n    \"status\": \"success\"\n}"}],"_postman_id":"e28272d7-497a-4292-a001-4a3bc02b3a5e"},{"name":"Product Category","id":"56496839-0fe9-4142-a553-9b4164ae3a8d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/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":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["v1","product-categories","{{product_category_id}}"],"host":["https://app.apextrading.com/api"],"query":[],"variable":[]}},"response":[{"id":"c727abb8-a722-4d01-bcf7-9f3c7b736eca","name":"Product Category","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/product-categories/{{product_category_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 01:30: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":"4999"},{"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\": \"Flower – Prepackaged\",\n        \"product_types\": [\n            {\n                \"id\": 109,\n                \"name\": \"A Bud\",\n                \"product_category_id\": 2,\n                \"company_id\": null\n            },\n            {\n                \"id\": 110,\n                \"name\": \"B Bud\",\n                \"product_category_id\": 2,\n                \"company_id\": null\n            },\n            {\n                \"id\": 111,\n                \"name\": \"Popcorn\",\n                \"product_category_id\": 2,\n                \"company_id\": null\n            },\n            {\n                \"id\": 126,\n                \"name\": \"A Bud Premium\",\n                \"product_category_id\": 2,\n                \"company_id\": 23\n            }\n        ]\n    }\n}"}],"_postman_id":"56496839-0fe9-4142-a553-9b4164ae3a8d"}],"id":"81d4628c-b14f-4ce5-83c9-30fcb74a716b","_postman_id":"81d4628c-b14f-4ce5-83c9-30fcb74a716b","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}}},{"name":"Product Types","item":[{"name":"Product Types","id":"ed49ef17-2a40-4de3-a6f0-a271ddc24290","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/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":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["v1","product-types"],"host":["https://app.apextrading.com/api"],"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":"f3173162-d7da-472a-9b60-a1323a03cd88","name":"Product Types","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"https://app.apextrading.com/api/product-types","host":["https://app.apextrading.com/api"],"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:27: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":"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\": 3,\n            \"name\": \"Seedlings\",\n            \"product_category_id\": 5,\n            \"company_id\": null\n        },\n        {\n            \"id\": 4,\n            \"name\": \"Clones\",\n            \"product_category_id\": 5,\n            \"company_id\": null\n        },\n        {\n            \"id\": 5,\n            \"name\": \"Starts\",\n            \"product_category_id\": 5,\n            \"company_id\": null\n        },\n        {\n            \"id\": 6,\n            \"name\": \"Tissue Culture\",\n            \"product_category_id\": 5,\n            \"company_id\": null\n        },\n        {\n            \"id\": 7,\n            \"name\": \"Salve\",\n            \"product_category_id\": 15,\n            \"company_id\": null\n        },\n        {\n            \"id\": 8,\n            \"name\": \"Shampoo\",\n            \"product_category_id\": 15,\n            \"company_id\": null\n        },\n        {\n            \"id\": 9,\n            \"name\": \"Lotion\",\n            \"product_category_id\": 15,\n            \"company_id\": null\n        },\n        {\n            \"id\": 10,\n            \"name\": \"Soap\",\n            \"product_category_id\": 15,\n            \"company_id\": null\n        },\n        {\n            \"id\": 11,\n            \"name\": \"Balm\",\n            \"product_category_id\": 15,\n            \"company_id\": null\n        },\n        {\n            \"id\": 12,\n            \"name\": \"Mask\",\n            \"product_category_id\": 15,\n            \"company_id\": null\n        },\n        {\n            \"id\": 13,\n            \"name\": \"Serum\",\n            \"product_category_id\": 15,\n            \"company_id\": null\n        },\n        {\n            \"id\": 14,\n            \"name\": \"Cleanser\",\n            \"product_category_id\": 15,\n            \"company_id\": null\n        },\n        {\n            \"id\": 15,\n            \"name\": \"Toner\",\n            \"product_category_id\": 15,\n            \"company_id\": null\n        },\n        {\n            \"id\": 16,\n            \"name\": \"Bath Bomb\",\n            \"product_category_id\": 15,\n            \"company_id\": null\n        },\n        {\n            \"id\": 17,\n            \"name\": \"Lip Balm\",\n            \"product_category_id\": 15,\n            \"company_id\": null\n        }\n    ],\n    \"links\": {\n        \"first\": \"https://demo.apextrading.com/api/v1/product-types?page=1\",\n        \"last\": \"https://demo.apextrading.com/api/v1/product-types?page=8\",\n        \"prev\": null,\n        \"next\": \"https://demo.apextrading.com/api/v1/product-types?page=2\"\n    },\n    \"meta\": {\n        \"current_page\": 1,\n        \"from\": 1,\n        \"last_page\": 8,\n        \"links\": [\n            {\n                \"url\": null,\n                \"label\": \"&laquo; Previous\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.apextrading.com/api/v1/product-types?page=1\",\n                \"label\": \"1\",\n                \"active\": true\n            },\n            {\n                \"url\": \"https://demo.apextrading.com/api/v1/product-types?page=2\",\n                \"label\": \"2\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.apextrading.com/api/v1/product-types?page=3\",\n                \"label\": \"3\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.apextrading.com/api/v1/product-types?page=4\",\n                \"label\": \"4\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.apextrading.com/api/v1/product-types?page=5\",\n                \"label\": \"5\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.apextrading.com/api/v1/product-types?page=6\",\n                \"label\": \"6\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.apextrading.com/api/v1/product-types?page=7\",\n                \"label\": \"7\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.apextrading.com/api/v1/product-types?page=8\",\n                \"label\": \"8\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.apextrading.com/api/v1/product-types?page=2\",\n                \"label\": \"Next &raquo;\",\n                \"active\": false\n            }\n        ],\n        \"path\": \"https://demo.apextrading.com/api/v1/product-types\",\n        \"per_page\": 15,\n        \"to\": 15,\n        \"total\": 118\n    },\n    \"status\": \"success\"\n}"}],"_postman_id":"ed49ef17-2a40-4de3-a6f0-a271ddc24290"},{"name":"Product Type","id":"3398a941-7e0e-4c47-8c7b-baf81f48570f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/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":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["v1","product-types","{{product_type_id}}"],"host":["https://app.apextrading.com/api"],"query":[],"variable":[]}},"response":[{"id":"e1b66906-443c-4718-8b52-96221158e66b","name":"Product Type","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/product-types/{{product_type_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 01:27:16 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    \"product_type\": {\n        \"id\": 3,\n        \"name\": \"Seedlings\",\n        \"product_category_id\": 5,\n        \"company_id\": null\n    }\n}"}],"_postman_id":"3398a941-7e0e-4c47-8c7b-baf81f48570f"}],"id":"0e64eaf6-e76d-428a-8127-1058d65944a4","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":"0e64eaf6-e76d-428a-8127-1058d65944a4","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}}},{"name":"Receiving Orders","item":[{"name":"Receiving Orders","id":"383901e8-1169-47fb-ac55-53b75e04e2d9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer ","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/v1/receiving-orders?updated_at_from=2025-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:receiving-orders</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["v1","receiving-orders"],"host":["https://app.apextrading.com/api"],"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"},{"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":[{"id":"a694f89f-c27e-4a33-96d2-eabcc64b4200","name":"Receiving Orders","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer ","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"https://app.apextrading.com/api/v1/receiving-orders?updated_at_from=2025-04-20T22:04:50Z","host":["https://app.apextrading.com/api"],"path":["v1","receiving-orders"],"query":[{"key":"with_items","value":"false","description":"include order items","disabled":true},{"key":"with_payments","value":"false","description":"include payments made on order","disabled":true},{"key":"ids[]","value":"3","description":"filter by ids","disabled":true},{"key":"created_at_from","value":"2025-04-20T22:04:50Z","description":"filter by created after query in UTC","disabled":true},{"key":"created_at_to","value":"2025-04-22T22:04:50Z","description":"filter by created before query in UTC","disabled":true},{"key":"updated_at_from","value":"2025-04-20T22:04:50Z","description":"filter by updated after query in UTC **REQUIRED **"},{"key":"updated_at_to","value":"2025-04-22T22:04:50Z","description":"filter by updated before query in UTC","disabled":true},{"key":"order_data_from","value":"2025-04-20T22:04:50Z","description":"deprecated, will be removed in future version","disabled":true},{"key":"order_date_to","value":"2025-04-22T22:04:50Z","description":"deprecated, will be removed in future version","disabled":true},{"key":"delivery_date_from","value":"2025-04-20T22:04:50Z","description":"deprecated, will be removed in future version","disabled":true},{"key":"delivery_date_to","value":"2025-04-22T22:04:50Z","description":"deprecated, will be removed in future version","disabled":true},{"key":"per_page","value":"15","description":"Number of records to return per page","type":"text","disabled":true},{"key":"seller_company_ids[]","value":"3","description":"filter by seller company ids","type":"text","disabled":true},{"key":"cancelled","value":"false","description":"filter by cancelled. All returned if no key present","disabled":true},{"key":"invoice_number","value":"high-hopes-3","description":"filter by invoice number","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Date","value":"Wed, 05 Nov 2025 00:20: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":"4999"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"orders\": [\n        {\n            \"id\": 27027,\n            \"uuid\": \"4f033ccd-0e2d-4ad9-a7a2-3f09d8121d33\",\n            \"invoice_number\": \"22949\",\n            \"subtotal\": \"2720.00\",\n            \"total\": \"2448.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\": \"2023-08-29T18:32:30.000000Z\",\n            \"order_status_id\": 2167,\n            \"net_terms_id\": 7,\n            \"seller_company_id\": 63,\n            \"buyer_company_id\": 13,\n            \"delivery_date\": \"2023-08-09T00:00:00.000000Z\",\n            \"cancelled\": false,\n            \"due_date\": \"2023-08-31T00:00:00.000000Z\",\n            \"estimated_departure_date\": null,\n            \"estimated_arrival_date\": null,\n            \"manifest_number\": null,\n            \"invoice_note\": null,\n            \"shipping_method\": null,\n            \"ship_name\": \"High Hopes Dispensary\",\n            \"ship_line_one\": \"123 Dispensary Way\",\n            \"ship_line_two\": null,\n            \"ship_city\": \"Portlan\",\n            \"ship_state\": \"Oregon\",\n            \"ship_zip\": \"97227\",\n            \"ship_country\": \"US\",\n            \"ship_from_name\": \"High Hopes Industries\",\n            \"ship_from_line_one\": \"123 Terpene Way\",\n            \"ship_from_line_two\": null,\n            \"ship_from_city\": \"Portland\",\n            \"ship_from_state\": \"Oregon\",\n            \"ship_from_zip\": \"97230\",\n            \"ship_from_country\": \"US\",\n            \"turnaround_time\": \"2-3 Business Days\",\n            \"ship_tracking_number\": null,\n            \"ship_receiving_details\": null,\n            \"total_payments\": \"0.00\",\n            \"total_credits\": \"0.00\",\n            \"payment_status\": \"unpaid\",\n            \"payments_currently_due\": \"0.00\",\n            \"total_write_offs\": \"0.00\",\n            \"total_trades\": \"0.00\",\n            \"backorder\": false,\n            \"backorder_status\": null,\n            \"buyer_contact_name\": \"Willy\",\n            \"buyer_contact_phone\": \"5202554016\",\n            \"buyer_contact_email\": \"willy@apextrading.com\",\n            \"created_at\": \"2023-08-29T18:32:30.000000Z\",\n            \"updated_at\": \"2025-04-29T18:45:04.000000Z\",\n            \"seller\": \"High Hopes Industries\",\n            \"transporters\": [],\n            \"term\": {\n                \"name\": \"COD\",\n                \"finalPaymentDaysAfterDelivery\": 0\n            },\n            \"order_status\": {\n                \"id\": 2167,\n                \"name\": \"Complete\",\n                \"payment_percentage\": 0,\n                \"archived\": false,\n                \"position\": 9\n            },\n            \"sales_reps\": [\n                {\n                    \"name\": \"Rob\",\n                    \"phone\": \"6197506492\",\n                    \"email\": \"rob@apextrading.com\"\n                }\n            ]\n        },\n        {\n            \"id\": 28214,\n            \"uuid\": \"4c33785e-a248-4fd1-a871-2adae5c6dc7d\",\n            \"invoice_number\": \"Solar_-7\",\n            \"subtotal\": \"0.00\",\n            \"total\": \"0.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\": \"2025-05-01T12:57:54.000000Z\",\n            \"order_status_id\": 2892,\n            \"net_terms_id\": null,\n            \"seller_company_id\": 11,\n            \"buyer_company_id\": 13,\n            \"delivery_date\": null,\n            \"cancelled\": false,\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\": null,\n            \"ship_name\": \"High Hopes Processing\",\n            \"ship_line_one\": \"123 Canna Way\",\n            \"ship_line_two\": null,\n            \"ship_city\": \"Portland\",\n            \"ship_state\": \"Oregon\",\n            \"ship_zip\": \"97227\",\n            \"ship_country\": \"US\",\n            \"ship_from_name\": \"Keala test Account\",\n            \"ship_from_line_one\": \"456 LA Way\",\n            \"ship_from_line_two\": null,\n            \"ship_from_city\": \"Hillsboro\",\n            \"ship_from_state\": \"Oregon\",\n            \"ship_from_zip\": \"97211\",\n            \"ship_from_country\": \"US\",\n            \"turnaround_time\": null,\n            \"ship_tracking_number\": null,\n            \"ship_receiving_details\": null,\n            \"total_payments\": \"0.00\",\n            \"total_credits\": \"0.00\",\n            \"payment_status\": null,\n            \"payments_currently_due\": \"0.00\",\n            \"total_write_offs\": \"0.00\",\n            \"total_trades\": \"0.00\",\n            \"backorder\": false,\n            \"backorder_status\": null,\n            \"buyer_contact_name\": null,\n            \"buyer_contact_phone\": null,\n            \"buyer_contact_email\": null,\n            \"created_at\": \"2025-05-01T12:57:54.000000Z\",\n            \"updated_at\": \"2025-05-01T12:57:55.000000Z\",\n            \"seller\": \"Keala test Account\",\n            \"transporters\": [],\n            \"term\": null,\n            \"order_status\": {\n                \"id\": 2892,\n                \"name\": \"Farm to Wholesale\",\n                \"payment_percentage\": 0,\n                \"archived\": false,\n                \"position\": 1\n            },\n            \"sales_reps\": []\n        },\n        {\n            \"id\": 28355,\n            \"uuid\": \"306c5f80-781c-4d1a-8ad7-a6d21429cd2b\",\n            \"invoice_number\": \"HH - 308\",\n            \"subtotal\": \"1250.00\",\n            \"total\": \"1312.50\",\n            \"excise_tax\": \"0.00\",\n            \"excise_tax_percentage\": null,\n            \"additional_discount\": \"0.00\",\n            \"delivery_cost\": \"0.00\",\n            \"cultivation_tax\": \"62.50\",\n            \"cultivation_tax_percentage\": 5,\n            \"order_date\": \"2025-05-14T21:03:03.000000Z\",\n            \"order_status_id\": 472,\n            \"net_terms_id\": null,\n            \"seller_company_id\": 13,\n            \"buyer_company_id\": 13,\n            \"delivery_date\": null,\n            \"cancelled\": false,\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\": null,\n            \"ship_name\": \"High Hopes Farm\",\n            \"ship_line_one\": \"123 Terpene Way\",\n            \"ship_line_two\": null,\n            \"ship_city\": \"Portland\",\n            \"ship_state\": \"Oregon\",\n            \"ship_zip\": \"97227\",\n            \"ship_country\": \"US\",\n            \"ship_from_name\": \"High Hopes Farms\",\n            \"ship_from_line_one\": \"12 Test St\",\n            \"ship_from_line_two\": null,\n            \"ship_from_city\": \"Denver\",\n            \"ship_from_state\": \"Oregon\",\n            \"ship_from_zip\": \"80205\",\n            \"ship_from_country\": \"US\",\n            \"turnaround_time\": null,\n            \"ship_tracking_number\": null,\n            \"ship_receiving_details\": null,\n            \"total_payments\": \"0.00\",\n            \"total_credits\": \"0.00\",\n            \"payment_status\": \"unpaid\",\n            \"payments_currently_due\": \"0.00\",\n            \"total_write_offs\": \"0.00\",\n            \"total_trades\": \"0.00\",\n            \"backorder\": false,\n            \"backorder_status\": null,\n            \"buyer_contact_name\": null,\n            \"buyer_contact_phone\": null,\n            \"buyer_contact_email\": null,\n            \"created_at\": \"2025-05-14T21:03:03.000000Z\",\n            \"updated_at\": \"2025-05-14T21:03:04.000000Z\",\n            \"seller\": \"High Hopes Farms\",\n            \"transporters\": [],\n            \"term\": null,\n            \"order_status\": {\n                \"id\": 472,\n                \"name\": \"Order Submitted - Confirm Inventory\",\n                \"payment_percentage\": 0,\n                \"archived\": false,\n                \"position\": 1\n            },\n            \"sales_reps\": []\n        },\n        {\n            \"id\": 28356,\n            \"uuid\": \"dfcdd1f7-d9fe-4c0f-8712-07a315c4465b\",\n            \"invoice_number\": \"SF428\",\n            \"subtotal\": \"1500.00\",\n            \"total\": \"1500.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\": \"2025-05-14T21:07:53.000000Z\",\n            \"order_status_id\": 391,\n            \"net_terms_id\": null,\n            \"seller_company_id\": 11,\n            \"buyer_company_id\": 13,\n            \"delivery_date\": null,\n            \"cancelled\": false,\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\": null,\n            \"ship_name\": \"High Hopes Farm - Cultivation\",\n            \"ship_line_one\": \"611 SW Kingston Ave\",\n            \"ship_line_two\": null,\n            \"ship_city\": \"Portland\",\n            \"ship_state\": \"Oregon\",\n            \"ship_zip\": \"97205\",\n            \"ship_country\": \"US\",\n            \"ship_from_name\": \"Keala test Account\",\n            \"ship_from_line_one\": \"012 S Spellman St\",\n            \"ship_from_line_two\": null,\n            \"ship_from_city\": \"Crater Lake\",\n            \"ship_from_state\": \"Oregon\",\n            \"ship_from_zip\": \"96721\",\n            \"ship_from_country\": \"US\",\n            \"turnaround_time\": null,\n            \"ship_tracking_number\": null,\n            \"ship_receiving_details\": null,\n            \"total_payments\": \"0.00\",\n            \"total_credits\": \"0.00\",\n            \"payment_status\": \"unpaid\",\n            \"payments_currently_due\": \"0.00\",\n            \"total_write_offs\": \"0.00\",\n            \"total_trades\": \"0.00\",\n            \"backorder\": false,\n            \"backorder_status\": null,\n            \"buyer_contact_name\": \"Eric Williams\",\n            \"buyer_contact_phone\": \"8656076656\",\n            \"buyer_contact_email\": \"eric@apextrading.com\",\n            \"created_at\": \"2025-05-14T21:07:53.000000Z\",\n            \"updated_at\": \"2025-05-14T21:07:54.000000Z\",\n            \"seller\": \"Keala test Account\",\n            \"transporters\": [],\n            \"term\": null,\n            \"order_status\": {\n                \"id\": 391,\n                \"name\": \"Backorder\",\n                \"payment_percentage\": 0,\n                \"archived\": false,\n                \"position\": 1\n            },\n            \"sales_reps\": []\n        },\n        {\n            \"id\": 28359,\n            \"uuid\": \"fca9f2d4-e500-4aae-ad2a-abda18442afa\",\n            \"invoice_number\": \"SF429\",\n            \"subtotal\": \"1500.00\",\n            \"total\": \"1500.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\": \"2025-05-14T21:55:37.000000Z\",\n            \"order_status_id\": 391,\n            \"net_terms_id\": null,\n            \"seller_company_id\": 11,\n            \"buyer_company_id\": 13,\n            \"delivery_date\": null,\n            \"cancelled\": false,\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\": null,\n            \"ship_name\": \"High Hopes Farm - Cultivation\",\n            \"ship_line_one\": \"611 SW Kingston Ave\",\n            \"ship_line_two\": null,\n            \"ship_city\": \"Portland\",\n            \"ship_state\": \"Oregon\",\n            \"ship_zip\": \"97205\",\n            \"ship_country\": \"US\",\n            \"ship_from_name\": \"Keala test Account\",\n            \"ship_from_line_one\": \"012 S Spellman St\",\n            \"ship_from_line_two\": null,\n            \"ship_from_city\": \"Crater Lake\",\n            \"ship_from_state\": \"Oregon\",\n            \"ship_from_zip\": \"96721\",\n            \"ship_from_country\": \"US\",\n            \"turnaround_time\": null,\n            \"ship_tracking_number\": null,\n            \"ship_receiving_details\": null,\n            \"total_payments\": \"0.00\",\n            \"total_credits\": \"0.00\",\n            \"payment_status\": \"unpaid\",\n            \"payments_currently_due\": \"0.00\",\n            \"total_write_offs\": \"0.00\",\n            \"total_trades\": \"0.00\",\n            \"backorder\": false,\n            \"backorder_status\": null,\n            \"buyer_contact_name\": \"Eric Williams\",\n            \"buyer_contact_phone\": \"8656076656\",\n            \"buyer_contact_email\": \"eric@apextrading.com\",\n            \"created_at\": \"2025-05-14T21:55:37.000000Z\",\n            \"updated_at\": \"2025-05-16T14:02:09.000000Z\",\n            \"seller\": \"Keala test Account\",\n            \"transporters\": [],\n            \"term\": null,\n            \"order_status\": {\n                \"id\": 391,\n                \"name\": \"Backorder\",\n                \"payment_percentage\": 0,\n                \"archived\": false,\n                \"position\": 1\n            },\n            \"sales_reps\": []\n        },\n        {\n            \"id\": 34882,\n            \"uuid\": \"b8e9a119-4e30-4b7f-ad8f-90f74086e0cb\",\n            \"invoice_number\": \"Chunky-23\",\n            \"subtotal\": \"10625.00\",\n            \"total\": \"10125.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\": \"2025-08-14T14:19:00.000000Z\",\n            \"order_status_id\": 3936,\n            \"net_terms_id\": null,\n            \"seller_company_id\": 223,\n            \"buyer_company_id\": 13,\n            \"delivery_date\": null,\n            \"cancelled\": false,\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\": null,\n            \"ship_name\": \"High Hopes Farm - Processing\",\n            \"ship_line_one\": \"611 SW Kingston Ave\",\n            \"ship_line_two\": null,\n            \"ship_city\": \"Portland\",\n            \"ship_state\": \"Oregon\",\n            \"ship_zip\": \"97205\",\n            \"ship_country\": \"US\",\n            \"ship_from_name\": \"Chunky Nugs\",\n            \"ship_from_line_one\": \"123 Candy Lane\",\n            \"ship_from_line_two\": null,\n            \"ship_from_city\": \"Portland\",\n            \"ship_from_state\": \"Oregon\",\n            \"ship_from_zip\": \"000000\",\n            \"ship_from_country\": \"US\",\n            \"turnaround_time\": null,\n            \"ship_tracking_number\": null,\n            \"ship_receiving_details\": null,\n            \"total_payments\": \"0.00\",\n            \"total_credits\": \"0.00\",\n            \"payment_status\": \"unpaid\",\n            \"payments_currently_due\": \"0.00\",\n            \"total_write_offs\": \"0.00\",\n            \"total_trades\": \"0.00\",\n            \"backorder\": false,\n            \"backorder_status\": null,\n            \"buyer_contact_name\": null,\n            \"buyer_contact_phone\": null,\n            \"buyer_contact_email\": null,\n            \"created_at\": \"2025-08-14T14:19:00.000000Z\",\n            \"updated_at\": \"2025-09-05T20:08:18.000000Z\",\n            \"seller\": \"Chunky Nugs\",\n            \"transporters\": [],\n            \"term\": null,\n            \"order_status\": {\n                \"id\": 3936,\n                \"name\": \"Order Submitted\",\n                \"payment_percentage\": 0,\n                \"archived\": false,\n                \"position\": 1\n            },\n            \"sales_reps\": []\n        },\n        {\n            \"id\": 34889,\n            \"uuid\": \"93a079a5-eb09-4eb1-a7ad-f26c3def2626\",\n            \"invoice_number\": \"Chunky-24\",\n            \"subtotal\": \"1312.50\",\n            \"total\": \"1312.50\",\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\": \"2025-08-14T20:03:23.000000Z\",\n            \"order_status_id\": 3936,\n            \"net_terms_id\": null,\n            \"seller_company_id\": 223,\n            \"buyer_company_id\": 13,\n            \"delivery_date\": null,\n            \"cancelled\": false,\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\": null,\n            \"ship_name\": \"High Hopes Farm - Cultivation\",\n            \"ship_line_one\": \"611 SW Kingston Ave\",\n            \"ship_line_two\": null,\n            \"ship_city\": \"Portland\",\n            \"ship_state\": \"Oregon\",\n            \"ship_zip\": \"97205\",\n            \"ship_country\": \"US\",\n            \"ship_from_name\": \"Chunky Nugs\",\n            \"ship_from_line_one\": \"123 Candy Lane\",\n            \"ship_from_line_two\": null,\n            \"ship_from_city\": \"Portland\",\n            \"ship_from_state\": \"Oregon\",\n            \"ship_from_zip\": \"000000\",\n            \"ship_from_country\": \"US\",\n            \"turnaround_time\": null,\n            \"ship_tracking_number\": null,\n            \"ship_receiving_details\": null,\n            \"total_payments\": \"0.00\",\n            \"total_credits\": \"0.00\",\n            \"payment_status\": \"unpaid\",\n            \"payments_currently_due\": \"0.00\",\n            \"total_write_offs\": \"0.00\",\n            \"total_trades\": \"0.00\",\n            \"backorder\": false,\n            \"backorder_status\": null,\n            \"buyer_contact_name\": \"Lisa Muldowney\",\n            \"buyer_contact_phone\": \"5857609254\",\n            \"buyer_contact_email\": \"lisa@apextrading.com\",\n            \"created_at\": \"2025-08-14T20:03:23.000000Z\",\n            \"updated_at\": \"2025-08-14T20:03:23.000000Z\",\n            \"seller\": \"Chunky Nugs\",\n            \"transporters\": [],\n            \"term\": null,\n            \"order_status\": {\n                \"id\": 3936,\n                \"name\": \"Order Submitted\",\n                \"payment_percentage\": 0,\n                \"archived\": false,\n                \"position\": 1\n            },\n            \"sales_reps\": []\n        },\n        {\n            \"id\": 35201,\n            \"uuid\": \"b545306f-b9f9-41a6-8a45-cab3457c8318\",\n            \"invoice_number\": \"Chunky-36\",\n            \"subtotal\": \"500.00\",\n            \"total\": \"500.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\": \"2025-10-14T17:04:36.000000Z\",\n            \"order_status_id\": 3936,\n            \"net_terms_id\": null,\n            \"seller_company_id\": 223,\n            \"buyer_company_id\": 13,\n            \"delivery_date\": null,\n            \"cancelled\": false,\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\": null,\n            \"ship_name\": \"High Hopes Farm - Processing\",\n            \"ship_line_one\": \"611 SW Kingston Ave\",\n            \"ship_line_two\": null,\n            \"ship_city\": \"Portland\",\n            \"ship_state\": \"Oregon\",\n            \"ship_zip\": \"97205\",\n            \"ship_country\": \"US\",\n            \"ship_from_name\": \"Chunky Nugs\",\n            \"ship_from_line_one\": \"123 Candy Lane\",\n            \"ship_from_line_two\": null,\n            \"ship_from_city\": \"Portland\",\n            \"ship_from_state\": \"Oregon\",\n            \"ship_from_zip\": \"000000\",\n            \"ship_from_country\": \"US\",\n            \"turnaround_time\": null,\n            \"ship_tracking_number\": null,\n            \"ship_receiving_details\": null,\n            \"total_payments\": \"0.00\",\n            \"total_credits\": \"0.00\",\n            \"payment_status\": \"unpaid\",\n            \"payments_currently_due\": \"0.00\",\n            \"total_write_offs\": \"0.00\",\n            \"total_trades\": \"0.00\",\n            \"backorder\": false,\n            \"backorder_status\": null,\n            \"buyer_contact_name\": \"Liz\",\n            \"buyer_contact_phone\": null,\n            \"buyer_contact_email\": \"liz@apextrading.com\",\n            \"created_at\": \"2025-10-14T17:04:36.000000Z\",\n            \"updated_at\": \"2025-11-04T22:45:44.000000Z\",\n            \"seller\": \"Chunky Nugs\",\n            \"transporters\": [],\n            \"term\": null,\n            \"order_status\": {\n                \"id\": 3936,\n                \"name\": \"Order Submitted\",\n                \"payment_percentage\": 0,\n                \"archived\": false,\n                \"position\": 1\n            },\n            \"sales_reps\": []\n        }\n    ],\n    \"links\": {\n        \"first\": \"https://demo.apextrading.com/api/v1/receiving-orders?updated_at_from=2025-04-20T22%3A04%3A50Z&page=1\",\n        \"last\": \"https://demo.apextrading.com/api/v1/receiving-orders?updated_at_from=2025-04-20T22%3A04%3A50Z&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.apextrading.com/api/v1/receiving-orders?updated_at_from=2025-04-20T22%3A04%3A50Z&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.apextrading.com/api/v1/receiving-orders\",\n        \"per_page\": 15,\n        \"to\": 8,\n        \"total\": 8\n    }\n}"}],"_postman_id":"383901e8-1169-47fb-ac55-53b75e04e2d9"},{"name":"Receiving Order","id":"038cfb23-73ea-429b-b8f1-3318ed5179e4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer ","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/v1/receiving-orders/{{receiving_order_id}}","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":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["v1","receiving-orders","{{receiving_order_id}}"],"host":["https://app.apextrading.com/api"],"query":[{"disabled":true,"description":{"content":"<p>include order history</p>\n","type":"text/plain"},"key":"with_history","value":"false"}],"variable":[]}},"response":[{"id":"c297e339-45bb-4e98-bcf2-a2b9c5916599","name":"Receiving Order","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer ","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"https://app.apextrading.com/api/v1/receiving-orders/{{receiving_order_id}}","host":["https://app.apextrading.com/api"],"path":["v1","receiving-orders","{{receiving_order_id}}"],"query":[{"key":"with_history","value":"false","description":"include order history","type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Date","value":"Wed, 05 Nov 2025 00:20:29 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    \"order\": {\n        \"id\": 27027,\n        \"uuid\": \"4f033ccd-0e2d-4ad9-a7a2-3f09d8121d33\",\n        \"invoice_number\": \"22949\",\n        \"subtotal\": \"2720.00\",\n        \"total\": \"2448.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\": \"2023-08-29T18:32:30.000000Z\",\n        \"order_status_id\": 2167,\n        \"net_terms_id\": 7,\n        \"seller_company_id\": 63,\n        \"buyer_company_id\": 13,\n        \"delivery_date\": \"2023-08-09T00:00:00.000000Z\",\n        \"cancelled\": false,\n        \"due_date\": \"2023-08-31T00:00:00.000000Z\",\n        \"estimated_departure_date\": null,\n        \"estimated_arrival_date\": null,\n        \"manifest_number\": null,\n        \"invoice_note\": null,\n        \"shipping_method\": null,\n        \"ship_name\": \"High Hopes Dispensary\",\n        \"ship_line_one\": \"123 Dispensary Way\",\n        \"ship_line_two\": null,\n        \"ship_city\": \"Portlan\",\n        \"ship_state\": \"Oregon\",\n        \"ship_zip\": \"97227\",\n        \"ship_country\": \"US\",\n        \"ship_from_name\": \"High Hopes Industries\",\n        \"ship_from_line_one\": \"123 Terpene Way\",\n        \"ship_from_line_two\": null,\n        \"ship_from_city\": \"Portland\",\n        \"ship_from_state\": \"Oregon\",\n        \"ship_from_zip\": \"97230\",\n        \"ship_from_country\": \"US\",\n        \"turnaround_time\": \"2-3 Business Days\",\n        \"ship_tracking_number\": null,\n        \"ship_receiving_details\": null,\n        \"total_payments\": \"0.00\",\n        \"total_credits\": \"0.00\",\n        \"payment_status\": \"unpaid\",\n        \"payments_currently_due\": \"0.00\",\n        \"total_write_offs\": \"0.00\",\n        \"total_trades\": \"0.00\",\n        \"backorder\": false,\n        \"backorder_status\": null,\n        \"buyer_contact_name\": \"Willy\",\n        \"buyer_contact_phone\": \"5202554016\",\n        \"buyer_contact_email\": \"willy@apextrading.com\",\n        \"created_at\": \"2023-08-29T18:32:30.000000Z\",\n        \"updated_at\": \"2025-04-29T18:45:04.000000Z\",\n        \"seller\": \"High Hopes Industries\",\n        \"transporters\": [],\n        \"items\": [\n            {\n                \"id\": 9185,\n                \"order_id\": 27027,\n                \"brand\": \"Apex Elevated\",\n                \"product_category_id\": 16,\n                \"order_quantity\": 2,\n                \"inventory_quantity\": 2,\n                \"order_price\": \"1350.00\",\n                \"order_unit_measurement_id\": 6,\n                \"product_type_id\": 90,\n                \"product_id\": 175,\n                \"order_sample\": 0,\n                \"product_sku\": \"DPF-A\",\n                \"description\": \"Expect a major blow to the head from this super-potent strain. A pure sativa, Durban Poison is the beloved inbred descendant of a sativa strain grown in South Africa. Ed Rosenthal, an American cannabis activist, discovered the original strain and brought in back to the United States in the 1970s. It has long been a favorite of stoners and medical marijuana patients here. Durban Poison has THC levels that can reach 24%, making it one of the world's more powerful strains. This strain hits with a strong, happy head high that's great for creativity and daytime errands. Paranoia may be a possible side effect, along with dry mouth. Durban Poison is an effective treatment for depression and anxiety, as well as chronic pain, and it can also be helpful with nausea. This strain is ideal for making concentrates, as the bud is covered in over-sized trichomes. The dominant smell and taste of Durban Poison is earthy and sweet, with a subtle pine aroma. The buds are round and chunky, with a dense coating of trichomes. This strain is best for active periods, chores, and other daylight activities.\",\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\": 1075,\n                \"product_cultivar_type_id\": 2,\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\": 1,\n                \"product_grow_medium_id\": 8,\n                \"product_drying_method_id\": 1,\n                \"product_storage_type_id\": 2,\n                \"product_container_type_id\": null,\n                \"product_trim_method_id\": 2,\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\": \"Glass Jar\",\n                \"extraction_method_id\": null,\n                \"flavor_id\": null,\n                \"predominate_canabinoid_id\": 10,\n                \"unit_size\": null,\n                \"product_infusion_id\": null,\n                \"for_pets\": false,\n                \"seeded\": null,\n                \"harvest_date\": \"2023-03-01T00:00:00.000000Z\",\n                \"dry_date\": null,\n                \"extraction_date\": null,\n                \"best_by_date\": null,\n                \"production_date\": null,\n                \"test_date\": \"2023-07-19T00:00:00.000000Z\",\n                \"thc_limit\": true,\n                \"back_order\": false,\n                \"predominate_canabinoid_min_or_only\": 22,\n                \"predominate_canabinoid_max\": 30,\n                \"predominate_canabinoid_unit\": \"%\",\n                \"product_name\": \"Durban Poison\",\n                \"batch_name\": \"DPF-A-2\",\n                \"created_at\": \"2023-08-29T18:33:20.000000Z\",\n                \"updated_at\": \"2023-08-29T18:33:20.000000Z\",\n                \"product_category\": {\n                    \"id\": 16,\n                    \"name\": \"Flower\",\n                    \"short_display_name\": \"Flower\",\n                    \"long_display_name\": \"Flower – Bulk\"\n                },\n                \"product_type\": {\n                    \"id\": 90,\n                    \"name\": \"A Bud\",\n                    \"product_category_id\": 16,\n                    \"company_id\": null\n                },\n                \"modifiers\": [\n                    {\n                        \"amount\": \"270.00\",\n                        \"type\": \"discount\",\n                        \"bulk_discount\": false,\n                        \"reason\": \"Pricing Tier\",\n                        \"created_at\": \"2023-08-29T18:33:20.000000Z\",\n                        \"updated_at\": \"2023-08-29T18:33:20.000000Z\"\n                    }\n                ],\n                \"distillate_extract_sub_type\": null,\n                \"crude_extract_sub_type\": null,\n                \"cultivar\": {\n                    \"id\": 1075,\n                    \"name\": \"Durban Poison\"\n                },\n                \"cultivar_type\": {\n                    \"id\": 2,\n                    \"name\": \"Sativa\"\n                },\n                \"order_unit_measurement\": {\n                    \"id\": 6,\n                    \"name\": \"Pound\",\n                    \"alias\": \"Lb\"\n                },\n                \"unit_measurement\": {\n                    \"id\": 6,\n                    \"name\": \"Pound\",\n                    \"alias\": \"Lb\"\n                },\n                \"unit_size_unit_measurement\": null,\n                \"state_of_material\": null,\n                \"grow_environment\": {\n                    \"id\": 1,\n                    \"name\": \"Indoor\"\n                },\n                \"grow_medium\": {\n                    \"id\": 8,\n                    \"name\": \"Living Organic\"\n                },\n                \"drying_method\": {\n                    \"id\": 1,\n                    \"name\": \"Hung\"\n                },\n                \"storage_type\": {\n                    \"id\": 2,\n                    \"name\": \"Humidity/Temp Controlled Room\"\n                },\n                \"container_type\": null,\n                \"trim_method\": {\n                    \"id\": 2,\n                    \"name\": \"Hand\"\n                },\n                \"packaged_unit_size\": null,\n                \"feminized_type\": null,\n                \"flowering_period\": null,\n                \"flavor\": null,\n                \"extraction_method\": null,\n                \"infusion_method\": null,\n                \"predominate_canabinoid\": {\n                    \"id\": 10,\n                    \"name\": \"Tetrahydrocannabinol\",\n                    \"abbreviation\": \"THC\",\n                    \"display_name\": \"(THC) Tetrahydrocannabinol\"\n                },\n                \"documents\": [\n                    {\n                        \"name\": \"testing-doc-(17).pdf\",\n                        \"type\": \"Full Panel\",\n                        \"link\": \"https://demo.apextrading.com/b-api/docs/public-download-order-item-historical/\"\n                    }\n                ],\n                \"images\": [\n                    {\n                        \"id\": 169,\n                        \"sort_order\": 1,\n                        \"link\": \"https://s3-us-west-2.amazonaws.com/upload-app-demo.apextrading.com/public/companies/63/images/product/175/1608070314-1561421237-grandog_processed.jpg\",\n                        \"created_at\": \"2020-12-15T22:11:54.000000Z\"\n                    },\n                    {\n                        \"id\": 1034,\n                        \"sort_order\": 2,\n                        \"link\": \"https://s3-us-west-2.amazonaws.com/upload-app-demo.apextrading.com/public/companies/63/images/product/175/1678242865-DP1_processed.PNG\",\n                        \"created_at\": \"2023-03-08T02:34:27.000000Z\"\n                    },\n                    {\n                        \"id\": 1035,\n                        \"sort_order\": 3,\n                        \"link\": \"https://s3-us-west-2.amazonaws.com/upload-app-demo.apextrading.com/public/companies/63/images/product/175/1678242867-DP2_processed.PNG\",\n                        \"created_at\": \"2023-03-08T02:34:28.000000Z\"\n                    }\n                ],\n                \"additional_cannabinoids\": [\n                    {\n                        \"id\": 26,\n                        \"batch_cannabinoid_id\": 4803,\n                        \"batch_id\": 307,\n                        \"product_id\": 175,\n                        \"name\": \"Total Available Cannabinoids\",\n                        \"abbreviation\": \"TAC\",\n                        \"display_name\": \"(TAC) Total Available Cannabinoids\",\n                        \"measurement\": \"28.3\",\n                        \"measurement_type\": \"%\"\n                    },\n                    {\n                        \"id\": 2,\n                        \"batch_cannabinoid_id\": 4804,\n                        \"batch_id\": 307,\n                        \"product_id\": 175,\n                        \"name\": \"Cannabidiol\",\n                        \"abbreviation\": \"CBD\",\n                        \"display_name\": \"(CBD) Cannabidiol\",\n                        \"measurement\": \"0.02\",\n                        \"measurement_type\": \"%\"\n                    },\n                    {\n                        \"id\": 5,\n                        \"batch_cannabinoid_id\": 4805,\n                        \"batch_id\": 307,\n                        \"product_id\": 175,\n                        \"name\": \"Cannabigerol\",\n                        \"abbreviation\": \"CBG\",\n                        \"display_name\": \"(CBG) Cannabigerol\",\n                        \"measurement\": \"0.03\",\n                        \"measurement_type\": \"%\"\n                    }\n                ],\n                \"terpenes\": [\n                    {\n                        \"id\": 19,\n                        \"batch_terpene_id\": 7193,\n                        \"batch_id\": 307,\n                        \"product_id\": 175,\n                        \"name\": \"Total Terpenes\",\n                        \"display_name\": \"Total Terpenes\",\n                        \"measurement\": \"3.6\",\n                        \"measurement_type\": \"%\"\n                    },\n                    {\n                        \"id\": 2,\n                        \"batch_terpene_id\": 7194,\n                        \"batch_id\": 307,\n                        \"product_id\": 175,\n                        \"name\": \"a - Pinene\",\n                        \"display_name\": \"a - Pinene\",\n                        \"measurement\": \"0.2\",\n                        \"measurement_type\": \"%\"\n                    },\n                    {\n                        \"id\": 11,\n                        \"batch_terpene_id\": 7195,\n                        \"batch_id\": 307,\n                        \"product_id\": 175,\n                        \"name\": \"Linalool\",\n                        \"display_name\": \"Linalool\",\n                        \"measurement\": \"0.01\",\n                        \"measurement_type\": \"%\"\n                    },\n                    {\n                        \"id\": 12,\n                        \"batch_terpene_id\": 7196,\n                        \"batch_id\": 307,\n                        \"product_id\": 175,\n                        \"name\": \"Limonene\",\n                        \"display_name\": \"Limonene\",\n                        \"measurement\": \"0.8\",\n                        \"measurement_type\": \"%\"\n                    }\n                ]\n            },\n            {\n                \"id\": 9186,\n                \"order_id\": 27027,\n                \"brand\": \"Medicinal Extracts\",\n                \"product_category_id\": 3,\n                \"order_quantity\": 10,\n                \"inventory_quantity\": 10,\n                \"order_price\": \"2.00\",\n                \"order_unit_measurement_id\": 14,\n                \"product_type_id\": 65,\n                \"product_id\": 655,\n                \"order_sample\": 0,\n                \"product_sku\": \"CZYG_S\",\n                \"description\": \"Crazy Glue is a great all-around experience. Like a multi-tool, this strain is great in many situations without being overpowering in any one direction. Often referred to as a social high, it is going to relax you without slowing you down, and it's been said to offer a creative spark. This is a potent strain with low anxiety, making it great for most tolerance levels.\",\n                \"ingredients\": \"Ingredients List: Silica, BloomTerra, Ultimate Thrive, CalMag, Super Thrive, Carboblast, Molasses, Nitrate, Potassium Sulfate, MOST, Evergreen, Nukem, Kapow, Safer Brand 3-1, Green Cleaner, Trilogy, Pyganic, Des-x\",\n                \"product_cultivar_id\": 3067,\n                \"product_cultivar_type_id\": 3,\n                \"product_crude_extract_type_id\": null,\n                \"product_distillate_extract_sub_type_id\": null,\n                \"product_unit_measurement_id\": 14,\n                \"unit_size_unit_measurement_id\": null,\n                \"state_of_material_id\": null,\n                \"product_grow_environment_id\": 1,\n                \"product_grow_medium_id\": null,\n                \"product_drying_method_id\": null,\n                \"product_storage_type_id\": null,\n                \"product_container_type_id\": 13,\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\": 1,\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\": null,\n                \"flavor_id\": null,\n                \"predominate_canabinoid_id\": 10,\n                \"unit_size\": null,\n                \"product_infusion_id\": null,\n                \"for_pets\": false,\n                \"seeded\": null,\n                \"harvest_date\": \"2023-04-03T00:00:00.000000Z\",\n                \"dry_date\": null,\n                \"extraction_date\": null,\n                \"best_by_date\": null,\n                \"production_date\": \"2023-05-17T00:00:00.000000Z\",\n                \"test_date\": \"2023-04-26T00:00:00.000000Z\",\n                \"thc_limit\": true,\n                \"back_order\": false,\n                \"predominate_canabinoid_min_or_only\": 20,\n                \"predominate_canabinoid_max\": 31.1,\n                \"predominate_canabinoid_unit\": \"%\",\n                \"product_name\": \"Crazy Glue\",\n                \"batch_name\": \"CZYG_S\",\n                \"created_at\": \"2023-08-29T18:33:20.000000Z\",\n                \"updated_at\": \"2023-08-29T18:33:20.000000Z\",\n                \"product_category\": {\n                    \"id\": 3,\n                    \"name\": \"Preroll\",\n                    \"short_display_name\": \"Prerolls\",\n                    \"long_display_name\": \"Prerolls\"\n                },\n                \"product_type\": {\n                    \"id\": 65,\n                    \"name\": \"Whole Flower\",\n                    \"product_category_id\": 3,\n                    \"company_id\": null\n                },\n                \"modifiers\": [\n                    {\n                        \"amount\": \"2.00\",\n                        \"type\": \"discount\",\n                        \"bulk_discount\": false,\n                        \"reason\": \"Pricing Tier\",\n                        \"created_at\": \"2023-08-29T18:33:20.000000Z\",\n                        \"updated_at\": \"2023-08-29T18:33:20.000000Z\"\n                    }\n                ],\n                \"distillate_extract_sub_type\": null,\n                \"crude_extract_sub_type\": null,\n                \"cultivar\": {\n                    \"id\": 3067,\n                    \"name\": \"Crazy Glue\"\n                },\n                \"cultivar_type\": {\n                    \"id\": 3,\n                    \"name\": \"Hybrid\"\n                },\n                \"order_unit_measurement\": {\n                    \"id\": 14,\n                    \"name\": \"Unit\",\n                    \"alias\": \"U\"\n                },\n                \"unit_measurement\": {\n                    \"id\": 14,\n                    \"name\": \"Unit\",\n                    \"alias\": \"U\"\n                },\n                \"unit_size_unit_measurement\": null,\n                \"state_of_material\": null,\n                \"grow_environment\": {\n                    \"id\": 1,\n                    \"name\": \"Indoor\"\n                },\n                \"grow_medium\": null,\n                \"drying_method\": null,\n                \"storage_type\": null,\n                \"container_type\": {\n                    \"id\": 13,\n                    \"name\": \"Tubed\"\n                },\n                \"trim_method\": null,\n                \"packaged_unit_size\": null,\n                \"feminized_type\": null,\n                \"flowering_period\": null,\n                \"flavor\": null,\n                \"extraction_method\": null,\n                \"infusion_method\": null,\n                \"predominate_canabinoid\": {\n                    \"id\": 10,\n                    \"name\": \"Tetrahydrocannabinol\",\n                    \"abbreviation\": \"THC\",\n                    \"display_name\": \"(THC) Tetrahydrocannabinol\"\n                },\n                \"documents\": [\n                    {\n                        \"name\": \"testing-doc.pdf\",\n                        \"type\": \"Potency\",\n                        \"link\": \"https://demo.apextrading.com/b-api/docs/public-download-order-item-historical/\"\n                    },\n                    {\n                        \"name\": \"testing-doc.pdf\",\n                        \"type\": \"Pesticides\",\n                        \"link\": \"https://demo.apextrading.com/b-api/docs/public-download-order-item-historical/\"\n                    },\n                    {\n                        \"name\": \"testing-doc.pdf\",\n                        \"type\": \"Terpenes\",\n                        \"link\": \"https://demo.apextrading.com/b-api/docs/public-download-order-item-historical/\"\n                    },\n                    {\n                        \"name\": \"testing-doc-(28).pdf\",\n                        \"type\": \"Full Panel\",\n                        \"link\": \"https://demo.apextrading.com/b-api/docs/public-download-order-item-historical/\"\n                    }\n                ],\n                \"images\": [\n                    {\n                        \"id\": 797,\n                        \"sort_order\": 1,\n                        \"link\": \"https://s3-us-west-2.amazonaws.com/upload-app-demo.apextrading.com/public/companies/63/images/product/655/1632348178-preroll_processed.jpg\",\n                        \"created_at\": \"2021-09-22T22:02:58.000000Z\"\n                    },\n                    {\n                        \"id\": 798,\n                        \"sort_order\": 2,\n                        \"link\": \"https://s3-us-west-2.amazonaws.com/upload-app-demo.apextrading.com/public/companies/63/images/product/655/1632348178-2afgan_closeup_processed.jpg\",\n                        \"created_at\": \"2021-09-22T22:02:58.000000Z\"\n                    }\n                ],\n                \"additional_cannabinoids\": [\n                    {\n                        \"id\": 2,\n                        \"batch_cannabinoid_id\": 6492,\n                        \"batch_id\": 827,\n                        \"product_id\": 655,\n                        \"name\": \"Cannabidiol\",\n                        \"abbreviation\": \"CBD\",\n                        \"display_name\": \"(CBD) Cannabidiol\",\n                        \"measurement\": \"0.78\",\n                        \"measurement_type\": \"%\"\n                    }\n                ],\n                \"terpenes\": [\n                    {\n                        \"id\": 2,\n                        \"batch_terpene_id\": 10100,\n                        \"batch_id\": 827,\n                        \"product_id\": 655,\n                        \"name\": \"a - Pinene\",\n                        \"display_name\": \"a - Pinene\",\n                        \"measurement\": \"0.56\",\n                        \"measurement_type\": \"%\"\n                    },\n                    {\n                        \"id\": 11,\n                        \"batch_terpene_id\": 10101,\n                        \"batch_id\": 827,\n                        \"product_id\": 655,\n                        \"name\": \"Linalool\",\n                        \"display_name\": \"Linalool\",\n                        \"measurement\": \"0.34\",\n                        \"measurement_type\": \"%\"\n                    },\n                    {\n                        \"id\": 15,\n                        \"batch_terpene_id\": 10102,\n                        \"batch_id\": 827,\n                        \"product_id\": 655,\n                        \"name\": \"Terpineol\",\n                        \"display_name\": \"Terpineol\",\n                        \"measurement\": \"0.32\",\n                        \"measurement_type\": \"%\"\n                    }\n                ]\n            }\n        ],\n        \"payments\": [],\n        \"term\": {\n            \"name\": \"COD\",\n            \"finalPaymentDaysAfterDelivery\": 0\n        },\n        \"order_status\": {\n            \"id\": 2167,\n            \"name\": \"Complete\",\n            \"payment_percentage\": 0,\n            \"archived\": false,\n            \"position\": 9\n        },\n        \"sales_reps\": [\n            {\n                \"name\": \"Rob\",\n                \"phone\": \"6197506492\",\n                \"email\": \"rob@apextrading.com\"\n            }\n        ],\n        \"notes\": []\n    }\n}"}],"_postman_id":"038cfb23-73ea-429b-b8f1-3318ed5179e4"}],"id":"944c8448-eb68-4ff5-b696-abecc4772fbd","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":"944c8448-eb68-4ff5-b696-abecc4772fbd","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}}},{"name":"Shipping Orders","item":[{"name":"Payment","item":[{"name":"Payment","id":"d6184d4e-13cf-4e8d-b03d-b5e99111ad08","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer ","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/v1/shipping-orders/28128/payments/1596","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":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["v1","shipping-orders","28128","payments","1596"],"host":["https://app.apextrading.com/api"],"query":[],"variable":[]}},"response":[{"id":"b96893a6-da93-479b-b03f-fc1ab63dbbe8","name":"Payment","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer ","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/shipping-orders/28128/payments/1596"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 02:21: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":"4996"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"payment\": {\n        \"id\": 1596,\n        \"order_id\": 28128,\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:20:51.000000Z\",\n        \"updated_at\": \"2025-05-21T02:21:07.000000Z\"\n    }\n}"}],"_postman_id":"d6184d4e-13cf-4e8d-b03d-b5e99111ad08"},{"name":"Payment","id":"c559af6c-2e91-49f5-8ede-a09cf02eb86b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer ","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/v1/shipping-orders/28128/payments/1596","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":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["v1","shipping-orders","28128","payments","1596"],"host":["https://app.apextrading.com/api"],"query":[],"variable":[]}},"response":[{"id":"46ffb3dc-8a89-459b-8bfd-464769170c50","name":"Payment","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer ","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/shipping-orders/28128/payments/1596"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 02:21: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    \"message\": \"Payment deleted successfully\"\n}"}],"_postman_id":"c559af6c-2e91-49f5-8ede-a09cf02eb86b"},{"name":"Payment","id":"5c505f9e-e80f-4fb2-9c0e-a1e09da14308","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":"fd7480c7-c707-4f1c-ab6a-7de143677ad9","disabled":true},{"key":"note","value":"","description":"<p>optional, nullable | [string]</p>\n","type":"text","uuid":"a99e438c-4323-42ea-844f-e7d506e71741","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":"ebe3d0cc-95fb-4137-af2b-a24972381a2c"},{"key":"payment_date","value":"","description":"<p>optional, not nullable | [date] yyyy-mm-dd</p>\n","type":"text","uuid":"c80b1b83-8296-4102-930a-06574d4787c8","disabled":true}]},"url":"https://app.apextrading.com/api/v1/shipping-orders/28128/payments/1596","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":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["v1","shipping-orders","28128","payments","1596"],"host":["https://app.apextrading.com/api"],"query":[],"variable":[]}},"response":[{"id":"ce03c4d5-e17b-40ec-b378-d88c20ad4e9d","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":"fd7480c7-c707-4f1c-ab6a-7de143677ad9","disabled":true},{"key":"note","value":"","description":"optional, nullable | <string>","type":"text","uuid":"a99e438c-4323-42ea-844f-e7d506e71741","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":"ebe3d0cc-95fb-4137-af2b-a24972381a2c"},{"key":"payment_date","value":"","description":"optional, not nullable | <date> yyyy-mm-dd","type":"text","uuid":"c80b1b83-8296-4102-930a-06574d4787c8","disabled":true}]},"url":"https://app.apextrading.com/api/shipping-orders/28128/payments/1596"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 02:21:07 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\": 1596,\n        \"order_id\": 28128,\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:20:51.000000Z\",\n        \"updated_at\": \"2025-05-21T02:21:07.000000Z\"\n    }\n}"}],"_postman_id":"5c505f9e-e80f-4fb2-9c0e-a1e09da14308"},{"name":"Payment","id":"4f1d3d71-277b-4620-99e4-4b5c5acaaa15","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://app.apextrading.com/api/v1/shipping-orders/28128/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":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["v1","shipping-orders","28128","payments"],"host":["https://app.apextrading.com/api"],"query":[],"variable":[]}},"response":[{"id":"ac688e6a-f126-49ca-b9c5-0f8fb340a5bb","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://app.apextrading.com/api/shipping-orders/28128/payments"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 02:20:51 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\": 1596,\n        \"order_id\": 28128,\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:20:51.000000Z\",\n        \"updated_at\": \"2025-05-21T02:20:51.000000Z\"\n    }\n}"}],"_postman_id":"4f1d3d71-277b-4620-99e4-4b5c5acaaa15"}],"id":"78e8e14a-459b-4e1b-ab0e-62ef3f58b357","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":"78e8e14a-459b-4e1b-ab0e-62ef3f58b357","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}}},{"name":"Shipping Orders","id":"b5df0bbf-1735-409d-b2ee-ffe3d744cced","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer ","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/v1/shipping-orders?updated_at_from=2025-04-20T22:04:50Z&updated_at_to=2025-04-21T22:04:50Z","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":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["v1","shipping-orders"],"host":["https://app.apextrading.com/api"],"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 **REQUIRED **</p>\n","type":"text/plain"},"key":"updated_at_from","value":"2025-04-20T22:04:50Z"},{"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"},{"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 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"}],"variable":[]}},"response":[{"id":"c359909a-6424-49a3-9717-fa168c2e731e","name":"Shipping Orders","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer ","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"https://app.apextrading.com/api/v1/shipping-orders?updated_at_from=2025-04-20T22:04:50Z&updated_at_to=2025-04-21T22:04:50Z","host":["https://app.apextrading.com/api"],"path":["v1","shipping-orders"],"query":[{"key":"with_items","value":"false","description":"include order items","disabled":true},{"key":"with_payments","value":"false","description":"include payments made on order","disabled":true},{"key":"ids[]","value":"3","description":"filter by ids","disabled":true},{"key":"invoice_number","value":"high-hopes-3","description":"filter by invoice number","disabled":true},{"key":"buyer_ids[]","value":"3","description":"filter by buyer ids","disabled":true},{"key":"created_at_from","value":"2025-04-20T22:04:50Z","description":"filter by created after query in UTC","disabled":true},{"key":"created_at_to","value":"2025-04-22T22:04:50Z","description":"filter by created before query in UTC","disabled":true},{"key":"updated_at_from","value":"2025-04-20T22:04:50Z","description":"filter by updated after query in UTC **REQUIRED **"},{"key":"updated_at_to","value":"2025-04-21T22:04:50Z","description":"filter by updated before query in UTC"},{"key":"order_data_from","value":"2025-04-20T22:04:50Z","description":"deprecated, will be removed in future version","disabled":true},{"key":"order_date_to","value":"2025-04-22T22:04:50Z","description":"deprecated, will be removed in future version","disabled":true},{"key":"delivery_date_from","value":"2025-04-20T22:04:50Z","description":"deprecated, will be removed in future version","disabled":true},{"key":"delivery_date_to","value":"2025-04-22T22:04:50Z","description":"deprecated, will be removed in future version","disabled":true},{"key":"per_page","value":"15","description":"Number of records to return per page","disabled":true},{"key":"cancelled","value":"false","description":"filter by cancelled. All returned if no key present","type":"text","disabled":true},{"key":"order_status_ids[]","value":"3","description":"filter by order status ids","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Date","value":"Mon, 23 Mar 2026 16:46: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":"15"},{"key":"X-RateLimit-Remaining","value":"14"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"orders\": [\n        {\n            \"id\": 28134,\n            \"uuid\": \"94645d6e-7ec2-4bc5-a4f6-331017eb4f1e\",\n            \"invoice_number\": \"HH - 169\",\n            \"subtotal\": \"3000.00\",\n            \"total\": \"2835.00\",\n            \"excise_tax\": \"0.00\",\n            \"excise_tax_percentage\": null,\n            \"additional_discount\": \"0.00\",\n            \"delivery_cost\": \"0.00\",\n            \"cultivation_tax\": \"135.00\",\n            \"cultivation_tax_percentage\": 5,\n            \"order_date\": \"2025-04-21T18:42:18.000000Z\",\n            \"created_by\": \"Seller\",\n            \"split_from_order_id\": null,\n            \"operation_id\": null,\n            \"order_status_id\": 472,\n            \"cancelled\": false,\n            \"deal_flow_id\": 25,\n            \"net_terms_id\": 7,\n            \"pricing_tier_id\": 193,\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\": null,\n            \"ship_name\": \"1CannaCrate - Main St\",\n            \"ship_line_one\": \"123 Main St\",\n            \"ship_line_two\": null,\n            \"ship_city\": \"Bend\",\n            \"ship_state\": \"Oregon\",\n            \"ship_zip\": \"01234\",\n            \"ship_country\": \"US\",\n            \"ship_from_name\": \"High Hopes Farms\",\n            \"ship_from_line_one\": \"123 Terpene Way\",\n            \"ship_from_line_two\": null,\n            \"ship_from_city\": \"Portland\",\n            \"ship_from_state\": \"Oregon\",\n            \"ship_from_zip\": \"97227\",\n            \"ship_from_country\": \"US\",\n            \"turnaround_time\": null,\n            \"ship_tracking_number\": null,\n            \"ship_receiving_details\": null,\n            \"total_payments\": \"0.00\",\n            \"total_credits\": \"0.00\",\n            \"payment_status\": \"unpaid\",\n            \"payments_currently_due\": \"0.00\",\n            \"total_write_offs\": \"0.00\",\n            \"total_trades\": \"0.00\",\n            \"backorder\": false,\n            \"backorder_status\": null,\n            \"buyer_note\": \"Can you drop this off next week?\",\n            \"seller_company_id\": 13,\n            \"buyer_id\": 11196,\n            \"buyer_company_id\": 188,\n            \"buyer_contact_name\": null,\n            \"buyer_contact_phone\": null,\n            \"buyer_contact_email\": null,\n            \"buyer_state_license\": \"LIC-123456\",\n            \"created_at\": \"2025-04-21T18:42:18.000000Z\",\n            \"updated_at\": \"2025-04-21T18:42:18.000000Z\",\n            \"transporters\": [],\n            \"buyer\": {\n                \"id\": 11196,\n                \"name\": \"1CannaCrate - Main St\"\n            },\n            \"term\": {\n                \"name\": \"COD\",\n                \"finalPaymentDaysAfterDelivery\": 0\n            },\n            \"order_status\": {\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            \"sales_reps\": [\n                {\n                    \"name\": \"Stefanie\",\n                    \"phone\": \"9802933519\",\n                    \"email\": \"stefanie@apextrading.com\"\n                }\n            ]\n        },\n        {\n            \"id\": 28135,\n            \"uuid\": \"d8d295ef-0a31-47f1-a080-a5639e7bac21\",\n            \"invoice_number\": \"HH - 170\",\n            \"subtotal\": \"9450.00\",\n            \"total\": \"8562.75\",\n            \"excise_tax\": \"0.00\",\n            \"excise_tax_percentage\": null,\n            \"additional_discount\": \"0.00\",\n            \"delivery_cost\": \"0.00\",\n            \"cultivation_tax\": \"407.75\",\n            \"cultivation_tax_percentage\": 5,\n            \"order_date\": \"2025-04-21T19:24:24.000000Z\",\n            \"created_by\": \"Seller\",\n            \"split_from_order_id\": null,\n            \"operation_id\": null,\n            \"order_status_id\": 472,\n            \"cancelled\": false,\n            \"deal_flow_id\": 25,\n            \"net_terms_id\": 7,\n            \"pricing_tier_id\": 193,\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\": null,\n            \"ship_name\": \"1CannaCrate - Main St\",\n            \"ship_line_one\": \"123 Main St\",\n            \"ship_line_two\": null,\n            \"ship_city\": \"Bend\",\n            \"ship_state\": \"Oregon\",\n            \"ship_zip\": \"01234\",\n            \"ship_country\": \"US\",\n            \"ship_from_name\": \"High Hopes Farms\",\n            \"ship_from_line_one\": \"123 Terpene Way\",\n            \"ship_from_line_two\": null,\n            \"ship_from_city\": \"Portland\",\n            \"ship_from_state\": \"Oregon\",\n            \"ship_from_zip\": \"97227\",\n            \"ship_from_country\": \"US\",\n            \"turnaround_time\": null,\n            \"ship_tracking_number\": null,\n            \"ship_receiving_details\": null,\n            \"total_payments\": \"0.00\",\n            \"total_credits\": \"0.00\",\n            \"payment_status\": \"unpaid\",\n            \"payments_currently_due\": \"0.00\",\n            \"total_write_offs\": \"0.00\",\n            \"total_trades\": \"0.00\",\n            \"backorder\": false,\n            \"backorder_status\": null,\n            \"buyer_note\": null,\n            \"seller_company_id\": 13,\n            \"buyer_id\": 11196,\n            \"buyer_company_id\": 188,\n            \"buyer_contact_name\": null,\n            \"buyer_contact_phone\": null,\n            \"buyer_contact_email\": null,\n            \"buyer_state_license\": \"LIC-123456\",\n            \"created_at\": \"2025-04-21T19:24:24.000000Z\",\n            \"updated_at\": \"2025-04-21T19:24:24.000000Z\",\n            \"transporters\": [],\n            \"buyer\": {\n                \"id\": 11196,\n                \"name\": \"1CannaCrate - Main St\"\n            },\n            \"term\": {\n                \"name\": \"COD\",\n                \"finalPaymentDaysAfterDelivery\": 0\n            },\n            \"order_status\": {\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            \"sales_reps\": [\n                {\n                    \"name\": \"Stefanie\",\n                    \"phone\": \"9802933519\",\n                    \"email\": \"stefanie@apextrading.com\"\n                }\n            ]\n        },\n        {\n            \"id\": 28138,\n            \"uuid\": \"42c549d1-d41e-4d6e-b39c-e5e15727638a\",\n            \"invoice_number\": \"HH - 173\",\n            \"subtotal\": \"12150.00\",\n            \"total\": \"12495.00\",\n            \"excise_tax\": \"0.00\",\n            \"excise_tax_percentage\": null,\n            \"additional_discount\": \"0.00\",\n            \"delivery_cost\": \"0.00\",\n            \"cultivation_tax\": \"595.00\",\n            \"cultivation_tax_percentage\": 5,\n            \"order_date\": \"2025-04-21T19:32:37.000000Z\",\n            \"created_by\": \"Seller\",\n            \"split_from_order_id\": null,\n            \"operation_id\": null,\n            \"order_status_id\": 477,\n            \"cancelled\": false,\n            \"deal_flow_id\": 25,\n            \"net_terms_id\": 7,\n            \"pricing_tier_id\": 21,\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\": null,\n            \"ship_name\": \"Nectar - Pioneer\",\n            \"ship_line_one\": \"3453 Pioneer Dr SE\",\n            \"ship_line_two\": null,\n            \"ship_city\": \"Salem\",\n            \"ship_state\": \"Oregon\",\n            \"ship_zip\": \"97302\",\n            \"ship_country\": \"US\",\n            \"ship_from_name\": \"High Hopes Farms\",\n            \"ship_from_line_one\": \"611 SW Kingston Ave\",\n            \"ship_from_line_two\": null,\n            \"ship_from_city\": \"Portland\",\n            \"ship_from_state\": \"Oregon\",\n            \"ship_from_zip\": \"97205\",\n            \"ship_from_country\": \"US\",\n            \"turnaround_time\": null,\n            \"ship_tracking_number\": null,\n            \"ship_receiving_details\": null,\n            \"total_payments\": \"12495.00\",\n            \"total_credits\": \"0.00\",\n            \"payment_status\": \"completed\",\n            \"payments_currently_due\": \"0.00\",\n            \"total_write_offs\": \"0.00\",\n            \"total_trades\": \"0.00\",\n            \"backorder\": false,\n            \"backorder_status\": null,\n            \"buyer_note\": null,\n            \"seller_company_id\": 13,\n            \"buyer_id\": 6,\n            \"buyer_company_id\": 15,\n            \"buyer_contact_name\": \"John Test\",\n            \"buyer_contact_phone\": null,\n            \"buyer_contact_email\": \"john@bushel44.com\",\n            \"buyer_state_license\": \"571591\",\n            \"created_at\": \"2025-04-21T19:32:37.000000Z\",\n            \"updated_at\": \"2025-04-21T19:38:57.000000Z\",\n            \"transporters\": [],\n            \"buyer\": {\n                \"id\": 6,\n                \"name\": \"Nectar - Pioneer\"\n            },\n            \"term\": {\n                \"name\": \"COD\",\n                \"finalPaymentDaysAfterDelivery\": 0\n            },\n            \"order_status\": {\n                \"id\": 477,\n                \"name\": \"At Facility - In Packaging\",\n                \"payment_percentage\": 0,\n                \"archived\": false,\n                \"position\": 4,\n                \"parent_status\": {\n                    \"id\": 3,\n                    \"name\": \"Pending Shipment\"\n                }\n            },\n            \"sales_reps\": [\n                {\n                    \"name\": \"Stefanie\",\n                    \"phone\": \"9802933519\",\n                    \"email\": \"stefanie@apextrading.com\"\n                }\n            ]\n        }\n    ],\n    \"links\": {\n        \"first\": \"https://demo.apextrading.com/api/v1/shipping-orders?updated_at_from=2025-04-20T22%3A04%3A50Z&updated_at_to=2025-04-21T22%3A04%3A50Z&page=1\",\n        \"last\": \"https://demo.apextrading.com/api/v1/shipping-orders?updated_at_from=2025-04-20T22%3A04%3A50Z&updated_at_to=2025-04-21T22%3A04%3A50Z&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                \"page\": null,\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.apextrading.com/api/v1/shipping-orders?updated_at_from=2025-04-20T22%3A04%3A50Z&updated_at_to=2025-04-21T22%3A04%3A50Z&page=1\",\n                \"label\": \"1\",\n                \"page\": 1,\n                \"active\": true\n            },\n            {\n                \"url\": null,\n                \"label\": \"Next &raquo;\",\n                \"page\": null,\n                \"active\": false\n            }\n        ],\n        \"path\": \"https://demo.apextrading.com/api/v1/shipping-orders\",\n        \"per_page\": 15,\n        \"to\": 3,\n        \"total\": 3\n    }\n}"}],"_postman_id":"b5df0bbf-1735-409d-b2ee-ffe3d744cced"},{"name":"Shipping Order","id":"77ecae9a-6cf5-431c-813b-c4a440e710f0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer ","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/v1/shipping-orders/28128?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":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["v1","shipping-orders","28128"],"host":["https://app.apextrading.com/api"],"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":[{"id":"d3676d5b-b9bc-4e9e-a91c-dff62ef9ea02","name":"Shipping Order","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer ","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"https://app.apextrading.com/api/v1/shipping-orders/28128?with_deal_flow=true","host":["https://app.apextrading.com/api"],"path":["v1","shipping-orders","28128"],"query":[{"key":"with_history","value":"true","description":"include order history","type":"text","disabled":true},{"key":"with_deal_flow","value":"true","description":"include deal flow"}]}},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Date","value":"Mon, 23 Mar 2026 16:46: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":"15"},{"key":"X-RateLimit-Remaining","value":"14"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"order\": {\n        \"id\": 28134,\n        \"uuid\": \"94645d6e-7ec2-4bc5-a4f6-331017eb4f1e\",\n        \"invoice_number\": \"HH - 169\",\n        \"subtotal\": \"3000.00\",\n        \"total\": \"2835.00\",\n        \"excise_tax\": \"0.00\",\n        \"excise_tax_percentage\": null,\n        \"additional_discount\": \"0.00\",\n        \"delivery_cost\": \"0.00\",\n        \"cultivation_tax\": \"135.00\",\n        \"cultivation_tax_percentage\": 5,\n        \"order_date\": \"2025-04-21T18:42:18.000000Z\",\n        \"created_by\": \"Seller\",\n        \"split_from_order_id\": null,\n        \"operation_id\": null,\n        \"order_status_id\": 472,\n        \"cancelled\": false,\n        \"deal_flow_id\": 25,\n        \"net_terms_id\": 7,\n        \"pricing_tier_id\": 193,\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\": null,\n        \"ship_name\": \"1CannaCrate - Main St\",\n        \"ship_line_one\": \"123 Main St\",\n        \"ship_line_two\": null,\n        \"ship_city\": \"Bend\",\n        \"ship_state\": \"Oregon\",\n        \"ship_zip\": \"01234\",\n        \"ship_country\": \"US\",\n        \"ship_from_name\": \"High Hopes Farms\",\n        \"ship_from_line_one\": \"123 Terpene Way\",\n        \"ship_from_line_two\": null,\n        \"ship_from_city\": \"Portland\",\n        \"ship_from_state\": \"Oregon\",\n        \"ship_from_zip\": \"97227\",\n        \"ship_from_country\": \"US\",\n        \"turnaround_time\": null,\n        \"ship_tracking_number\": null,\n        \"ship_receiving_details\": null,\n        \"total_payments\": \"0.00\",\n        \"total_credits\": \"0.00\",\n        \"payment_status\": \"unpaid\",\n        \"payments_currently_due\": \"0.00\",\n        \"total_write_offs\": \"0.00\",\n        \"total_trades\": \"0.00\",\n        \"backorder\": false,\n        \"backorder_status\": null,\n        \"buyer_note\": \"Can you drop this off next week?\",\n        \"seller_company_id\": 13,\n        \"buyer_id\": 11196,\n        \"buyer_company_id\": 188,\n        \"buyer_contact_name\": null,\n        \"buyer_contact_phone\": null,\n        \"buyer_contact_email\": null,\n        \"buyer_state_license\": \"LIC-123456\",\n        \"created_at\": \"2025-04-21T18:42:18.000000Z\",\n        \"updated_at\": \"2025-04-21T18:42:18.000000Z\",\n        \"transporters\": [],\n        \"buyer\": {\n            \"id\": 11196,\n            \"name\": \"1CannaCrate - Main St\"\n        },\n        \"deal_flow\": {\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                    \"id\": 3535,\n                    \"name\": \"Create Metrc Manifest & Tags\",\n                    \"payment_percentage\": 0,\n                    \"archived\": false,\n                    \"position\": 3,\n                    \"parent_status\": {\n                        \"id\": 2,\n                        \"name\": \"Accepted\"\n                    }\n                },\n                {\n                    \"id\": 477,\n                    \"name\": \"At Facility - In Packaging\",\n                    \"payment_percentage\": 0,\n                    \"archived\": false,\n                    \"position\": 4,\n                    \"parent_status\": {\n                        \"id\": 3,\n                        \"name\": \"Pending Shipment\"\n                    }\n                },\n                {\n                    \"id\": 3536,\n                    \"name\": \"Packaged - Pending Shipment\",\n                    \"payment_percentage\": 0,\n                    \"archived\": false,\n                    \"position\": 5,\n                    \"parent_status\": {\n                        \"id\": 3,\n                        \"name\": \"Pending Shipment\"\n                    }\n                },\n                {\n                    \"id\": 3537,\n                    \"name\": \"Out for Delivery\",\n                    \"payment_percentage\": 0,\n                    \"archived\": false,\n                    \"position\": 6,\n                    \"parent_status\": {\n                        \"id\": 4,\n                        \"name\": \"In-Transit\"\n                    }\n                },\n                {\n                    \"id\": 479,\n                    \"name\": \"Delivered\",\n                    \"payment_percentage\": 0,\n                    \"archived\": false,\n                    \"position\": 7,\n                    \"parent_status\": {\n                        \"id\": 5,\n                        \"name\": \"Delivered\"\n                    }\n                },\n                {\n                    \"id\": 484,\n                    \"name\": \"Complete & Paid\",\n                    \"payment_percentage\": 0,\n                    \"archived\": false,\n                    \"position\": 8,\n                    \"parent_status\": {\n                        \"id\": 6,\n                        \"name\": \"Complete\"\n                    }\n                }\n            ]\n        },\n        \"payments\": [],\n        \"term\": {\n            \"name\": \"COD\",\n            \"finalPaymentDaysAfterDelivery\": 0\n        },\n        \"pricing_tier\": {\n            \"name\": \"New Buyer Marketplace 10% OFF\",\n            \"type\": \"Total\",\n            \"percent\": 10,\n            \"direction\": \"Discount\",\n            \"exclude_from_bulk_discounts\": false,\n            \"summary\": null,\n            \"expiration\": null\n        },\n        \"order_status\": {\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        \"notes\": [],\n        \"sales_reps\": [\n            {\n                \"name\": \"Stefanie\",\n                \"phone\": \"9802933519\",\n                \"email\": \"stefanie@apextrading.com\"\n            }\n        ],\n        \"metrc_transfer_template\": null,\n        \"items\": [\n            {\n                \"id\": 11307,\n                \"order_id\": 28134,\n                \"operation_id\": 13,\n                \"brand_id\": 118,\n                \"product_category_id\": 7,\n                \"order_quantity\": 200,\n                \"inventory_quantity\": 200,\n                \"order_price\": \"15.00\",\n                \"order_minimum_sales_price\": \"0.00\",\n                \"order_sales_unit_listing_price\": \"15.00\",\n                \"order_unit_measurement_id\": 14,\n                \"product_type_id\": 118,\n                \"product_id\": 2212,\n                \"batch_id\": 3278,\n                \"order_sample\": 0,\n                \"sample_quantity_label\": \"Sample\",\n                \"sample_quantity_pulled_from_inventory\": 0,\n                \"sample_size\": 0,\n                \"bulk_discounts_enabled\": true,\n                \"note\": null,\n                \"tiered_surcharge\": null,\n                \"metrc_package_label\": \"1A4FFFB00030D41000004834\",\n                \"operation_license\": \"020-X0001\",\n                \"product_sku\": null,\n                \"description\": \"<p>A hybrid with sweet flavors and relaxing effects, popular for its smooth high.</p>\",\n                \"ingredients\": null,\n                \"product_cultivar_id\": null,\n                \"product_cultivar_type_id\": 3,\n                \"product_crude_extract_type_id\": null,\n                \"product_distillate_extract_sub_type_id\": null,\n                \"product_unit_measurement_id\": 14,\n                \"unit_size_unit_measurement_id\": 2,\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\": null,\n                \"flavor_id\": null,\n                \"predominate_canabinoid_id\": 10,\n                \"unit_size\": 1,\n                \"product_infusion_id\": null,\n                \"for_pets\": false,\n                \"listing_price\": \"15.00\",\n                \"listing_price_base_unit\": \"0.00\",\n                \"minimum_sales_price_base_unit\": \"0.00\",\n                \"minimum_sales_price\": \"0.00\",\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\": 84,\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\": \"Gelato - 1g Badder\",\n                \"batch_name\": \"Batch 1\",\n                \"created_at\": \"2025-04-21T18:42:18.000000Z\",\n                \"updated_at\": \"2025-04-21T19:18:43.000000Z\",\n                \"unit_price\": {\n                    \"message\": \"We do not believe this field is used and are considering removing it. Please email api.apextrading.com if you are utilizing it and explain how you are using it.\"\n                },\n                \"operation\": {\n                    \"id\": 13,\n                    \"name\": \"High Hopes Farm - Cultivation\",\n                    \"industry\": \"Recreational\",\n                    \"state_license\": \"020-X0001\"\n                },\n                \"product_category\": {\n                    \"id\": 7,\n                    \"name\": \"Extract\",\n                    \"short_display_name\": \"Extracts\",\n                    \"long_display_name\": \"Extracts\"\n                },\n                \"brand\": {\n                    \"id\": 118,\n                    \"name\": \"CannaCrate Cultivation\"\n                },\n                \"product_type\": {\n                    \"id\": 118,\n                    \"name\": \"Badder\",\n                    \"product_category_id\": 7,\n                    \"company_id\": null\n                },\n                \"modifiers\": [\n                    {\n                        \"amount\": \"300.00\",\n                        \"type\": \"discount\",\n                        \"bulk_discount\": false,\n                        \"reason\": \"Pricing Tier\",\n                        \"created_at\": \"2025-04-21T18:42:18.000000Z\",\n                        \"updated_at\": \"2025-04-21T18:42:18.000000Z\"\n                    }\n                ],\n                \"distillate_extract_sub_type\": null,\n                \"crude_extract_sub_type\": null,\n                \"cultivar\": null,\n                \"cultivar_type\": {\n                    \"id\": 3,\n                    \"name\": \"Hybrid\"\n                },\n                \"unit_measurement\": {\n                    \"id\": 14,\n                    \"name\": \"Unit\",\n                    \"alias\": \"U\"\n                },\n                \"order_unit_measurement\": {\n                    \"id\": 14,\n                    \"name\": \"Unit\",\n                    \"alias\": \"U\"\n                },\n                \"unit_size_unit_measurement\": {\n                    \"id\": 2,\n                    \"name\": \"Gram\",\n                    \"alias\": \"Gm\"\n                },\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\": null,\n                \"infusion_method\": null,\n                \"predominate_canabinoid\": {\n                    \"id\": 10,\n                    \"name\": \"Tetrahydrocannabinol\",\n                    \"abbreviation\": \"THC\",\n                    \"display_name\": \"(THC) Tetrahydrocannabinol\"\n                },\n                \"images\": [\n                    {\n                        \"id\": 1282,\n                        \"sort_order\": 1,\n                        \"link\": \"https://s3-us-west-2.amazonaws.com/upload-app-demo.apextrading.com/public/companies/13/images/product/2212/1741316171-Screenshot-2025-03-06-at-20.55.56_processed.png\",\n                        \"created_at\": \"2025-03-07T02:56:12.000000Z\"\n                    }\n                ],\n                \"additional_cannabinoids\": [],\n                \"terpenes\": []\n            }\n        ]\n    }\n}"}],"_postman_id":"77ecae9a-6cf5-431c-813b-c4a440e710f0"},{"name":"Shipping Order","id":"37955dc9-d484-47d0-b12b-2843f1d11adb","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":"472","description":"<p>optional, not nullable | [integer]</p>\n","type":"text","uuid":"7f42e408-2bb9-49e0-bab9-cf89ca935207"}]},"url":"https://app.apextrading.com/api/v1/shipping-orders/28128","description":"<p><strong>Sparse Update</strong></p>\n<p>A subset of fields on the order are available for update.</p>\n<p>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":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["v1","shipping-orders","28128"],"host":["https://app.apextrading.com/api"],"query":[],"variable":[]}},"response":[],"_postman_id":"37955dc9-d484-47d0-b12b-2843f1d11adb"}],"id":"3cf0c9b0-71f3-4d28-a94c-d08eea45ebc9","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":"3cf0c9b0-71f3-4d28-a94c-d08eea45ebc9","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}}},{"name":"State Of Materials","item":[{"name":"State Of Materials","id":"e4e0fcd2-abed-440c-87e1-556cee6088fb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/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":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["v1","state-of-materials"],"host":["https://app.apextrading.com/api"],"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":"3c2919eb-6055-4fd3-9d62-93a07cc09799","name":"State Of Materials","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"https://app.apextrading.com/api/state-of-materials","host":["https://app.apextrading.com/api"],"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:40: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":"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\": \"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.apextrading.com/api/v1/state-of-materials?page=1\",\n        \"last\": \"https://demo.apextrading.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.apextrading.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.apextrading.com/api/v1/state-of-materials\",\n        \"per_page\": 15,\n        \"to\": 8,\n        \"total\": 8\n    },\n    \"status\": \"success\"\n}"}],"_postman_id":"e4e0fcd2-abed-440c-87e1-556cee6088fb"},{"name":"State Of Material","id":"1dc720e6-6b8f-4d1f-9de4-9161c44c17ea","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/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":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["v1","state-of-materials","{{state_of_material_id}}"],"host":["https://app.apextrading.com/api"],"query":[],"variable":[]}},"response":[{"id":"dee9a22c-5fcb-4cc9-af08-85aacb142f0a","name":"State Of Material","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/state-of-materials/{{state_of_material_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 01:40: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    \"data\": {\n        \"id\": 2,\n        \"name\": \"Hammer Milled\"\n    }\n}"}],"_postman_id":"1dc720e6-6b8f-4d1f-9de4-9161c44c17ea"}],"id":"d1f051a0-c808-4bea-975e-7fa05e3c998e","_postman_id":"d1f051a0-c808-4bea-975e-7fa05e3c998e","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}}},{"name":"Storage Types","item":[{"name":"Storage Types","id":"13f00d4f-518e-441b-ae84-1d88221ca49f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/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":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["v1","storage-types"],"host":["https://app.apextrading.com/api"],"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":"8afefd79-f4fa-4d54-adb6-4aae5c234dcb","name":"Storage Types","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"https://app.apextrading.com/api/storage-types","host":["https://app.apextrading.com/api"],"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:35: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    \"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.apextrading.com/api/v1/storage-types?page=1\",\n        \"last\": \"https://demo.apextrading.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.apextrading.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.apextrading.com/api/v1/storage-types\",\n        \"per_page\": 15,\n        \"to\": 3,\n        \"total\": 3\n    },\n    \"status\": \"success\"\n}"}],"_postman_id":"13f00d4f-518e-441b-ae84-1d88221ca49f"},{"name":"Storage Type","id":"9a5c6d4b-d4f9-47ab-ba74-65cd017b89cc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/v1/storage-types/2","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":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["v1","storage-types","2"],"host":["https://app.apextrading.com/api"],"query":[],"variable":[]}},"response":[{"id":"8da54e9c-2b83-4ea7-8eac-cd2fcea73f67","name":"Storage Type","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/storage-types/2"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 01:35: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":"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\": \"Humidity/Temp Controlled Room\",\n        \"company_id\": null,\n        \"product_category_id\": 1\n    }\n}"}],"_postman_id":"9a5c6d4b-d4f9-47ab-ba74-65cd017b89cc"},{"name":"Storage Type","id":"70a7497e-0b31-4dfe-95b7-ae04b2bcbf0c","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://app.apextrading.com/api/v1/storage-types/2","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":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["v1","storage-types","2"],"host":["https://app.apextrading.com/api"],"query":[],"variable":[]}},"response":[{"id":"be4f7b1a-f42e-481d-bde9-42364ab34bfe","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://app.apextrading.com/api/storage-types/2"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 01:36:57 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\": 13,\n        \"product_category_id\": 3\n    }\n}"}],"_postman_id":"70a7497e-0b31-4dfe-95b7-ae04b2bcbf0c"},{"name":"Storage Type","id":"968bdc4e-a81b-40cc-9583-5ef91f8ecc59","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/v1/storage-types/2","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":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["v1","storage-types","2"],"host":["https://app.apextrading.com/api"],"query":[],"variable":[]}},"response":[{"id":"219f6587-98ad-4d9c-9410-fc21bc52fd10","name":"Storage Type","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/storage-types/2"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 01:37: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":"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":"968bdc4e-a81b-40cc-9583-5ef91f8ecc59"},{"name":"Storage Type","id":"ab24dbfc-f138-4888-9481-a21120a6349e","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://app.apextrading.com/api/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":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["v1","storage-types"],"host":["https://app.apextrading.com/api"],"query":[],"variable":[]}},"response":[{"id":"3673a60d-9da7-4ae1-a9cf-7726537b9aca","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://app.apextrading.com/api/storage-types"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 01:36: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":"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 storage type name\",\n        \"company_id\": 13,\n        \"product_category_id\": 3\n    }\n}"}],"_postman_id":"ab24dbfc-f138-4888-9481-a21120a6349e"}],"id":"75fcf2f8-5b19-49f8-b1d8-f4349a3632a9","description":"<p>Storage Types are not available for every category of product. Please see the product field rules endpoint.</p>\n","_postman_id":"75fcf2f8-5b19-49f8-b1d8-f4349a3632a9","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}}},{"name":"Terpenes","item":[{"name":"Terpenes","id":"7a33d6c9-3b84-4a18-a3f0-f16d182755f2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/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":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["v1","terpenes"],"host":["https://app.apextrading.com/api"],"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":"d127e7ad-214e-49d3-b6a0-f366b6468ff9","name":"Terpenes","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"https://app.apextrading.com/api/terpenes","host":["https://app.apextrading.com/api"],"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:27:38 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\": \"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\": \"Linalool\"\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.apextrading.com/api/v1/terpenes?page=1\",\n        \"last\": \"https://demo.apextrading.com/api/v1/terpenes?page=4\",\n        \"prev\": null,\n        \"next\": \"https://demo.apextrading.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.apextrading.com/api/v1/terpenes?page=1\",\n                \"label\": \"1\",\n                \"active\": true\n            },\n            {\n                \"url\": \"https://demo.apextrading.com/api/v1/terpenes?page=2\",\n                \"label\": \"2\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.apextrading.com/api/v1/terpenes?page=3\",\n                \"label\": \"3\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.apextrading.com/api/v1/terpenes?page=4\",\n                \"label\": \"4\",\n                \"active\": false\n            },\n            {\n                \"url\": \"https://demo.apextrading.com/api/v1/terpenes?page=2\",\n                \"label\": \"Next &raquo;\",\n                \"active\": false\n            }\n        ],\n        \"path\": \"https://demo.apextrading.com/api/v1/terpenes\",\n        \"per_page\": 15,\n        \"to\": 15,\n        \"total\": 56\n    },\n    \"status\": \"success\"\n}"}],"_postman_id":"7a33d6c9-3b84-4a18-a3f0-f16d182755f2"},{"name":"Terpene","id":"bce28b8a-7078-4ab5-9189-7321616386ba","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/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":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["v1","terpenes","{{terpene_id}}"],"host":["https://app.apextrading.com/api"],"query":[],"variable":[]}},"response":[{"id":"450cff0e-409b-4004-a06e-9bc647e51e19","name":"Terpene","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"","value":"","type":"text","disabled":true}],"url":"https://app.apextrading.com/api/terpenes/{{terpene_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 01:27: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\": \"a - Pinene\"\n    }\n}"}],"_postman_id":"bce28b8a-7078-4ab5-9189-7321616386ba"}],"id":"d5b39649-731d-4c28-8ed8-dc04b24e4c5f","_postman_id":"d5b39649-731d-4c28-8ed8-dc04b24e4c5f","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}}},{"name":"Transporter Orders","item":[{"name":"Transporter Orders","id":"bb48200e-a644-4120-9e51-e8bbf4d835c3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer ","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/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":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["v2","transporter-orders"],"host":["https://app.apextrading.com/api"],"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":"bb48200e-a644-4120-9e51-e8bbf4d835c3"},{"name":"Transporter Order","id":"e027e01c-42e9-40f6-aa77-21ba1512e175","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer ","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/v2/transporter-orders/{{transporter_order_id}}?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":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["v2","transporter-orders","{{transporter_order_id}}"],"host":["https://app.apextrading.com/api"],"query":[{"description":{"content":"<p>inclue deal flow</p>\n","type":"text/plain"},"key":"with_deal_flow","value":"false"}],"variable":[]}},"response":[],"_postman_id":"e027e01c-42e9-40f6-aa77-21ba1512e175"}],"id":"661eeabf-b8df-44d6-9c09-c3881c52bd4f","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":"661eeabf-b8df-44d6-9c09-c3881c52bd4f","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}}},{"name":"Trim Methods","item":[{"name":"Trim Methods","id":"eaf104fd-f7b7-4a9a-8345-3304394ba422","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/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":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["v1","trim-methods"],"host":["https://app.apextrading.com/api"],"query":[{"description":{"content":"<p>Number of records to return per page</p>\n","type":"text/plain"},"key":"per_page","value":"15"}],"variable":[]}},"response":[{"id":"df42f11f-31f8-45f3-b53b-2649af988785","name":"Trim Methods","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"https://app.apextrading.com/api/trim-methods?per_page=15","host":["https://app.apextrading.com/api"],"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:29: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":"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\": \"Polyethylene Glycols\"\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            \"id\": 10,\n            \"name\": \"Combination\"\n        }\n    ],\n    \"links\": {\n        \"first\": \"https://demo.apextrading.com/api/v1/trim-methods?page=1\",\n        \"last\": \"https://demo.apextrading.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.apextrading.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.apextrading.com/api/v1/trim-methods\",\n        \"per_page\": 15,\n        \"to\": 10,\n        \"total\": 10\n    },\n    \"status\": \"success\"\n}"}],"_postman_id":"eaf104fd-f7b7-4a9a-8345-3304394ba422"},{"name":"Trim Method","id":"2597b888-0188-4596-8896-ef897006dc17","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/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":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["v1","trim-methods","{{trim_methods_id}}"],"host":["https://app.apextrading.com/api"],"query":[],"variable":[]}},"response":[{"id":"eef140fc-0bc9-4db6-b34d-c8d46aa239f8","name":"Trim Method","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/trim-methods/{{trim_methods_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 01:29: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\": \"Hand\"\n    }\n}"}],"_postman_id":"2597b888-0188-4596-8896-ef897006dc17"}],"id":"83ba2563-3669-4b6f-9e69-88c292621fab","_postman_id":"83ba2563-3669-4b6f-9e69-88c292621fab","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}}},{"name":"Unit Measurements","item":[{"name":"Unit Measurements","id":"f2759733-6661-4631-b3a6-66887afa277a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/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":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["v1","unit-measurements"],"host":["https://app.apextrading.com/api"],"query":[{"description":{"content":"<p>Number of records to return per page</p>\n","type":"text/plain"},"key":"per_page","value":"15"}],"variable":[]}},"response":[{"id":"930942a1-fd09-4ac2-af40-0385260857cd","name":"Unit Measurements","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"https://app.apextrading.com/api/unit-measurements?per_page=15","host":["https://app.apextrading.com/api"],"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:29: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":"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\": \"Milligram\"\n        },\n        {\n            \"id\": 2,\n            \"name\": \"Gram\"\n        },\n        {\n            \"id\": 3,\n            \"name\": \"Kilogram\"\n        },\n        {\n            \"id\": 4,\n            \"name\": \"Metric ton\"\n        },\n        {\n            \"id\": 5,\n            \"name\": \"Ounce\"\n        },\n        {\n            \"id\": 6,\n            \"name\": \"Pound\"\n        },\n        {\n            \"id\": 7,\n            \"name\": \"US Ton\"\n        },\n        {\n            \"id\": 8,\n            \"name\": \"Milliliter\"\n        },\n        {\n            \"id\": 9,\n            \"name\": \"Liter\"\n        },\n        {\n            \"id\": 10,\n            \"name\": \"US Fluid Ounce\"\n        },\n        {\n            \"id\": 11,\n            \"name\": \"US Liquid Quart\"\n        },\n        {\n            \"id\": 12,\n            \"name\": \"US Liquid Pint\"\n        },\n        {\n            \"id\": 13,\n            \"name\": \"US Gallon\"\n        },\n        {\n            \"id\": 14,\n            \"name\": \"Unit\"\n        }\n    ],\n    \"links\": {\n        \"first\": \"https://demo.apextrading.com/api/v1/unit-measurements?page=1\",\n        \"last\": \"https://demo.apextrading.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.apextrading.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.apextrading.com/api/v1/unit-measurements\",\n        \"per_page\": 15,\n        \"to\": 14,\n        \"total\": 14\n    },\n    \"status\": \"success\"\n}"}],"_postman_id":"f2759733-6661-4631-b3a6-66887afa277a"},{"name":"Unit Measurement","id":"49d77d95-456b-4dca-9455-de63970d3ec8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/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":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["v1","unit-measurements","{{unit_measurement_id}}"],"host":["https://app.apextrading.com/api"],"query":[],"variable":[]}},"response":[{"id":"88cdd8fe-71ce-4eaf-bfea-0c5d6851c9cf","name":"Unit Measurement","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://app.apextrading.com/api/unit-measurements/{{unit_measurement_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 01:29: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":"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\": \"Gram\"\n    }\n}"}],"_postman_id":"49d77d95-456b-4dca-9455-de63970d3ec8"}],"id":"ed9cb833-e4f9-442e-b86e-688fb0d51831","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":"ed9cb833-e4f9-442e-b86e-688fb0d51831","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}}},{"name":"welcome","id":"e3df0a19-032c-4d72-8cae-d7bf593062f3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://app.apextrading.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":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","id":"f270aa87-1f44-472a-a140-fbdca0ff2f7f","name":"Apex Public Api","type":"collection"}},"urlObject":{"path":["v1","welcome"],"host":["https://app.apextrading.com/api"],"query":[],"variable":[]}},"response":[{"id":"dbe26df8-8b48-43c0-8dd6-67044ede72cc","name":"welcome","originalRequest":{"method":"GET","header":[],"url":"https://app.apextrading.com/api/welcome"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 01:40: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":"4998"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"name\": \"Apex Trading\",\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        \"update:products\",\n        \"view:batches\",\n        \"update: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":"e3df0a19-032c-4d72-8cae-d7bf593062f3"}],"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]}},"event":[{"listen":"prerequest","script":{"id":"17a9a9f0-baad-459d-8314-daa1edc0964a","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"b7f021c8-e8e6-4c5f-b2b6-d1ece113c99e","type":"text/javascript","exec":[""]}}],"variable":[{"key":"base_url","value":"https://app.apextrading.com/api"},{"key":"token","value":""},{"key":"batch_id","value":"2","disabled":true},{"key":"payment_id","value":"2","disabled":true},{"key":"order_id","value":"2","disabled":true},{"key":"buyer_id","value":"2","disabled":true},{"key":"deal_flow_id","value":"2","disabled":true},{"key":"brand_id","value":"2","disabled":true},{"key":"buyer_stage_id","value":"2","disabled":true},{"key":"net_term_id","value":"2","disabled":true},{"key":"product_id","value":"2","disabled":true},{"key":"receiving_order_id","value":"2","disabled":true},{"key":"shipping_order_id","value":"2","disabled":true},{"key":"transporter_order_id","value":"2","disabled":true},{"key":"cannabinoid_id","value":"2","disabled":true},{"key":"infusion_method_id","value":"2","disabled":true},{"key":"buyer_lead_id","value":"2","disabled":true},{"key":"cannabinoid_id","value":"2","disabled":true},{"key":"storage_type_id","value":"2"},{"key":"shipping_order_id","value":"28128"},{"key":"payment_id","value":"1596"}]}