{"info":{"_postman_id":"fcfa56c7-f9b7-4034-a12b-e4120df0e7c4","name":"FloPay API","description":"<html><head></head><body><p>Welcome to the FloPay API. FloPay allows you to manage the orders, inventory, and payments that make your business flow. All instances of the FloPay API are in sandbox mode by default. In order to have your payment account boarded and activated, email <a href=\"https://mailto:contact@flopay.co\">contact@flopay.co</a></p>\n<p>FloPay uses PCI Level 1 Credit Card Tokenization provided by TokenEx. No credit card information is stored in our database</p>\n<p><strong>Base Urls for the postman Collection</strong><br>base = <a href=\"https://devapi.flopay.co/erp\">https://devapi.flopay.co/erp</a><br>webHookBase = <a href=\"https://devapi.flopay.co/hook\">https://devapi.flopay.co/hook</a><br>gatewayBase = <a href=\"https://devapi.flopay.co/gateway\">https://devapi.flopay.co/gateway</a><br>inboxBase = <a href=\"https://devapi.flopay.co/inbox\">https://devapi.flopay.co/inbox</a></p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"31217055","collectionId":"fcfa56c7-f9b7-4034-a12b-e4120df0e7c4","publishedId":"2s9YXpUdoJ","public":true,"customColor":{"top-bar":"fff","right-sidebar":"334653","highlight":"2a9d8f"},"publishDate":"2026-02-18T18:18:04.000Z"},"item":[{"name":"Authorization","item":[],"id":"1c1246b6-53d8-4175-a9e2-3df840c93319","description":"<p>The FloPay API uses basic authentication. It can be accessed by the same users that access the UI. All functionality available in the UI is available in the API and vice-versa. To access the API:</p>\n<ul>\n<li><p>Create a <a href=\"https://devapp.flopay.co/signup\">new user.</a></p>\n</li>\n<li><p>Use your username and password to create a basic authentication header.</p>\n</li>\n<li><p><strong>Note</strong>: All users have full access all services by default. To change access levels, use the <a href=\"https://devapp.flopay.co/account\">UI</a>.</p>\n</li>\n<li><p>Production Base Url: <a href=\"https://api.flopay.co\">https://api.flopay.co</a></p>\n</li>\n<li><p>Testing and Prerelease Url: <a href=\"https://devapi.flopay.co\">https://devapi.flopay.co</a></p>\n</li>\n<li><p>Base Urls:</p>\n<ul>\n<li><p>{{base}} <a href=\"https://devapi.flopay.co/erp\">https://devapi.flopay.co/erp</a></p>\n</li>\n<li><p>{{gatewayBase}} <a href=\"https://devapi.flopay.co/inbox\">https://devapi.flopay.co/inbox</a></p>\n</li>\n<li><p>{{inboxBase}} <a href=\"https://devapi.flopay.co/gateway\">https://devapi.flopay.co/gateway</a></p>\n</li>\n<li><p>{{webHookBase}} <a href=\"https://devapi.flopay.co/gateway\">https://devapi.flopay.co/hook</a></p>\n</li>\n</ul>\n</li>\n</ul>\n<h1 id=\"authentication\">Authentication</h1>\n<h2 id=\"basic-auth\"><strong>Basic Auth</strong></h2>\n<p><a href=\"https://en.wikipedia.org/wiki/Basic_access_authentication\">Basic authentication</a> is a simple authentication scheme built into HTTP protocol. The client sends the Authorization header containing the 'Basic' word followed by a space and a <a href=\"https://www.base64encode.org/\">base64-encoded</a> <code>username:password</code> string.</p>\n<p>To create a basic auth header using the Postman app, open any endpoint in this documentation. Click on the Authorization tab. Select Basic Auth from the 'Auth Type' dropdown. Enter your username and password in the appropriate fields.</p>\n<p>Click the blue 'Send' button. Open the Console at the bottom of the page. Note the Authorization header—this is your basic auth header and can now be used to send API requests using your prefered HTTP client.</p>\n<p><strong>Example:</strong></p>\n<p><code>Authorization: Basic eW91cnVzZXJuYW1lOnlvdXJwYXNzd29yZA==</code></p>\n<p><strong>Note:</strong> You <em>must</em> store your username, password and basic auth header securely. While sending requests via Postman, you can store your username and password securely using <a href=\"https://learning.postman.com/docs/sending-requests/variables/variables/\">environment variables</a>. Once you integrate the Flopay API into your own codebase you must store them securely in your own codebase.</p>\n<h2 id=\"business-id\"><strong>Business ID</strong></h2>\n<p>Each Flopay account is represented by a single business ID. You can find your business ID by opening the <a href=\"https://app.flopay.co/account\">My Account</a> tab in the UI. Each business ID can only be attached to a single payment merchant account and a single QuickBooks Online account. You can use the API to access all same the information regarding your business ID that is displayed in the Flopay UI.</p>\n<p><strong>Handling Multiple Accounts</strong></p>\n<p>By default, each API key only supports a single business account. If you have a special need to handle multiple business accounts with a single API key, contact <a href=\"https://mailto:contact@flopay.co\">contact@flopay.co</a>. A single API key can support a maximum of 70 businesses.</p>\n<h1 id=\"sending-api-requests\">Sending API requests</h1>\n<h2 id=\"put-and-post-requests\"><strong>PUT and POST requests</strong></h2>\n<p>In addition to the basic auth header, all <code>POST</code> and <code>PUT</code> requests must include your business ID in the body of the request.</p>\n<p><strong>Example:</strong></p>\n<p><code>{businessId:'1234'}</code></p>\n<p><strong>Note:</strong> Failing to include your business ID will result in an <code>UNAUTHORIZED</code> error:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"statusCode\": 401,\n  \"errorCode\": \"4111\",\n  \"message\": \"UNAUTHORIZED\"\n}\n\n</code></pre>\n<p>Generally, <code>PUT</code> or <code>POST</code> commands cannot accept multiple business IDs.</p>\n<h2 id=\"get-requests\"><strong>GET requests</strong></h2>\n<h3 id=\"multiple-business-ids\">Multiple business IDs</h3>\n<p>When sending a <code>GET</code> request, multiple business IDs can be specified in the query string.</p>\n<p><code>?businessIds=123,334</code></p>\n<h3 id=\"filtering-results\">Filtering results</h3>\n<p>In order to filter results, most <code>GET</code> requests can be filtered using <a href=\"https://en.wikipedia.org/wiki/Query_string\">query strings</a>. See the examples below for examples of the possible filtering query strings.</p>\n<ul>\n<li><p>Sort</p>\n<ul>\n<li><p>Descending: <code>&amp;sort=-updatedAt</code></p>\n</li>\n<li><p>Acsending: <code>&amp;sort=updatedAt</code></p>\n</li>\n</ul>\n</li>\n<li><p>Dates:</p>\n<ul>\n<li><p>Start date: <code>&amp;startDate=2024-02-14T07:00:00.000Z</code></p>\n</li>\n<li><p>End date: <code>&amp;endDate=2024-02-16T06:59:59.999</code></p>\n</li>\n<li><p>Start date and end date: <code>&amp;startDate=2024-02-14T07:00:00.000Z&amp;endDate=2024-02-16T06:59:59.999</code></p>\n</li>\n<li><p>Most date formats and date filters are ISO 8601 format and accept the same. While dates are saved in UTC filters with proper ISO 8601 format will be converted correctly.</p>\n</li>\n</ul>\n</li>\n<li><p>Pagination:</p>\n<ul>\n<li><p>Display first set of 10 results : <code>?limit=10&amp;offset=0</code></p>\n</li>\n<li><p>Display second set of 10 results : <code>?limit=10&amp;offset=10</code></p>\n</li>\n</ul>\n</li>\n<li><p>Value-based: <code>?property=value</code></p>\n</li>\n</ul>\n","_postman_id":"1c1246b6-53d8-4175-a9e2-3df840c93319"},{"name":"Payments  and Payment Links","item":[{"name":"Tokenize","event":[{"listen":"test","script":{"type":"text/javascript","exec":["pm.test('Status code is 200', function () {","    pm.response.to.have.status(200);","})"]}}],"id":"229756f1-83b0-4e14-912d-c1f8bc3481c0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"replaceWithFloPayUser"},{"key":"password","value":"replaceWithFloPayPassword"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"encryptedCard\": \"juhkq9WH1Q5d80MphrQWAhZd8cR/JsYx6XaEBeSb9rkMh2Sm7m/HAcbRMfoqyW8KAILDmaC11EgaGzf74Mwe0nIzKEAf3aV1ibrdG2ILbtc41Kr4RhTyuGlJHy8EJ7wgGnoq3kZjOIaFEgkPEpEo5s7HqD/LuuEMtprpcHHmeyMzw+oJiil7SJEqWx2yZPdQnMmGN9dLx0U+PFFmsY5d0x82ohOQeMF/u0rIlR3tOue/TKZmGFqllpuR+aVzlooCSKAV/b6fVpP5bd0t5lELiBH4LrR9rHa4DlGPkbsP3YyEUNaktCu9wh8/MRVPqLpHMR4jd0y+VDuzJ5ocQC0kTg==\",\r\n    \"encryptedCvv\": \"nu+TWv3pI9AXgrbwlxmeo++J0QPS4AKgw0XDS1xY2McSUm0LhCoi6cXDGDWaePbU6F5Wwai1vtjMuby1tkMNnk8r8Te5dGx5Npsb4rf1wq53g11lBgaGEgVnXCdV/ka46Ihc+OeDgWncd8+kimKTnNeBLOLFMFfEw8MOYXpmf4xyo2u2FXT5U/OcMm8/PZjcVZMyv8thYQxq07frQrpSxYWH7Mr/mK3j2LteQoiOwQsP+ZDL+Mk0AajwGLm2e0f1YamABNaNW6htFfPvNtvnYTuUJmXKMC85fW1z+G/TdMKpX58VqQ4Xi/RCPyRD7y94zgpdIB9YQD69tiY1M5O2TQ==\",\r\n    \"businessId\": \"1z2HUO9nT2\",\r\n    \"descriptor\": \"Alpha Go\",\r\n    \"cardHolderName\": \"Jim Morrison\",\r\n    \"expMonth\": \"12\",\r\n    \"expYear\": \"26\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{gatewayBase}}/tokenize","urlObject":{"path":["tokenize"],"host":["{{gatewayBase}}"],"query":[],"variable":[]}},"response":[{"id":"2e4d08da-d9ad-4ccc-a8b6-a65f7ae05fc8","name":"ACH","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"accountHolderName\": \"Jim Slim\",\r\n    \"routingNumber\": \"123456789\",\r\n    \"encryptedAccount\": \"SSnI+Yl+9v4sOUz7IyrSWSrzQ5bg4I0k/E162ukyXSR1HTkSa0ErfTHBc59VapN5WLocIQRMN1g0KUbKGOjMjURuU+qBwerueZezh+gTXjQptYWiPuLYz59hiyCzLP/OPkpCTGdihU5wY62LNZHrV/b1uSXeluVW1ATjt5bDmLWbyS3czZtwfRSevCbEwg+c0vfVK637SNNpvYBA6WZh1Xwf396WMpLWViAx6apJXGx1sMchb8+IzKAR4JVv+nBpbj8KCwllLXET0b1183i5LJbA1wQ12VylLmq1WWotqd0+JG3d+Y6oLht1KIA5K/1oXseWkW25lwK0vdXK6oepLQ==\",\r\n    \"businessId\": \"{{businessId}}\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{gatewayBase}}/tokenize"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 Aug 2024 19:50:17 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"66"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"7ed85d68-e1fe-460d-a8c1-55504fb14d8a"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"x-amz-apigw-id","value":"c3-2nHUQoAMEEEw="},{"key":"X-Amzn-Trace-Id","value":"Root=1-66c644f6-3961713b7165a142375b6ef6;Parent=237acd8cbc74d4c6;Sampled=0;lineage=2a121c2a:0|7dc692c9:0"},{"key":"Access-Control-Allow-Credentials","value":"true"}],"cookie":[],"responseTime":null,"body":"{\n    \"token\": \"424242ORTGgx4242\",\n    \"firstSix\": \"424242\",\n    \"lastFour\": \"4242\"\n}"},{"id":"2d7b4608-36e7-4da3-b351-b997bc8d6e6d","name":"CARD","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"encryptedCard\": \"juhkq9WH1Q5d80MphrQWAhZd8cR/JsYx6XaEBeSb9rkMh2Sm7m/HAcbRMfoqyW8KAILDmaC11EgaGzf74Mwe0nIzKEAf3aV1ibrdG2ILbtc41Kr4RhTyuGlJHy8EJ7wgGnoq3kZjOIaFEgkPEpEo5s7HqD/LuuEMtprpcHHmeyMzw+oJiil7SJEqWx2yZPdQnMmGN9dLx0U+PFFmsY5d0x82ohOQeMF/u0rIlR3tOue/TKZmGFqllpuR+aVzlooCSKAV/b6fVpP5bd0t5lELiBH4LrR9rHa4DlGPkbsP3YyEUNaktCu9wh8/MRVPqLpHMR4jd0y+VDuzJ5ocQC0kTg==\",\r\n    \"encryptedCvv\": \"nu+TWv3pI9AXgrbwlxmeo++J0QPS4AKgw0XDS1xY2McSUm0LhCoi6cXDGDWaePbU6F5Wwai1vtjMuby1tkMNnk8r8Te5dGx5Npsb4rf1wq53g11lBgaGEgVnXCdV/ka46Ihc+OeDgWncd8+kimKTnNeBLOLFMFfEw8MOYXpmf4xyo2u2FXT5U/OcMm8/PZjcVZMyv8thYQxq07frQrpSxYWH7Mr/mK3j2LteQoiOwQsP+ZDL+Mk0AajwGLm2e0f1YamABNaNW6htFfPvNtvnYTuUJmXKMC85fW1z+G/TdMKpX58VqQ4Xi/RCPyRD7y94zgpdIB9YQD69tiY1M5O2TQ==\",\r\n    \"businessId\": \"{{businessId}}\",\r\n    \"descriptor\": \"Alpha Go\",\r\n    \"cardHolderName\": \"Jim Morrison\",\r\n    \"expMonth\": \"12\",\r\n    \"expYear\": \"26\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{gatewayBase}}/tokenize"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"229756f1-83b0-4e14-912d-c1f8bc3481c0"},{"name":"checkout","event":[{"listen":"test","script":{"type":"text/javascript","exec":["pm.test('Status code is 200', function () {","    pm.response.to.have.status(200);","})"]}}],"id":"edbdf8c6-468a-4b4f-972d-7c65a2f65df5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"replaceWithFloPayUser"},{"key":"password","value":"replaceWithFloPayPassword"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"businessId\": \"{{businessId}}\",\r\n    \"customer\": {\r\n        \"name\": \"MartinVan Buren\",\r\n        \"contacts\": [\r\n            {\r\n                \"type\": \"email\",\r\n                \"address\": \"someemail@test.com\"\r\n            },\r\n            {\r\n                \"type\": \"mobile\",\r\n                \"number\": \"+18017229210\"\r\n            },\r\n            {\r\n                \"city\": \"American Fork\",\r\n                \"type\": \"billToAddress\",\r\n                \"state\": \"UT\",\r\n                \"street\": \"574 S 420 E\",\r\n                \"postalCode\": \"84003\",\r\n                \"countryCode\": \"US\"\r\n            },\r\n            {\r\n                \"city\": \"American Fork\",\r\n                \"type\": \"shipToAddress\",\r\n                \"state\": \"UT\",\r\n                \"street\": \"574 S 420 E\",\r\n                \"postalCode\": \"84003\",\r\n                \"countryCode\": \"US\"\r\n            }\r\n        ]\r\n    },\r\n    \"part\": {\r\n        \"number\": \"MISC-FAST\",\r\n        \"description\": \"Some Item You Sell\"\r\n    },\r\n    \"amount\": 22.36,\r\n    \"orderRef\": \"12345\",\r\n    \"hookRef\": \"123\",\r\n    \"descriptor\": \"CUSTOM\",\r\n    \"uiOptions\": {\r\n        \"darkMode\": true,\r\n        \"displaySubmitButton\": true,\r\n        \"displayWalletButton\": true,\r\n        \"hideCardForm\": false,\r\n        \"tokenizeOnly\": true,\r\n        \"returnUrl\": \"https://yoursite.com/payment-complete\",\r\n        \"brandColor\": \"#1a365d\",\r\n        \"brandColorSecondary\": \"#2b6cb0\",\r\n        \"returnSecret\": \"my-secret-token-123\",\r\n        \"hidePhone\": true,\r\n        \"hideAddress\": true\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base}}/payment/checkout","urlObject":{"path":["payment","checkout"],"host":["{{base}}"],"query":[],"variable":[]}},"response":[{"id":"4214c1c7-3d0c-4b6d-b88e-106c97a3025f","name":"Required params only","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"businessId\":\"{{businessId}}\",\r\n    \"customer\":{\r\n        \"name\":\"MartinVan Buren\",        \r\n        \"contacts\":[\r\n            {\r\n                \"type\":\"email\",\r\n                \"address\":\"someemail@test.com\"\r\n            },            \r\n            {\r\n                \"type\":\"mobile\",\r\n                \"number\":\"+18017229210\"\r\n            }\r\n        ]\r\n    },\r\n    \"part\":{\r\n        \"number\":\"MISC-FAST\",\r\n        \"description\":\"Some Item You Sell\"\r\n    },\r\n    \"amount\":50,\r\n    \"orderRef\":\"12345\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base}}/payment/fastPay"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"access-control-allow-credentials","value":"true"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"vary","value":"origin,accept-encoding"},{"key":"access-control-expose-headers","value":"WWW-Authenticate,Server-Authorization"},{"key":"cache-control","value":"no-cache"},{"key":"content-encoding","value":"gzip"},{"key":"Date","value":"Tue, 30 Jul 2024 05:51:43 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 161,\n    \"number\": \"161\",\n    \"total\": \"52.5\",\n    \"subTotal\": \"50\",\n    \"terms\": \"Card\",\n    \"status\": \"Open\",\n    \"paymentStatus\": null,\n    \"tax\": \"2.5\",\n    \"hookRef\": \"12345\",\n    \"businessId\": \"K5jrN7LSJ7\",\n    \"taxRate\": {\n        \"ref\": \"\",\n        \"name\": \"Sales Tax\",\n        \"rate\": 0.05,\n        \"agency\": \"Tax Agency\",\n        \"isDefault\": true\n    },\n    \"customerId\": 68,\n    \"assignedToUserId\": 23,\n    \"notes\": [],\n    \"tags\": [],\n    \"createdAt\": \"2024-08-16T20:05:49.036Z\",\n    \"updatedAt\": \"2024-08-16T20:05:49.475Z\",\n    \"orderItems\": [\n        {\n            \"id\": 190,\n            \"businessId\": \"K5jrN7LSJ7\",\n            \"complete\": false,\n            \"description\": null,\n            \"number\": \"MISC-FAST\",\n            \"price\": \"50\",\n            \"partId\": 71,\n            \"locationId\": null,\n            \"vendorId\": null,\n            \"customerId\": null,\n            \"quantity\": \"1\",\n            \"uom\": {\n                \"name\": \"EA\",\n                \"conversion\": 1\n            },\n            \"orderId\": 161,\n            \"part\": {\n                \"id\": 71,\n                \"number\": \"MISC-FAST\",\n                \"ref\": null,\n                \"hookRef\": null,\n                \"incomeAccountId\": null,\n                \"inventoryAccountId\": null,\n                \"expenseAccountId\": null,\n                \"description\": \"Some Item You Sell\",\n                \"stockLevel\": null,\n                \"cost\": \"0\",\n                \"price\": \"50\",\n                \"type\": \"Service\",\n                \"taxable\": true,\n                \"trackingType\": [],\n                \"active\": true,\n                \"businessId\": \"K5jrN7LSJ7\",\n                \"defaultLocationId\": null,\n                \"notes\": [],\n                \"tags\": [],\n                \"uoms\": [\n                    {\n                        \"name\": \"EA\",\n                        \"conversion\": 1\n                    }\n                ],\n                \"defaultLocation\": null,\n                \"expenseAccount\": null,\n                \"incomeAccount\": null,\n                \"inventoryAccount\": null\n            }\n        }\n    ],\n    \"assignedToUser\": {\n        \"name\": \"Change Me Change Me\",\n        \"id\": 23,\n        \"username\": \"lindabrobledo@gmail.com\",\n        \"businessId\": \"K5jrN7LSJ7\",\n        \"module\": {\n            \"part\": true,\n            \"user\": true,\n            \"order\": true,\n            \"report\": true,\n            \"vendor\": true,\n            \"company\": true,\n            \"payment\": true,\n            \"release\": true,\n            \"webhook\": true,\n            \"customer\": true,\n            \"location\": true,\n            \"dashboard\": true,\n            \"inventory\": true,\n            \"receivable\": true,\n            \"webhookLog\": true\n        },\n        \"nameFirst\": \"Change Me\",\n        \"nameLast\": \"Change Me\",\n        \"contacts\": [],\n        \"notes\": [],\n        \"tags\": []\n    },\n    \"customer\": {\n        \"id\": 68,\n        \"active\": true,\n        \"hookRef\": null,\n        \"optIn\": true,\n        \"cards\": [],\n        \"ref\": null,\n        \"name\": \"MartinVan Buren\",\n        \"terms\": null,\n        \"companyName\": null,\n        \"taxRate\": {\n            \"ref\": \"\",\n            \"name\": \"Sales Tax\",\n            \"rate\": 0.05,\n            \"agency\": \"Tax Agency\",\n            \"isDefault\": true\n        },\n        \"businessId\": \"K5jrN7LSJ7\",\n        \"contacts\": [\n            {\n                \"type\": \"email\",\n                \"address\": \"someemail@test.com\"\n            },\n            {\n                \"type\": \"mobile\",\n                \"number\": \"+18017229210\"\n            }\n        ],\n        \"notes\": [],\n        \"tags\": []\n    },\n    \"payments\": [\n        {\n            \"id\": 140,\n            \"token\": null,\n            \"providerRef\": null,\n            \"status\": \"Open\",\n            \"type\": null,\n            \"uid\": null,\n            \"hookRef\": null,\n            \"nextDate\": null,\n            \"amount\": \"52.5\",\n            \"currency\": \"USD\",\n            \"businessId\": \"K5jrN7LSJ7\",\n            \"cadenceData\": null,\n            \"customerId\": 68,\n            \"orderId\": 161,\n            \"tags\": [],\n            \"notes\": [],\n            \"createdAt\": \"2024-08-16T20:05:49.498Z\",\n            \"updatedAt\": \"2024-08-16T20:05:49.498Z\"\n        }\n    ],\n    \"release\": null\n}"}],"_postman_id":"edbdf8c6-468a-4b4f-972d-7c65a2f65df5"},{"name":"Tokenize ACH","event":[{"listen":"test","script":{"id":"e32d4794-078e-458d-bb51-3b2b2fe5fb2c","exec":["pm.test('Status code is 200', function () {","    pm.response.to.have.status(200);","})"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"44d8cbe2-a610-46af-afba-dd4bb6cad434","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"replaceWithFloPayUser"},{"key":"password","value":"replaceWithFloPayPassword"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"accountHolderName\": \"Jim Slim\",\r\n    \"routingNumber\": \"123456789\",\r\n    \"encryptedAccount\": \"SSnI+Yl+9v4sOUz7IyrSWSrzQ5bg4I0k/E162ukyXSR1HTkSa0ErfTHBc59VapN5WLocIQRMN1g0KUbKGOjMjURuU+qBwerueZezh+gTXjQptYWiPuLYz59hiyCzLP/OPkpCTGdihU5wY62LNZHrV/b1uSXeluVW1ATjt5bDmLWbyS3czZtwfRSevCbEwg+c0vfVK637SNNpvYBA6WZh1Xwf396WMpLWViAx6apJXGx1sMchb8+IzKAR4JVv+nBpbj8KCwllLXET0b1183i5LJbA1wQ12VylLmq1WWotqd0+JG3d+Y6oLht1KIA5K/1oXseWkW25lwK0vdXK6oepLQ==\",\r\n    \"businessId\": \"{{businessId}}\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{gatewayBase}}/tokenize","urlObject":{"path":["tokenize"],"host":["{{gatewayBase}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"44d8cbe2-a610-46af-afba-dd4bb6cad434"},{"name":"Prepare","event":[{"listen":"test","script":{"id":"25d28283-dc77-4cc9-acee-b1ba10913d56","exec":["pm.test('Status code is 200', function () {","    pm.response.to.have.status(200);","})","","var jsonData = pm.response.json();","pm.environment.set(\"paymentId\", jsonData.payments[0].id);"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"5d74f000-ce43-4d9f-b384-2e08de20278f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"replaceWithFloPayUser"},{"key":"password","value":"replaceWithFloPayPassword"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"businessId\": \"{{businessId}}\",\r\n    \"customer\": {\r\n        \"name\": \"MartinVan Buren\",\r\n        \"contacts\": [\r\n            {\r\n                \"type\": \"email\",\r\n                \"address\": \"someemail@test.com\"\r\n            },\r\n            {\r\n                \"type\": \"mobile\",\r\n                \"number\": \"+1\"\r\n            },\r\n            {\r\n                \"city\": \"American Fork\",\r\n                \"type\": \"billToAddress\",\r\n                \"state\": \"UT\",\r\n                \"street\": \"574 S 420 E\",\r\n                \"postalCode\": \"84003\",\r\n                \"countryCode\": \"US\"\r\n            },\r\n            {\r\n                \"city\": \"American Fork\",\r\n                \"type\": \"shipToAddress\",\r\n                \"state\": \"UT\",\r\n                \"street\": \"574 S 420 E\",\r\n                \"postalCode\": \"84003\",\r\n                \"countryCode\": \"US\"\r\n            }\r\n        ]\r\n        \r\n    },\r\n    \"part\": {\r\n        \"number\": \"MISC-FAST\",\r\n        \"description\": \"Some Item You Sell\"\r\n    },\r\n    \"amount\": 50,\r\n    \"orderRef\": \"12345\",\r\n    \"hookRef\":\"123\",\r\n    \"descriptor\":\"CUSTOM\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base}}/payment/prepare","description":"<h1 id=\"contacts-field-requirements\">Contacts Field Requirements</h1>\n<p>The <code>contacts</code> field is stored as a <strong>JSONB</strong> array on the database schema. It is <strong>non-nullable</strong> and defaults to an empty array (<code>[]</code>). Each element in the array must be one of three contact types: an <strong>Address</strong>, a <strong>Phone Number</strong>, or an <strong>Email</strong>.</p>\n<hr />\n<h2 id=\"address\">Address</h2>\n<p>Represents a physical or billing/shipping address.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Required</th>\n<th>Constraints</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>type</code></td>\n<td>String</td>\n<td>Yes</td>\n<td>Must be one of: <code>address</code>, <code>billToAddress</code>, <code>shipToAddress</code></td>\n</tr>\n<tr>\n<td><code>street</code></td>\n<td>String</td>\n<td>No</td>\n<td>Max 300 characters. Can be empty.</td>\n</tr>\n<tr>\n<td><code>city</code></td>\n<td>String</td>\n<td>No</td>\n<td>Max 100 characters. Can be empty.</td>\n</tr>\n<tr>\n<td><code>state</code></td>\n<td>String</td>\n<td>No</td>\n<td>Max 100 characters. Can be empty.</td>\n</tr>\n<tr>\n<td><code>postalCode</code></td>\n<td>String</td>\n<td>No</td>\n<td>Alphanumeric, spaces, or hyphens. 1–25 characters. Can be empty.</td>\n</tr>\n<tr>\n<td><code>countryCode</code></td>\n<td>String</td>\n<td>No</td>\n<td>Alphanumeric or spaces. 1–150 characters. Can be empty.</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h2 id=\"phone-number\">Phone Number</h2>\n<p>Represents a phone, mobile, fax, or work number.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Required</th>\n<th>Constraints</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>type</code></td>\n<td>String</td>\n<td>Yes</td>\n<td>Must be one of: <code>phone</code>, <code>mobile</code>, <code>fax</code>, <code>work</code></td>\n</tr>\n<tr>\n<td><code>number</code></td>\n<td>String</td>\n<td>Yes</td>\n<td>Must be in E.164 format: starts with <code>+</code>, followed by a non-zero digit and 6–14 additional digits (e.g., <code>+14155552671</code>).</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h2 id=\"email\">Email</h2>\n<p>Represents an email contact.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Required</th>\n<th>Constraints</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>type</code></td>\n<td>String</td>\n<td>Yes</td>\n<td>Must be exactly <code>email</code></td>\n</tr>\n<tr>\n<td><code>address</code></td>\n<td>String</td>\n<td>No</td>\n<td>Must be a valid email address</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n","urlObject":{"path":["payment","prepare"],"host":["{{base}}"],"query":[],"variable":[]}},"response":[{"id":"582cb8c8-a8bf-4025-95c3-97ef057f8ff6","name":"Required params only","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"businessId\":\"{{businessId}}\",\r\n    \"customer\":{\r\n        \"name\":\"MartinVan Buren\",        \r\n        \"contacts\":[\r\n            {\r\n                \"type\":\"email\",\r\n                \"address\":\"someemail@test.com\"\r\n            },            \r\n            {\r\n                \"type\":\"mobile\",\r\n                \"number\":\"+18017229210\"\r\n            }\r\n        ]\r\n    },\r\n    \"part\":{\r\n        \"number\":\"MISC-FAST\",\r\n        \"description\":\"Some Item You Sell\"\r\n    },\r\n    \"amount\":50,\r\n    \"orderRef\":\"12345\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base}}/payment/fastPay"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"access-control-allow-credentials","value":"true"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"vary","value":"origin,accept-encoding"},{"key":"access-control-expose-headers","value":"WWW-Authenticate,Server-Authorization"},{"key":"cache-control","value":"no-cache"},{"key":"content-encoding","value":"gzip"},{"key":"Date","value":"Tue, 30 Jul 2024 05:51:43 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 161,\n    \"number\": \"161\",\n    \"total\": \"52.5\",\n    \"subTotal\": \"50\",\n    \"terms\": \"Card\",\n    \"status\": \"Open\",\n    \"paymentStatus\": null,\n    \"tax\": \"2.5\",\n    \"hookRef\": \"12345\",\n    \"businessId\": \"K5jrN7LSJ7\",\n    \"taxRate\": {\n        \"ref\": \"\",\n        \"name\": \"Sales Tax\",\n        \"rate\": 0.05,\n        \"agency\": \"Tax Agency\",\n        \"isDefault\": true\n    },\n    \"customerId\": 68,\n    \"assignedToUserId\": 23,\n    \"notes\": [],\n    \"tags\": [],\n    \"createdAt\": \"2024-08-16T20:05:49.036Z\",\n    \"updatedAt\": \"2024-08-16T20:05:49.475Z\",\n    \"orderItems\": [\n        {\n            \"id\": 190,\n            \"businessId\": \"K5jrN7LSJ7\",\n            \"complete\": false,\n            \"description\": null,\n            \"number\": \"MISC-FAST\",\n            \"price\": \"50\",\n            \"partId\": 71,\n            \"locationId\": null,\n            \"vendorId\": null,\n            \"customerId\": null,\n            \"quantity\": \"1\",\n            \"uom\": {\n                \"name\": \"EA\",\n                \"conversion\": 1\n            },\n            \"orderId\": 161,\n            \"part\": {\n                \"id\": 71,\n                \"number\": \"MISC-FAST\",\n                \"ref\": null,\n                \"hookRef\": null,\n                \"incomeAccountId\": null,\n                \"inventoryAccountId\": null,\n                \"expenseAccountId\": null,\n                \"description\": \"Some Item You Sell\",\n                \"stockLevel\": null,\n                \"cost\": \"0\",\n                \"price\": \"50\",\n                \"type\": \"Service\",\n                \"taxable\": true,\n                \"trackingType\": [],\n                \"active\": true,\n                \"businessId\": \"K5jrN7LSJ7\",\n                \"defaultLocationId\": null,\n                \"notes\": [],\n                \"tags\": [],\n                \"uoms\": [\n                    {\n                        \"name\": \"EA\",\n                        \"conversion\": 1\n                    }\n                ],\n                \"defaultLocation\": null,\n                \"expenseAccount\": null,\n                \"incomeAccount\": null,\n                \"inventoryAccount\": null\n            }\n        }\n    ],\n    \"assignedToUser\": {\n        \"name\": \"Change Me Change Me\",\n        \"id\": 23,\n        \"username\": \"lindabrobledo@gmail.com\",\n        \"businessId\": \"K5jrN7LSJ7\",\n        \"module\": {\n            \"part\": true,\n            \"user\": true,\n            \"order\": true,\n            \"report\": true,\n            \"vendor\": true,\n            \"company\": true,\n            \"payment\": true,\n            \"release\": true,\n            \"webhook\": true,\n            \"customer\": true,\n            \"location\": true,\n            \"dashboard\": true,\n            \"inventory\": true,\n            \"receivable\": true,\n            \"webhookLog\": true\n        },\n        \"nameFirst\": \"Change Me\",\n        \"nameLast\": \"Change Me\",\n        \"contacts\": [],\n        \"notes\": [],\n        \"tags\": []\n    },\n    \"customer\": {\n        \"id\": 68,\n        \"active\": true,\n        \"hookRef\": null,\n        \"optIn\": true,\n        \"cards\": [],\n        \"ref\": null,\n        \"name\": \"MartinVan Buren\",\n        \"terms\": null,\n        \"companyName\": null,\n        \"taxRate\": {\n            \"ref\": \"\",\n            \"name\": \"Sales Tax\",\n            \"rate\": 0.05,\n            \"agency\": \"Tax Agency\",\n            \"isDefault\": true\n        },\n        \"businessId\": \"K5jrN7LSJ7\",\n        \"contacts\": [\n            {\n                \"type\": \"email\",\n                \"address\": \"someemail@test.com\"\n            },\n            {\n                \"type\": \"mobile\",\n                \"number\": \"+18017229210\"\n            }\n        ],\n        \"notes\": [],\n        \"tags\": []\n    },\n    \"payments\": [\n        {\n            \"id\": 140,\n            \"token\": null,\n            \"providerRef\": null,\n            \"status\": \"Open\",\n            \"type\": null,\n            \"uid\": null,\n            \"hookRef\": null,\n            \"nextDate\": null,\n            \"amount\": \"52.5\",\n            \"currency\": \"USD\",\n            \"businessId\": \"K5jrN7LSJ7\",\n            \"cadenceData\": null,\n            \"customerId\": 68,\n            \"orderId\": 161,\n            \"tags\": [],\n            \"notes\": [],\n            \"createdAt\": \"2024-08-16T20:05:49.498Z\",\n            \"updatedAt\": \"2024-08-16T20:05:49.498Z\"\n        }\n    ],\n    \"release\": null\n}"}],"_postman_id":"5d74f000-ce43-4d9f-b384-2e08de20278f"},{"name":"Pay","event":[{"listen":"test","script":{"id":"62043e18-6ddc-4e30-826b-6b2a9d6cdc18","exec":["pm.test('Status code is 200', function () {","    pm.response.to.have.status(200);","})"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"9ff3549a-8456-491b-84e1-0b6730562e40","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"replaceWithFloPayUser"},{"key":"password","value":"replaceWithFloPayPassword"}]},"isInherited":false},"method":"PUT","header":[{"key":"","value":"","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"businessId\": \"{{businessId}}\",\r\n    \"token\": {\r\n        \"cardHolderName\": \"test\",\r\n        \"securityCode\": \"123\",\r\n        \"expMonth\": \"12\",\r\n        \"expYear\": \"36\",\r\n        \"token\": \"424242ORTGgx4242\",\r\n        \"cardType\": \"visa\",\r\n        \"firstSix\": \"411111\",\r\n        \"lastFour\": \"1111\"\r\n    },  \r\n    \"options\":{\r\n        \"initializationType\":\"telemoto\",\r\n        \"authOnly\":true\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base}}/payment/pay/{{paymentId}}","description":"<h2 id=\"pay-endpoint\"><code>/pay</code> Endpoint</h2>\n<p>{{base}}/payment/pay/{{paymentId}}</p>\n<h3 id=\"options\">Options</h3>\n<p>Optional configuration object that controls how the payment is classified and processed.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"options\": {\n    \"initializationType\": \"telemoto\",\n    \"authOnly\": true\n  }\n}\n\n</code></pre>\n<h3 id=\"optionsinitializationtype\"><code>options.initializationType</code></h3>\n<p><strong>Type:</strong> <code>string</code><br /><strong>Required:</strong> Yes (for stored credential / MOTO / recurring use cases)</p>\n<p>Defines <strong>how the transaction is initiated</strong> and how it should be classified for card network compliance (CIT vs MIT, MOTO, recurring, etc.).</p>\n<h4 id=\"allowed-values\">Allowed Values</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Classification</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>customerInitiated</code></td>\n<td>CIT</td>\n<td>The customer is actively involved and triggers the payment. The customer is present (physically or digitally). Typical examples include checkout flows, pay-now buttons, and Apple Pay interactions.</td>\n</tr>\n<tr>\n<td><code>merchantInitiated</code></td>\n<td>MIT</td>\n<td>The merchant triggers the transaction without the customer actively present at the time of payment. Requires prior customer consent and stored credentials. Typical examples include subscription renewals, retries, installments, and no-show fees.</td>\n</tr>\n<tr>\n<td><code>initialMoto</code></td>\n<td>CIT (MOTO)</td>\n<td>The first Mail Order / Telephone Order transaction where card details are captured and customer consent is established. This creates the stored credential used for future merchant-initiated transactions.</td>\n</tr>\n<tr>\n<td><code>recurring</code></td>\n<td>MIT (Recurring)</td>\n<td>A repeating, scheduled transaction using stored credentials (e.g., subscriptions). The first charge must be a CIT (often <code>initialMoto</code> or standard ecommerce). All subsequent charges are merchant-initiated recurring transactions.</td>\n</tr>\n<tr>\n<td><code>telemoto</code></td>\n<td>CIT (MOTO)</td>\n<td>A telephone or mail order transaction where card details are provided verbally or through non-web channels. Typically processed as MOTO (no 3DS, higher risk category).</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"optionsauthonly\"><code>options.authOnly</code></h3>\n<p><strong>Type:</strong> <code>boolean</code><br /><strong>Default:</strong> <code>false</code></p>\n<p>When set to <code>true</code>, the payment is <strong>authorized only</strong> and not captured. A separate capture request is required to complete the transaction. See the <a href=\"https://documenter.getpostman.com/view/31217055/2s9YXpUdoJ#e7b047bd-914a-4358-b402-769c662553df\">Capture</a> endpoint.</p>\n<hr />\n<h2 id=\"notes--best-practices\">Notes &amp; Best Practices</h2>\n<ul>\n<li><p>The <strong>first transaction in any stored-credential flow must be customer-initiated (CIT)</strong>.</p>\n</li>\n<li><p><code>merchantInitiated</code> and <code>recurring</code> transactions <strong>require a prior stored credential</strong> created during a CIT transaction.</p>\n</li>\n<li><p>MOTO transactions (<code>telemoto</code>, <code>initialMoto</code>) typically <strong>do not support 3DS</strong> and may carry higher interchange or risk.</p>\n</li>\n</ul>\n","urlObject":{"path":["payment","pay","{{paymentId}}"],"host":["{{base}}"],"query":[],"variable":[]}},"response":[{"id":"22c2de27-148d-41a3-b42e-f0c6e939a470","name":"Response Example","originalRequest":{"method":"PUT","header":[{"key":"","value":"","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"businessId\": \"{{businessId}}\",\r\n    \"token\": {\r\n        \"cardHolderName\": \"123\",\r\n        \"securityCode\": \"123\",\r\n        \"expMonth\": \"12\",\r\n        \"expYear\": \"28\",\r\n        \"token\": \"4000302601152228\",\r\n        \"cardType\": \"visa\",\r\n        \"firstSix\": \"400030\",\r\n        \"lastFour\": \"2228\"\r\n    },\r\n    \"amount\": 20\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base}}/payment/pay/598"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"access-control-allow-credentials","value":"true"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"vary","value":"origin"},{"key":"access-control-expose-headers","value":"WWW-Authenticate,Server-Authorization"},{"key":"cache-control","value":"no-cache"},{"key":"content-length","value":"105"},{"key":"Date","value":"Thu, 15 May 2025 23:37:15 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"statusCode\": 400,\n    \"errorCode\": \"4007\",\n    \"message\": \"Do not Honor\",\n    \"name\": \"usaepay\",\n    \"gatewayRef\": \"3197103530\"\n}"},{"id":"ed27e934-6cbd-47b5-a7da-3a4d0957ad7d","name":"Pay","originalRequest":{"method":"PUT","header":[{"key":"","value":"","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"businessId\": \"{{businessId}}\",\r\n    \"token\": {\r\n        \"cardHolderName\": \"test\",\r\n        \"securityCode\": \"123\",\r\n        \"expMonth\": \"12\",\r\n        \"expYear\": \"36\",\r\n        \"token\": \"1ffc8a02-ec0c-45c7-8093-da1f221d46c8\",\r\n        \"cardType\": \"visa\",\r\n        \"firstSix\": \"411111\",\r\n        \"lastFour\": \"1111\"\r\n    },\r\n    \"amount\": 20,    \r\n    \"options\":{\r\n        \"initializationType\":\"telemoto\",\r\n        \"authOnly\":true\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base}}/payment/pay/000"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"4992f3ae-62d8-4a2c-83e6-ff00c6b238f3","name":"Pay Minimal","originalRequest":{"method":"PUT","header":[{"key":"","value":"","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"businessId\": \"{{businessId}}\",\r\n    \"token\": {\r\n        \"token\": \"424242ORTGgx4242\"\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base}}/payment/pay/000"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"9ff3549a-8456-491b-84e1-0b6730562e40"},{"name":"Capture","event":[{"listen":"test","script":{"id":"37dfdc42-52ad-4302-b0db-8e6bd90a7e30","exec":["pm.test('Status code is 200', function () {","    pm.response.to.have.status(200);","})"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"e7b047bd-914a-4358-b402-769c662553df","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"replaceWithFloPayUser"},{"key":"password","value":"replaceWithFloPayPassword"}]},"isInherited":false},"method":"PUT","header":[{"key":"","value":"","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"businessId\":\"{{businessId}}\",\r\n    \"amount\":50\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base}}/payment/capture/{{paymentId}}","description":"<p><strong>Capture Payment</strong></p>\n<p>Use this endpoint to capture funds for a transaction that was previously authorized using <code>authOnly</code>.</p>\n","urlObject":{"path":["payment","capture","{{paymentId}}"],"host":["{{base}}"],"query":[],"variable":[]}},"response":[{"id":"fad9ce71-a3d2-426d-b940-0e49d6ed0c51","name":"Required params only","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"businessId\":\"{{businessId}}\",\r\n    \"customer\":{\r\n        \"name\":\"MartinVan Buren\",        \r\n        \"contacts\":[\r\n            {\r\n                \"type\":\"email\",\r\n                \"address\":\"someemail@test.com\"\r\n            },            \r\n            {\r\n                \"type\":\"mobile\",\r\n                \"number\":\"+18017229210\"\r\n            }\r\n        ]\r\n    },\r\n    \"part\":{\r\n        \"number\":\"MISC-FAST\",\r\n        \"description\":\"Some Item You Sell\"\r\n    },\r\n    \"amount\":50,\r\n    \"orderRef\":\"12345\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base}}/payment/fastPay"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"access-control-allow-credentials","value":"true"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"vary","value":"origin,accept-encoding"},{"key":"access-control-expose-headers","value":"WWW-Authenticate,Server-Authorization"},{"key":"cache-control","value":"no-cache"},{"key":"content-encoding","value":"gzip"},{"key":"Date","value":"Tue, 30 Jul 2024 05:51:43 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 161,\n    \"number\": \"161\",\n    \"total\": \"52.5\",\n    \"subTotal\": \"50\",\n    \"terms\": \"Card\",\n    \"status\": \"Open\",\n    \"paymentStatus\": null,\n    \"tax\": \"2.5\",\n    \"hookRef\": \"12345\",\n    \"businessId\": \"K5jrN7LSJ7\",\n    \"taxRate\": {\n        \"ref\": \"\",\n        \"name\": \"Sales Tax\",\n        \"rate\": 0.05,\n        \"agency\": \"Tax Agency\",\n        \"isDefault\": true\n    },\n    \"customerId\": 68,\n    \"assignedToUserId\": 23,\n    \"notes\": [],\n    \"tags\": [],\n    \"createdAt\": \"2024-08-16T20:05:49.036Z\",\n    \"updatedAt\": \"2024-08-16T20:05:49.475Z\",\n    \"orderItems\": [\n        {\n            \"id\": 190,\n            \"businessId\": \"K5jrN7LSJ7\",\n            \"complete\": false,\n            \"description\": null,\n            \"number\": \"MISC-FAST\",\n            \"price\": \"50\",\n            \"partId\": 71,\n            \"locationId\": null,\n            \"vendorId\": null,\n            \"customerId\": null,\n            \"quantity\": \"1\",\n            \"uom\": {\n                \"name\": \"EA\",\n                \"conversion\": 1\n            },\n            \"orderId\": 161,\n            \"part\": {\n                \"id\": 71,\n                \"number\": \"MISC-FAST\",\n                \"ref\": null,\n                \"hookRef\": null,\n                \"incomeAccountId\": null,\n                \"inventoryAccountId\": null,\n                \"expenseAccountId\": null,\n                \"description\": \"Some Item You Sell\",\n                \"stockLevel\": null,\n                \"cost\": \"0\",\n                \"price\": \"50\",\n                \"type\": \"Service\",\n                \"taxable\": true,\n                \"trackingType\": [],\n                \"active\": true,\n                \"businessId\": \"K5jrN7LSJ7\",\n                \"defaultLocationId\": null,\n                \"notes\": [],\n                \"tags\": [],\n                \"uoms\": [\n                    {\n                        \"name\": \"EA\",\n                        \"conversion\": 1\n                    }\n                ],\n                \"defaultLocation\": null,\n                \"expenseAccount\": null,\n                \"incomeAccount\": null,\n                \"inventoryAccount\": null\n            }\n        }\n    ],\n    \"assignedToUser\": {\n        \"name\": \"Change Me Change Me\",\n        \"id\": 23,\n        \"username\": \"lindabrobledo@gmail.com\",\n        \"businessId\": \"K5jrN7LSJ7\",\n        \"module\": {\n            \"part\": true,\n            \"user\": true,\n            \"order\": true,\n            \"report\": true,\n            \"vendor\": true,\n            \"company\": true,\n            \"payment\": true,\n            \"release\": true,\n            \"webhook\": true,\n            \"customer\": true,\n            \"location\": true,\n            \"dashboard\": true,\n            \"inventory\": true,\n            \"receivable\": true,\n            \"webhookLog\": true\n        },\n        \"nameFirst\": \"Change Me\",\n        \"nameLast\": \"Change Me\",\n        \"contacts\": [],\n        \"notes\": [],\n        \"tags\": []\n    },\n    \"customer\": {\n        \"id\": 68,\n        \"active\": true,\n        \"hookRef\": null,\n        \"optIn\": true,\n        \"cards\": [],\n        \"ref\": null,\n        \"name\": \"MartinVan Buren\",\n        \"terms\": null,\n        \"companyName\": null,\n        \"taxRate\": {\n            \"ref\": \"\",\n            \"name\": \"Sales Tax\",\n            \"rate\": 0.05,\n            \"agency\": \"Tax Agency\",\n            \"isDefault\": true\n        },\n        \"businessId\": \"K5jrN7LSJ7\",\n        \"contacts\": [\n            {\n                \"type\": \"email\",\n                \"address\": \"someemail@test.com\"\n            },\n            {\n                \"type\": \"mobile\",\n                \"number\": \"+18017229210\"\n            }\n        ],\n        \"notes\": [],\n        \"tags\": []\n    },\n    \"payments\": [\n        {\n            \"id\": 140,\n            \"token\": null,\n            \"providerRef\": null,\n            \"status\": \"Open\",\n            \"type\": null,\n            \"uid\": null,\n            \"hookRef\": null,\n            \"nextDate\": null,\n            \"amount\": \"52.5\",\n            \"currency\": \"USD\",\n            \"businessId\": \"K5jrN7LSJ7\",\n            \"cadenceData\": null,\n            \"customerId\": 68,\n            \"orderId\": 161,\n            \"tags\": [],\n            \"notes\": [],\n            \"createdAt\": \"2024-08-16T20:05:49.498Z\",\n            \"updatedAt\": \"2024-08-16T20:05:49.498Z\"\n        }\n    ],\n    \"release\": null\n}"},{"id":"664352a2-9944-48ca-ae5d-409a901f54b6","name":"Response Example","originalRequest":{"method":"PUT","header":[{"key":"","value":"","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"businessId\": \"{{businessId}}\",\r\n    \"token\": {\r\n        \"cardHolderName\": \"123\",\r\n        \"securityCode\": \"123\",\r\n        \"expMonth\": \"12\",\r\n        \"expYear\": \"28\",\r\n        \"token\": \"4000302601152228\",\r\n        \"cardType\": \"visa\",\r\n        \"firstSix\": \"400030\",\r\n        \"lastFour\": \"2228\"\r\n    },\r\n    \"amount\": 20\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base}}/payment/pay/598"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"access-control-allow-credentials","value":"true"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"vary","value":"origin"},{"key":"access-control-expose-headers","value":"WWW-Authenticate,Server-Authorization"},{"key":"cache-control","value":"no-cache"},{"key":"content-length","value":"105"},{"key":"Date","value":"Thu, 15 May 2025 23:37:15 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"statusCode\": 400,\n    \"errorCode\": \"4007\",\n    \"message\": \"Do not Honor\",\n    \"name\": \"usaepay\",\n    \"gatewayRef\": \"3197103530\"\n}"}],"_postman_id":"e7b047bd-914a-4358-b402-769c662553df"},{"name":"Update Payment","event":[{"listen":"test","script":{"id":"3a08f656-16ab-4cb7-b4aa-217625b31b87","exec":["pm.test('Status code is 200', function () {","    pm.response.to.have.status(200);","})"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"e82d6d40-7049-4e64-b133-df7e309aba3f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"replaceWithFloPayUser"},{"key":"password","value":"replaceWithFloPayPassword"}]},"isInherited":false},"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n  \"id\": 4563,\r\n  \"deleted\": false,\r\n  \"paymentProviderData\": null,\r\n  \"token\": {},\r\n  \"providerRef\": null,\r\n  \"paymentProviderId\": \"\",\r\n  \"gatewayRef\": null,\r\n  \"status\": \"Open\",\r\n  \"descriptor\": \"CUSTOM\",\r\n  \"type\": null,\r\n  \"uid\": \"AW1jv9b7KgbHILNSczUcIxXezSKgQrOF3SmEdD1A\",\r\n  \"hookRef\": \"12345\",\r\n  \"nextDate\": null,\r\n  \"amount\": \"225.00\",\r\n  \"currency\": \"USD\",\r\n  \"businessId\": \"1z2HUO9nT2\",\r\n  \"options\": {},\r\n  \"transactionDate\": null,\r\n  \"retry\": null,\r\n  \"customerId\": 424,\r\n  \"orderId\": 2700,\r\n  \"installmentPlanId\": null,\r\n  \"installmentNumber\": null,\r\n  \"installmentPlanType\": null,\r\n  \"tags\": [],\r\n  \"notes\": [\r\n    {\r\n      \"value\": \"Note\"\r\n    }\r\n  ],\r\n  \"createdAt\": \"2026-03-23T15:57:18.379Z\",\r\n  \"updatedAt\": \"2026-03-23T15:57:18.379Z\",\r\n  \"order\": {\r\n    \"id\": 2700,\r\n    \"number\": \"2700\",\r\n    \"total\": \"22.36\",\r\n    \"subTotal\": \"22.36\",\r\n    \"downPayment\": \"0\",\r\n    \"terms\": \"Card\",\r\n    \"status\": \"Open\",\r\n    \"paymentStatus\": null,\r\n    \"tax\": \"0\",\r\n    \"hookRef\": \"12345\",\r\n    \"businessId\": \"1z2HUO9nT2\",\r\n    \"taxRate\": {\r\n      \"name\": \"No Tax\",\r\n      \"rate\": 0,\r\n      \"agency\": \"Utah\",\r\n      \"isDefault\": true\r\n    },\r\n    \"customerId\": 424,\r\n    \"assignedToUserId\": 133,\r\n    \"notes\": [],\r\n    \"tags\": [],\r\n    \"createdAt\": \"2026-03-23T15:57:18.119Z\",\r\n    \"updatedAt\": \"2026-03-23T15:57:18.357Z\",\r\n    \"orderItems\": [\r\n      {\r\n        \"id\": 2832,\r\n        \"businessId\": \"1z2HUO9nT2\",\r\n        \"complete\": false,\r\n        \"description\": null,\r\n        \"number\": \"MISC-FAST\",\r\n        \"price\": \"22.36\",\r\n        \"partId\": 26,\r\n        \"locationId\": null,\r\n        \"vendorId\": null,\r\n        \"customerId\": null,\r\n        \"quantity\": \"1\",\r\n        \"uom\": {\r\n          \"name\": \"EA\",\r\n          \"conversion\": 1\r\n        },\r\n        \"orderItemData\": {},\r\n        \"createdAt\": \"2026-03-23T15:57:18.158Z\",\r\n        \"updatedAt\": \"2026-03-23T15:57:18.158Z\",\r\n        \"orderId\": 2700,\r\n        \"part\": {\r\n          \"id\": 26,\r\n          \"number\": \"MISC-FAST\",\r\n          \"ref\": null,\r\n          \"hookRef\": null,\r\n          \"incomeAccountId\": null,\r\n          \"inventoryAccountId\": null,\r\n          \"expenseAccountId\": null,\r\n          \"description\": \"partDesc\",\r\n          \"stockLevel\": null,\r\n          \"cost\": \"0\",\r\n          \"price\": \"50\",\r\n          \"type\": \"Service\",\r\n          \"taxable\": true,\r\n          \"trackingType\": [],\r\n          \"active\": false,\r\n          \"businessId\": \"1z2HUO9nT2\",\r\n          \"defaultLocationId\": null,\r\n          \"contractType\": null,\r\n          \"partTypeData\": {},\r\n          \"notes\": [],\r\n          \"tags\": [],\r\n          \"uoms\": [\r\n            {\r\n              \"name\": \"EA\",\r\n              \"conversion\": 1\r\n            }\r\n          ],\r\n          \"createdAt\": \"2024-04-22T18:39:37.644Z\",\r\n          \"updatedAt\": \"2024-11-05T20:08:37.147Z\"\r\n        }\r\n      }\r\n    ]\r\n  },\r\n  \"customer\": {\r\n    \"id\": 424,\r\n    \"active\": true,\r\n    \"hookRef\": \"123\",\r\n    \"optIn\": true,\r\n    \"cards\": [\r\n      {\r\n        \"token\": \"4000302601152228\",\r\n        \"expYear\": \"28\",\r\n        \"cardType\": \"visa\",\r\n        \"expMonth\": \"12\",\r\n        \"firstSix\": \"400030\",\r\n        \"lastFour\": \"2228\",\r\n        \"isDefault\": true,\r\n        \"securityCode\": \"123\",\r\n        \"cardHolderName\": \"123\"\r\n      },\r\n      {\r\n        \"isAch\": false,\r\n        \"token\": \"1ffc8a02-ec0c-45c7-8093-da1f221d46c8\",\r\n        \"expYear\": \"36\",\r\n        \"cardType\": \"visa\",\r\n        \"expMonth\": \"12\",\r\n        \"firstSix\": \"411111\",\r\n        \"lastFour\": \"1111\",\r\n        \"cardHolderName\": \"test\"\r\n      },\r\n      {\r\n        \"token\": \"T12I5NNZO4OLPR7DY5W2GUO91D5W1PVCXZ750L\",\r\n        \"isDefault\": false\r\n      },\r\n      {\r\n        \"token\": \"424242ORTGgx4242\",\r\n        \"expYear\": \"36\",\r\n        \"cardType\": \"visa\",\r\n        \"expMonth\": \"12\",\r\n        \"firstSix\": \"411111\",\r\n        \"lastFour\": \"1111\",\r\n        \"isDefault\": false,\r\n        \"securityCode\": \"123\",\r\n        \"cardHolderName\": \"test\"\r\n      },\r\n      {\r\n        \"token\": \"541333B2ckwe9049\",\r\n        \"expYear\": \"36  \",\r\n        \"expMonth\": \"12  \",\r\n        \"firstSix\": \"541333\",\r\n        \"lastFour\": \"9049\",\r\n        \"isDefault\": false\r\n      }\r\n    ],\r\n    \"ref\": null,\r\n    \"name\": \"MartinVan Buren\",\r\n    \"terms\": null,\r\n    \"companyName\": null,\r\n    \"taxRate\": {\r\n      \"name\": \"No Tax\",\r\n      \"rate\": 0,\r\n      \"agency\": \"Utah\",\r\n      \"isDefault\": true\r\n    },\r\n    \"businessId\": \"1z2HUO9nT2\",\r\n    \"contacts\": [\r\n      {\r\n        \"city\": \"American Fork\",\r\n        \"type\": \"billToAddress\",\r\n        \"state\": \"UT\",\r\n        \"street\": \"574 S 420 E\",\r\n        \"postalCode\": \"84003\",\r\n        \"countryCode\": \"US\"\r\n      },\r\n      {\r\n        \"city\": \"American Fork\",\r\n        \"type\": \"shipToAddress\",\r\n        \"state\": \"UT\",\r\n        \"street\": \"574 S 420 E\",\r\n        \"postalCode\": \"84003\",\r\n        \"countryCode\": \"US\"\r\n      },\r\n      {\r\n        \"type\": \"email\",\r\n        \"address\": \"someemail@test.com\"\r\n      },\r\n      {\r\n        \"type\": \"mobile\",\r\n        \"number\": \"+18017229210\"\r\n      },\r\n      {\r\n        \"type\": \"phone\",\r\n        \"number\": \"+18015554565\"\r\n      }\r\n    ],\r\n    \"notes\": [],\r\n    \"tags\": [],\r\n    \"createdAt\": \"2025-06-20T22:44:46.560Z\",\r\n    \"updatedAt\": \"2026-03-07T20:57:52.639Z\"\r\n  },\r\n  \"installmentPlan\": null\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base}}/payment/{{paymentId}}","urlObject":{"path":["payment","{{paymentId}}"],"host":["{{base}}"],"query":[],"variable":[]}},"response":[{"id":"b992a46c-77f4-4142-b03e-34cb824e8e72","name":"Update Payment","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"businessId\": \"{{businessId}}\",\r\n    \"id\": 81,\r\n    \"paymentProviderData\": null,\r\n    \"status\": \"Open\",\r\n    \"type\": \"\",\r\n    \"uid\": null,\r\n    \"nextDate\": null,\r\n    \"amount\": \"010\",\r\n    \"cadenceData\": {},\r\n    \"customerId\": 22,\r\n    \"orderId\": 45,\r\n    \"tags\": [],\r\n    \"notes\": [],\r\n    \"createdAt\": \"2023-11-18T00:43:14.879Z\",\r\n    \"updatedAt\": \"2023-12-08T19:56:40.976Z\",\r\n    \"customer\": {\r\n        \"id\": 22,\r\n        \"active\": true,\r\n        \"optIn\": true,\r\n        \"ref\": null,\r\n        \"name\": \"test\",\r\n        \"terms\": null,\r\n        \"companyName\": null,\r\n        \"taxRate\": null,\r\n        \"businessId\": \"4tsYEMs7z3\",\r\n        \"contacts\": [\r\n            {\r\n                \"type\": \"phone\",\r\n                \"number\": \"5555555555\"\r\n            },\r\n            {\r\n                \"type\": \"mobile\",\r\n                \"number\": \"5555555555\"\r\n            },\r\n            {\r\n                \"type\": \"email\",\r\n                \"address\": \"fakeemail@gmail.com\"\r\n            },\r\n            {\r\n                \"city\": \"Fake City\",\r\n                \"type\": \"billToAddress\",\r\n                \"state\": \"UT\",\r\n                \"street\": \"8888 Fake Street\",\r\n                \"postalCode\": \"88888\"\r\n            },\r\n            {\r\n                \"city\": \"Fake City\",\r\n                \"type\": \"billToAddress\",\r\n                \"state\": \"UT\",\r\n                \"street\": \"8888 Fake Street\",\r\n                \"postalCode\": \"88888\"\r\n            }\r\n        ],\r\n        \"notes\": [\r\n            {\r\n                \"value\": \"This is a good note\"\r\n            }\r\n        ],\r\n        \"tags\": [],\r\n        \"createdAt\": \"2023-11-15T04:32:07.626Z\",\r\n        \"updatedAt\": \"2023-11-28T06:21:04.842Z\"\r\n    },\r\n    \"order\": {\r\n        \"id\": 45,\r\n        \"number\": \"45\",\r\n        \"total\": \"0\",\r\n        \"subTotal\": \"0\",\r\n        \"terms\": \"Card\",\r\n        \"status\": \"Invoiced\",\r\n        \"paymentStatus\": null,\r\n        \"tax\": \"0\",\r\n        \"businessId\": \"4tsYEMs7z3\",\r\n        \"customerId\": 22,\r\n        \"assignedToUserId\": 51,\r\n        \"notes\": [],\r\n        \"tags\": [],\r\n        \"createdAt\": \"2023-11-15T04:38:15.173Z\",\r\n        \"updatedAt\": \"2023-11-18T00:44:09.529Z\",\r\n        \"orderItems\": [],\r\n        \"assignedToUser\": {\r\n            \"name\": \"fake name\",\r\n            \"id\": 51,\r\n            \"username\": \"fakeemail@gmail.com\",\r\n            \"businessId\": \"4tsYEMs7z3\",\r\n            \"module\": {\r\n                \"part\": true,\r\n                \"task\": true,\r\n                \"user\": true,\r\n                \"order\": true,\r\n                \"report\": true,\r\n                \"vendor\": true,\r\n                \"payment\": true,\r\n                \"release\": true,\r\n                \"customer\": true,\r\n                \"location\": true,\r\n                \"dashboard\": true,\r\n                \"inventory\": true,\r\n                \"receivable\": true\r\n            },\r\n            \"nameFirst\": \"Fake\",\r\n            \"nameLast\": \"Name\",\r\n            \"contacts\": null,\r\n            \"notes\": [\r\n                {\r\n                    \"value\": \"User\"\r\n                }\r\n            ],\r\n            \"tags\": null,\r\n            \"createdAt\": \"2023-08-29T22:33:28.224Z\",\r\n            \"updatedAt\": \"2023-10-02T05:52:58.468Z\"\r\n        },\r\n        \"customer\": {\r\n            \"id\": 22,\r\n            \"active\": true,\r\n            \"optIn\": true,\r\n            \"ref\": null,\r\n            \"name\": \"test\",\r\n            \"terms\": null,\r\n            \"companyName\": null,\r\n            \"taxRate\": null,\r\n            \"businessId\": \"4tsYEMs7z3\",\r\n            \"contacts\": [\r\n                {\r\n                    \"type\": \"phone\",\r\n                    \"number\": \"5555555555\"\r\n                },\r\n                {\r\n                    \"type\": \"mobile\",\r\n                    \"number\": \"5555555555\"\r\n                },\r\n                {\r\n                    \"type\": \"email\",\r\n                    \"address\": \"fakeemail@gmail.com\"\r\n                },\r\n                {\r\n                    \"city\": \"Fake City\",\r\n                \"type\": \"billToAddress\",\r\n                \"state\": \"UT\",\r\n                \"street\": \"8888 Fake Street\",\r\n                \"postalCode\": \"88888\"\r\n                },\r\n                {\r\n                    \"city\": \"Fake City\",\r\n                \"type\": \"billToAddress\",\r\n                \"state\": \"UT\",\r\n                \"street\": \"8888 Fake Street\",\r\n                \"postalCode\": \"88888\"\r\n                }\r\n            ],\r\n            \"notes\": [\r\n                {\r\n                    \"value\": \"This is a good note\"\r\n                }\r\n            ],\r\n            \"tags\": [],\r\n            \"createdAt\": \"2023-11-15T04:32:07.626Z\",\r\n            \"updatedAt\": \"2023-11-28T06:21:04.842Z\"\r\n        },\r\n        \"release\": {\r\n            \"id\": 55,\r\n            \"businessId\": \"4tsYEMs7z3\",\r\n            \"status\": \"Open\",\r\n            \"orderNumber\": \"45\",\r\n            \"orderId\": 45,\r\n            \"createdAt\": \"2023-11-18T00:43:14.894Z\",\r\n            \"updatedAt\": \"2023-11-18T00:43:14.894Z\",\r\n            \"releaseItems\": [\r\n                {\r\n                    \"id\": 91,\r\n                    \"quantity\": \"1\",\r\n                    \"uom\": \"EA\",\r\n                    \"trackingData\": null,\r\n                    \"businessId\": \"4tsYEMs7z3\",\r\n                    \"customerId\": null,\r\n                    \"locationId\": 1,\r\n                    \"partId\": 1889,\r\n                    \"vendorId\": null,\r\n                    \"releaseId\": 55,\r\n                    \"orderItemId\": null,\r\n                    \"createdAt\": \"2023-11-18T00:43:14.913Z\",\r\n                    \"updatedAt\": \"2023-11-18T00:43:14.913Z\",\r\n                    \"location\": {\r\n                        \"id\": 1,\r\n                        \"name\": \"Warehouse\",\r\n                        \"description\": \"Medium Warehouse \",\r\n                        \"address\": \"1010 East State Street, Orem, Ut, 84605\",\r\n                        \"active\": true,\r\n                        \"site\": true,\r\n                        \"readonly\": null,\r\n                        \"path\": \".20.\",\r\n                        \"businessId\": \"4tsYEMs7z3\",\r\n                        \"notes\": [],\r\n                        \"tags\": [],\r\n                        \"createdAt\": \"2023-10-04T23:15:48.137Z\",\r\n                        \"updatedAt\": \"2023-12-04T16:09:56.131Z\",\r\n                        \"parentId\": null,\r\n                        \"parent\": null\r\n                    },\r\n                    \"part\": {\r\n                        \"id\": 1889,\r\n                        \"number\": \"BicPen1\",\r\n                        \"ref\": null,\r\n                        \"incomeAccountId\": null,\r\n                        \"inventoryAccountId\": null,\r\n                        \"expenseAccountId\": null,\r\n                        \"description\": \"Great Pen for Writing\",\r\n                        \"stockLevel\": \"0\",\r\n                        \"cost\": \"0.5\",\r\n                        \"price\": \"0\",\r\n                        \"type\": \"Inventory\",\r\n                        \"taxable\": true,\r\n                        \"trackingType\": [],\r\n                        \"active\": true,\r\n                        \"businessId\": \"4tsYEMs7z3\",\r\n                        \"defaultLocationId\": 1,\r\n                        \"notes\": [],\r\n                        \"tags\": [],\r\n                        \"uoms\": [\r\n                            {\r\n                                \"name\": \"EA\",\r\n                                \"conversion\": 1\r\n                            }\r\n                        ],\r\n                        \"createdAt\": \"2023-11-12T00:11:43.722Z\",\r\n                        \"updatedAt\": \"2023-11-12T00:11:43.722Z\",\r\n                        \"defaultLocation\": {\r\n                            \"id\": 1,\r\n                            \"name\": \"Warehouse\",\r\n                            \"description\": \"Medium Warehouse \",\r\n                            \"address\": \"1010 East State Street, Orem, Ut, 84605\",\r\n                            \"active\": true,\r\n                            \"site\": true,\r\n                            \"readonly\": null,\r\n                            \"path\": \".20.\",\r\n                            \"businessId\": \"4tsYEMs7z3\",\r\n                            \"notes\": [],\r\n                            \"tags\": [],\r\n                            \"createdAt\": \"2023-10-04T23:15:48.137Z\",\r\n                            \"updatedAt\": \"2023-12-04T16:09:56.131Z\",\r\n                            \"parentId\": null,\r\n                            \"parent\": null\r\n                        },\r\n                        \"expenseAccount\": null,\r\n                        \"incomeAccount\": null,\r\n                        \"inventoryAccount\": null\r\n                    },\r\n                    \"vendor\": null,\r\n                    \"customer\": null\r\n                }\r\n            ]\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base}}/payment/139"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 08 Dec 2023 20:04:15 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"3986"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"e5fde928-06cc-4323-b869-c23e33cb9219"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"x-amz-apigw-id","value":"Po994GN_oAMEVAQ="},{"key":"X-Amzn-Trace-Id","value":"Root=1-657376be-1c44987b53375b6664784c78;Sampled=0;lineage=50e7abba:0"},{"key":"Access-Control-Allow-Credentials","value":"true"}],"cookie":[],"responseTime":null,"body":"{\n    \"businessId\": \"K5jrN7LSJ7\",\n    \"id\": 81,\n    \"paymentProviderData\": null,\n    \"status\": \"Open\",\n    \"type\": \"\",\n    \"uid\": null,\n    \"nextDate\": null,\n    \"amount\": 10,\n    \"cadenceData\": {},\n    \"customerId\": 22,\n    \"orderId\": 45,\n    \"tags\": [],\n    \"notes\": [],\n    \"createdAt\": \"2023-11-18T00:43:14.879Z\",\n    \"updatedAt\": \"2023-12-08T19:56:40.976Z\",\n    \"customer\": {\n        \"id\": 22,\n        \"active\": true,\n        \"optIn\": true,\n        \"ref\": null,\n        \"name\": \"test\",\n        \"terms\": null,\n        \"companyName\": null,\n        \"taxRate\": null,\n        \"businessId\": \"4tsYEMs7z3\",\n        \"contacts\": [\n            {\n                \"type\": \"phone\",\n                \"number\": \"5555555555\"\n            },\n            {\n                \"type\": \"mobile\",\n                \"number\": \"5555555555\"\n            },\n            {\n                \"type\": \"email\",\n                \"address\": \"fakeemail@gmail.com\"\n            },\n            {\n                \"city\": \"Fake City\",\n                \"type\": \"billToAddress\",\n                \"state\": \"UT\",\n                \"street\": \"8888 Fake Street\",\n                \"postalCode\": \"88888\"\n            },\n            {\n                \"city\": \"Fake City\",\n                \"type\": \"billToAddress\",\n                \"state\": \"UT\",\n                \"street\": \"8888 Fake Street\",\n                \"postalCode\": \"88888\"\n            }\n        ],\n        \"notes\": [\n            {\n                \"value\": \"This is a good note\"\n            }\n        ],\n        \"tags\": [],\n        \"createdAt\": \"2023-11-15T04:32:07.626Z\",\n        \"updatedAt\": \"2023-11-28T06:21:04.842Z\"\n    },\n    \"order\": {\n        \"id\": 45,\n        \"number\": \"45\",\n        \"total\": \"0\",\n        \"subTotal\": \"0\",\n        \"terms\": \"Card\",\n        \"status\": \"Invoiced\",\n        \"paymentStatus\": null,\n        \"tax\": \"0\",\n        \"businessId\": \"4tsYEMs7z3\",\n        \"customerId\": 22,\n        \"assignedToUserId\": 51,\n        \"notes\": [],\n        \"tags\": [],\n        \"createdAt\": \"2023-11-15T04:38:15.173Z\",\n        \"updatedAt\": \"2023-11-18T00:44:09.529Z\",\n        \"orderItems\": [],\n        \"assignedToUser\": {\n            \"name\": \"fake name\",\n            \"id\": 51,\n            \"username\": \"fakeemail@gmail.com\",\n            \"businessId\": \"4tsYEMs7z3\",\n            \"module\": {\n                \"part\": true,\n                \"task\": true,\n                \"user\": true,\n                \"order\": true,\n                \"report\": true,\n                \"vendor\": true,\n                \"payment\": true,\n                \"release\": true,\n                \"customer\": true,\n                \"location\": true,\n                \"dashboard\": true,\n                \"inventory\": true,\n                \"receivable\": true\n            },\n            \"nameFirst\": \"Fake\",\n            \"nameLast\": \"Name\",\n            \"contacts\": null,\n            \"notes\": [\n                {\n                    \"value\": \"User\"\n                }\n            ],\n            \"tags\": null,\n            \"createdAt\": \"2023-08-29T22:33:28.224Z\",\n            \"updatedAt\": \"2023-10-02T05:52:58.468Z\"\n        },\n        \"customer\": {\n            \"id\": 22,\n            \"active\": true,\n            \"optIn\": true,\n            \"ref\": null,\n            \"name\": \"test\",\n            \"terms\": null,\n            \"companyName\": null,\n            \"taxRate\": null,\n            \"businessId\": \"4tsYEMs7z3\",\n            \"contacts\": [\n                {\n                    \"type\": \"phone\",\n                    \"number\": \"5555555555\"\n                },\n                {\n                    \"type\": \"mobile\",\n                    \"number\": \"5555555555\"\n                },\n                {\n                    \"type\": \"email\",\n                    \"address\": \"fakeemail@gmail.com\"\n                },\n                {\n                    \"city\": \"Fake City\",\n                    \"type\": \"billToAddress\",\n                    \"state\": \"UT\",\n                    \"street\": \"8888 Fake Street\",\n                    \"postalCode\": \"88888\"\n                },\n                {\n                    \"city\": \"Fake City\",\n                    \"type\": \"billToAddress\",\n                    \"state\": \"UT\",\n                    \"street\": \"8888 Fake Street\",\n                    \"postalCode\": \"88888\"\n                }\n            ],\n            \"notes\": [\n                {\n                    \"value\": \"This is a good note\"\n                }\n            ],\n            \"tags\": [],\n            \"createdAt\": \"2023-11-15T04:32:07.626Z\",\n            \"updatedAt\": \"2023-11-28T06:21:04.842Z\"\n        },\n        \"release\": {\n            \"id\": 55,\n            \"businessId\": \"4tsYEMs7z3\",\n            \"status\": \"Open\",\n            \"orderNumber\": \"45\",\n            \"orderId\": 45,\n            \"createdAt\": \"2023-11-18T00:43:14.894Z\",\n            \"updatedAt\": \"2023-11-18T00:43:14.894Z\",\n            \"releaseItems\": [\n                {\n                    \"id\": 91,\n                    \"quantity\": \"1\",\n                    \"uom\": \"EA\",\n                    \"trackingData\": null,\n                    \"businessId\": \"4tsYEMs7z3\",\n                    \"customerId\": null,\n                    \"locationId\": 1,\n                    \"partId\": 1889,\n                    \"vendorId\": null,\n                    \"releaseId\": 55,\n                    \"orderItemId\": null,\n                    \"createdAt\": \"2023-11-18T00:43:14.913Z\",\n                    \"updatedAt\": \"2023-11-18T00:43:14.913Z\",\n                    \"location\": {\n                        \"id\": 1,\n                        \"name\": \"Warehouse\",\n                        \"description\": \"Medium Warehouse \",\n                        \"address\": \"1010 East State Street, Orem, Ut, 84605\",\n                        \"active\": true,\n                        \"site\": true,\n                        \"readonly\": null,\n                        \"path\": \".20.\",\n                        \"businessId\": \"4tsYEMs7z3\",\n                        \"notes\": [],\n                        \"tags\": [],\n                        \"createdAt\": \"2023-10-04T23:15:48.137Z\",\n                        \"updatedAt\": \"2023-12-04T16:09:56.131Z\",\n                        \"parentId\": null,\n                        \"parent\": null\n                    },\n                    \"part\": {\n                        \"id\": 1889,\n                        \"number\": \"BicPen1\",\n                        \"ref\": null,\n                        \"incomeAccountId\": null,\n                        \"inventoryAccountId\": null,\n                        \"expenseAccountId\": null,\n                        \"description\": \"Great Pen for Writing\",\n                        \"stockLevel\": \"0\",\n                        \"cost\": \"0.5\",\n                        \"price\": \"0\",\n                        \"type\": \"Inventory\",\n                        \"taxable\": true,\n                        \"trackingType\": [],\n                        \"active\": true,\n                        \"businessId\": \"4tsYEMs7z3\",\n                        \"defaultLocationId\": 1,\n                        \"notes\": [],\n                        \"tags\": [],\n                        \"uoms\": [\n                            {\n                                \"name\": \"EA\",\n                                \"conversion\": 1\n                            }\n                        ],\n                        \"createdAt\": \"2023-11-12T00:11:43.722Z\",\n                        \"updatedAt\": \"2023-11-12T00:11:43.722Z\",\n                        \"defaultLocation\": {\n                            \"id\": 1,\n                            \"name\": \"Warehouse\",\n                            \"description\": \"Medium Warehouse \",\n                            \"address\": \"1010 East State Street, Orem, Ut, 84605\",\n                            \"active\": true,\n                            \"site\": true,\n                            \"readonly\": null,\n                            \"path\": \".20.\",\n                            \"businessId\": \"4tsYEMs7z3\",\n                            \"notes\": [],\n                            \"tags\": [],\n                            \"createdAt\": \"2023-10-04T23:15:48.137Z\",\n                            \"updatedAt\": \"2023-12-04T16:09:56.131Z\",\n                            \"parentId\": null,\n                            \"parent\": null\n                        },\n                        \"expenseAccount\": null,\n                        \"incomeAccount\": null,\n                        \"inventoryAccount\": null\n                    },\n                    \"vendor\": null,\n                    \"customer\": null\n                }\n            ]\n        }\n    }\n}"}],"_postman_id":"e82d6d40-7049-4e64-b133-df7e309aba3f"},{"name":"Cancel Payment","event":[{"listen":"test","script":{"id":"072e9fc4-b2d7-4759-8cb8-d884ec705d49","exec":["pm.test('Status code is 200', function () {","    pm.response.to.have.status(200);","})"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"d312b39e-a06b-497f-bd21-178a854373ff","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"replaceWithFloPayUser"},{"key":"password","value":"replaceWithFloPayPassword"}]},"isInherited":false},"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"businessId\": \"{{businessId}}\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base}}/payment/cancel/{{paymentId}}","urlObject":{"path":["payment","cancel","{{paymentId}}"],"host":["{{base}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"d312b39e-a06b-497f-bd21-178a854373ff"},{"name":"ACH","event":[{"listen":"test","script":{"id":"03b765fd-7cdf-4701-a1a7-f6f18e465fe8","exec":["pm.test('Status code is 200', function () {","    pm.response.to.have.status(200);","})"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"df5dc5f5-025c-4709-a797-6955abdf1625","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"replaceWithFloPayUser"},{"key":"password","value":"replaceWithFloPayPassword"}]},"isInherited":false},"method":"PUT","header":[{"key":"","value":"","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"businessId\": \"{{businessId}}\",\r\n    \"token\": {\r\n        \"token\": \"T12I5NNZO4OLPR7DY5W2GUO91D5W1PVCXZ750L\"\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base}}/payment/ach/{{paymentId}}","urlObject":{"path":["payment","ach","{{paymentId}}"],"host":["{{base}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"df5dc5f5-025c-4709-a797-6955abdf1625"},{"name":"Email Payment Link","event":[{"listen":"test","script":{"id":"a6449c26-d98b-463e-bccc-d19184865e24","exec":["pm.test('Status code is 200', function () {","    pm.response.to.have.status(200);","})"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"e41355da-bfeb-4447-b8a8-29f3e79df468","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"replaceWithFloPayUser"},{"key":"password","value":"replaceWithFloPayPassword"}]},"isInherited":false},"method":"PUT","header":[{"key":"","value":"","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"businessId\": \"{{businessId}}\"\n}","options":{"raw":{"language":"json"}}},"url":"{{base}}/payment/email/{{paymentId}}","urlObject":{"path":["payment","email","{{paymentId}}"],"host":["{{base}}"],"query":[],"variable":[]}},"response":[{"id":"b1fe9e96-d757-40bb-b4e0-8eda90b89660","name":"Email Payment Link","originalRequest":{"method":"PUT","header":[{"key":"","value":"","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"businessId\": \"{{businessId}}\",\n    \"paymentProviderData\": {\n        \"prePayment\": {\n            \"url\": \"https://devapi.flopay.co/gateway/checkout/krBeYZTaXH35PreaxVCpXlGKtyAFLBXlamXBcE1S\",\n            \"type\": \"iFrame\",\n            \"gateway\": \"flopay\"\n        }\n    },\n    \"token\": null,\n    \"providerRef\": null,\n    \"status\": \"Emailed\",\n    \"type\": \"Email\",\n    \"uid\": \"Uj2UObPyJyApIR3IYCStJyocADz7YvvEXrvXeksK\",\n    \"hookRef\": null,\n    \"nextDate\": null,\n    \"amount\": \"52.5\",\n    \"currency\": \"USD\",\n    \"cadenceData\": {},\n    \"customerId\": 68,\n    \"orderId\": 161,\n    \"tags\": [],\n    \"notes\": [],\n    \"createdAt\": \"2024-08-16T20:05:49.498Z\",\n    \"updatedAt\": \"2024-08-16T20:09:26.149Z\",\n    \"customer\": {\n        \"id\": 68,\n        \"active\": true,\n        \"hookRef\": null,\n        \"optIn\": true,\n        \"cards\": [],\n        \"ref\": null,\n        \"name\": \"MartinVan Buren\",\n        \"terms\": null,\n        \"companyName\": null,\n        \"taxRate\": {\n            \"ref\": \"\",\n            \"name\": \"Sales Tax\",\n            \"rate\": 0.05,\n            \"agency\": \"Tax Agency\",\n            \"isDefault\": true\n        },\n        \"businessId\": \"K5jrN7LSJ7\",\n        \"contacts\": [\n            {\n                \"type\": \"email\",\n                \"address\": \"someemail@test.com\"\n            },\n            {\n                \"type\": \"mobile\",\n                \"number\": \"+18017229210\"\n            }\n        ],\n        \"notes\": [],\n        \"tags\": [],\n        \"createdAt\": \"2024-08-16T02:28:05.726Z\",\n        \"updatedAt\": \"2024-08-16T02:28:05.726Z\"\n    },\n    \"order\": {\n        \"id\": 161,\n        \"number\": \"161\",\n        \"total\": \"52.5\",\n        \"subTotal\": \"50\",\n        \"terms\": \"Card\",\n        \"status\": \"Invoiced\",\n        \"paymentStatus\": null,\n        \"tax\": \"2.5\",\n        \"hookRef\": \"12345\",\n        \"businessId\": \"K5jrN7LSJ7\",\n        \"taxRate\": {\n            \"ref\": \"\",\n            \"name\": \"Sales Tax\",\n            \"rate\": 0.05,\n            \"agency\": \"Tax Agency\",\n            \"isDefault\": true\n        },\n        \"customerId\": 68,\n        \"assignedToUserId\": 23,\n        \"notes\": [],\n        \"tags\": [],\n        \"createdAt\": \"2024-08-16T20:05:49.036Z\",\n        \"updatedAt\": \"2024-08-16T20:09:26.452Z\",\n        \"orderItems\": [\n            {\n                \"id\": 190,\n                \"businessId\": \"K5jrN7LSJ7\",\n                \"complete\": false,\n                \"description\": null,\n                \"number\": \"MISC-FAST\",\n                \"price\": \"50\",\n                \"partId\": 71,\n                \"locationId\": null,\n                \"vendorId\": null,\n                \"customerId\": null,\n                \"quantity\": \"1\",\n                \"uom\": {\n                    \"name\": \"EA\",\n                    \"conversion\": 1\n                },\n                \"createdAt\": \"2024-08-16T20:05:49.323Z\",\n                \"updatedAt\": \"2024-08-16T20:05:49.323Z\",\n                \"orderId\": 161,\n                \"part\": {\n                    \"id\": 71,\n                    \"number\": \"MISC-FAST\",\n                    \"ref\": null,\n                    \"hookRef\": null,\n                    \"incomeAccountId\": null,\n                    \"inventoryAccountId\": null,\n                    \"expenseAccountId\": null,\n                    \"description\": \"Some Item You Sell\",\n                    \"stockLevel\": null,\n                    \"cost\": \"0\",\n                    \"price\": \"50\",\n                    \"type\": \"Service\",\n                    \"taxable\": true,\n                    \"trackingType\": [],\n                    \"active\": true,\n                    \"businessId\": \"K5jrN7LSJ7\",\n                    \"defaultLocationId\": null,\n                    \"notes\": [],\n                    \"tags\": [],\n                    \"uoms\": [\n                        {\n                            \"name\": \"EA\",\n                            \"conversion\": 1\n                        }\n                    ],\n                    \"createdAt\": \"2024-08-16T02:28:05.796Z\",\n                    \"updatedAt\": \"2024-08-16T02:28:05.796Z\",\n                    \"defaultLocation\": null,\n                    \"expenseAccount\": null,\n                    \"incomeAccount\": null,\n                    \"inventoryAccount\": null\n                }\n            }\n        ],\n        \"assignedToUser\": {\n            \"name\": \"Change Me Change Me\",\n            \"id\": 23,\n            \"username\": \"lindabrobledo@gmail.com\",\n            \"businessId\": \"K5jrN7LSJ7\",\n            \"module\": {\n                \"part\": true,\n                \"user\": true,\n                \"order\": true,\n                \"report\": true,\n                \"vendor\": true,\n                \"company\": true,\n                \"payment\": true,\n                \"release\": true,\n                \"webhook\": true,\n                \"customer\": true,\n                \"location\": true,\n                \"dashboard\": true,\n                \"inventory\": true,\n                \"receivable\": true,\n                \"webhookLog\": true\n            },\n            \"nameFirst\": \"Change Me\",\n            \"nameLast\": \"Change Me\",\n            \"contacts\": [],\n            \"notes\": [],\n            \"tags\": [],\n            \"createdAt\": \"2024-08-12T02:11:48.900Z\",\n            \"updatedAt\": \"2024-08-12T02:11:48.900Z\"\n        },\n        \"customer\": {\n            \"id\": 68,\n            \"active\": true,\n            \"hookRef\": null,\n            \"optIn\": true,\n            \"cards\": [],\n            \"ref\": null,\n            \"name\": \"MartinVan Buren\",\n            \"terms\": null,\n            \"companyName\": null,\n            \"taxRate\": {\n                \"ref\": \"\",\n                \"name\": \"Sales Tax\",\n                \"rate\": 0.05,\n                \"agency\": \"Tax Agency\",\n                \"isDefault\": true\n            },\n            \"businessId\": \"K5jrN7LSJ7\",\n            \"contacts\": [\n                {\n                    \"type\": \"email\",\n                    \"address\": \"someemail@test.com\"\n                },\n                {\n                    \"type\": \"mobile\",\n                    \"number\": \"+18017229210\"\n                }\n            ],\n            \"notes\": [],\n            \"tags\": [],\n            \"createdAt\": \"2024-08-16T02:28:05.726Z\",\n            \"updatedAt\": \"2024-08-16T02:28:05.726Z\"\n        },\n        \"release\": null\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{base}}/payment/email/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 16 Aug 2024 20:13:46 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"50"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"cb46b347-c425-4156-995b-e52abdbba094"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"x-amz-apigw-id","value":"cnjnIGkboAMED3Q="},{"key":"X-Amzn-Trace-Id","value":"Root=1-66bfb2fa-32ef34117eea19366220578d;Parent=09bc00fab79b223a;Sampled=0;lineage=2a121c2a:0|876b9684:0"},{"key":"Access-Control-Allow-Credentials","value":"true"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Email sent tolindabrobledo@gmail.com\"\n}"}],"_postman_id":"e41355da-bfeb-4447-b8a8-29f3e79df468"},{"name":"Text Payment Link","id":"9238303f-45f4-4832-87e3-63d47bfe2085","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"replaceWithFloPayUser"},{"key":"password","value":"replaceWithFloPayPassword"}]},"isInherited":false},"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"businessId\": \"{{businessId}}\",\r\n    \"paymentProviderData\": {\r\n        \"prePayment\": {\r\n            \"url\": \"https://devapi.flopay.co/gateway/checkout/a5GORFNxYxSPciGJiOFDIhbv2DAXIw6zy8JlWYY7\",\r\n            \"type\": \"iFrame\",\r\n            \"gateway\": \"flopay\"\r\n        }\r\n    },\r\n    \"token\": null,\r\n    \"providerRef\": null,\r\n    \"status\": \"Texted\",\r\n    \"type\": \"Text\",\r\n    \"uid\": \"L16spQOxOH\",\r\n    \"hookRef\": null,\r\n    \"nextDate\": null,\r\n    \"amount\": \"52.5\",\r\n    \"currency\": \"USD\",\r\n    \"cadenceData\": {},\r\n    \"customerId\": 68,\r\n    \"orderId\": 161,\r\n    \"tags\": [],\r\n    \"notes\": [],\r\n    \"createdAt\": \"2024-08-16T20:05:49.498Z\",\r\n    \"updatedAt\": \"2024-08-16T20:12:17.585Z\",\r\n    \"customer\": {\r\n        \"id\": 68,\r\n        \"active\": true,\r\n        \"hookRef\": null,\r\n        \"optIn\": true,\r\n        \"cards\": [],\r\n        \"ref\": null,\r\n        \"name\": \"MartinVan Buren\",\r\n        \"terms\": null,\r\n        \"companyName\": null,\r\n        \"taxRate\": {\r\n            \"ref\": \"\",\r\n            \"name\": \"Sales Tax\",\r\n            \"rate\": 0.05,\r\n            \"agency\": \"Tax Agency\",\r\n            \"isDefault\": true\r\n        },\r\n        \"businessId\": \"K5jrN7LSJ7\",\r\n        \"contacts\": [\r\n            {\r\n                \"type\": \"email\",\r\n                \"address\": \"someemail@test.com\"\r\n            },\r\n            {\r\n                \"type\": \"mobile\",\r\n                \"number\": \"\"\r\n            }\r\n        ],\r\n        \"notes\": [],\r\n        \"tags\": [],\r\n        \"createdAt\": \"2024-08-16T02:28:05.726Z\",\r\n        \"updatedAt\": \"2024-08-16T02:28:05.726Z\"\r\n    },\r\n    \"order\": {\r\n        \"id\": 161,\r\n        \"number\": \"161\",\r\n        \"total\": \"52.5\",\r\n        \"subTotal\": \"50\",\r\n        \"terms\": \"Card\",\r\n        \"status\": \"Invoiced\",\r\n        \"paymentStatus\": null,\r\n        \"tax\": \"2.5\",\r\n        \"hookRef\": \"12345\",\r\n        \"businessId\": \"K5jrN7LSJ7\",\r\n        \"taxRate\": {\r\n            \"ref\": \"\",\r\n            \"name\": \"Sales Tax\",\r\n            \"rate\": 0.05,\r\n            \"agency\": \"Tax Agency\",\r\n            \"isDefault\": true\r\n        },\r\n        \"customerId\": 68,\r\n        \"assignedToUserId\": 23,\r\n        \"notes\": [],\r\n        \"tags\": [],\r\n        \"createdAt\": \"2024-08-16T20:05:49.036Z\",\r\n        \"updatedAt\": \"2024-08-16T20:09:26.452Z\",\r\n        \"orderItems\": [\r\n            {\r\n                \"id\": 190,\r\n                \"businessId\": \"K5jrN7LSJ7\",\r\n                \"complete\": false,\r\n                \"description\": null,\r\n                \"number\": \"MISC-FAST\",\r\n                \"price\": \"50\",\r\n                \"partId\": 71,\r\n                \"locationId\": null,\r\n                \"vendorId\": null,\r\n                \"customerId\": null,\r\n                \"quantity\": \"1\",\r\n                \"uom\": {\r\n                    \"name\": \"EA\",\r\n                    \"conversion\": 1\r\n                },\r\n                \"createdAt\": \"2024-08-16T20:05:49.323Z\",\r\n                \"updatedAt\": \"2024-08-16T20:05:49.323Z\",\r\n                \"orderId\": 161,\r\n                \"part\": {\r\n                    \"id\": 71,\r\n                    \"number\": \"MISC-FAST\",\r\n                    \"ref\": null,\r\n                    \"hookRef\": null,\r\n                    \"incomeAccountId\": null,\r\n                    \"inventoryAccountId\": null,\r\n                    \"expenseAccountId\": null,\r\n                    \"description\": \"Some Item You Sell\",\r\n                    \"stockLevel\": null,\r\n                    \"cost\": \"0\",\r\n                    \"price\": \"50\",\r\n                    \"type\": \"Service\",\r\n                    \"taxable\": true,\r\n                    \"trackingType\": [],\r\n                    \"active\": true,\r\n                    \"businessId\": \"K5jrN7LSJ7\",\r\n                    \"defaultLocationId\": null,\r\n                    \"notes\": [],\r\n                    \"tags\": [],\r\n                    \"uoms\": [\r\n                        {\r\n                            \"name\": \"EA\",\r\n                            \"conversion\": 1\r\n                        }\r\n                    ],\r\n                    \"createdAt\": \"2024-08-16T02:28:05.796Z\",\r\n                    \"updatedAt\": \"2024-08-16T02:28:05.796Z\",\r\n                    \"defaultLocation\": null,\r\n                    \"expenseAccount\": null,\r\n                    \"incomeAccount\": null,\r\n                    \"inventoryAccount\": null\r\n                }\r\n            }\r\n        ],\r\n        \"assignedToUser\": {\r\n            \"name\": \"Change Me Change Me\",\r\n            \"id\": 23,\r\n            \"username\": \"lindabrobledo@gmail.com\",\r\n            \"businessId\": \"K5jrN7LSJ7\",\r\n            \"module\": {\r\n                \"part\": true,\r\n                \"user\": true,\r\n                \"order\": true,\r\n                \"report\": true,\r\n                \"vendor\": true,\r\n                \"company\": true,\r\n                \"payment\": true,\r\n                \"release\": true,\r\n                \"webhook\": true,\r\n                \"customer\": true,\r\n                \"location\": true,\r\n                \"dashboard\": true,\r\n                \"inventory\": true,\r\n                \"receivable\": true,\r\n                \"webhookLog\": true\r\n            },\r\n            \"nameFirst\": \"Change Me\",\r\n            \"nameLast\": \"Change Me\",\r\n            \"contacts\": [],\r\n            \"notes\": [],\r\n            \"tags\": [],\r\n            \"createdAt\": \"2024-08-12T02:11:48.900Z\",\r\n            \"updatedAt\": \"2024-08-12T02:11:48.900Z\"\r\n        },\r\n        \"customer\": {\r\n            \"id\": 68,\r\n            \"active\": true,\r\n            \"hookRef\": null,\r\n            \"optIn\": true,\r\n            \"cards\": [],\r\n            \"ref\": null,\r\n            \"name\": \"MartinVan Buren\",\r\n            \"terms\": null,\r\n            \"companyName\": null,\r\n            \"taxRate\": {\r\n                \"ref\": \"\",\r\n                \"name\": \"Sales Tax\",\r\n                \"rate\": 0.05,\r\n                \"agency\": \"Tax Agency\",\r\n                \"isDefault\": true\r\n            },\r\n            \"businessId\": \"K5jrN7LSJ7\",\r\n            \"contacts\": [\r\n                {\r\n                    \"type\": \"email\",\r\n                    \"address\": \"someemail@test.com\"\r\n                },\r\n                {\r\n                    \"type\": \"mobile\",\r\n                    \"number\": \"\"\r\n                }\r\n            ],\r\n            \"notes\": [],\r\n            \"tags\": [],\r\n            \"createdAt\": \"2024-08-16T02:28:05.726Z\",\r\n            \"updatedAt\": \"2024-08-16T02:28:05.726Z\"\r\n        },\r\n        \"release\": null\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base}}/payment/text/{{paymentId}}","urlObject":{"path":["payment","text","{{paymentId}}"],"host":["{{base}}"],"query":[],"variable":[]}},"response":[{"id":"778e2ca8-6015-4d6c-b645-cdf2c46d54f6","name":"Text Payment Link","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"businessId\": \"{{businessId}}\",\n    \"paymentProviderData\": {\n        \"prePayment\": {\n            \"url\": \"https://devapi.flopay.co/gateway/checkout/a5GORFNxYxSPciGJiOFDIhbv2DAXIw6zy8JlWYY7\",\n            \"type\": \"iFrame\",\n            \"gateway\": \"flopay\"\n        }\n    },\n    \"token\": null,\n    \"providerRef\": null,\n    \"status\": \"Texted\",\n    \"type\": \"Text\",\n    \"uid\": \"L16spQOxOH\",\n    \"hookRef\": null,\n    \"nextDate\": null,\n    \"amount\": \"52.5\",\n    \"currency\": \"USD\",\n    \"cadenceData\": {},\n    \"customerId\": 68,\n    \"orderId\": 161,\n    \"tags\": [],\n    \"notes\": [],\n    \"createdAt\": \"2024-08-16T20:05:49.498Z\",\n    \"updatedAt\": \"2024-08-16T20:12:17.585Z\",\n    \"customer\": {\n        \"id\": 68,\n        \"active\": true,\n        \"hookRef\": null,\n        \"optIn\": true,\n        \"cards\": [],\n        \"ref\": null,\n        \"name\": \"MartinVan Buren\",\n        \"terms\": null,\n        \"companyName\": null,\n        \"taxRate\": {\n            \"ref\": \"\",\n            \"name\": \"Sales Tax\",\n            \"rate\": 0.05,\n            \"agency\": \"Tax Agency\",\n            \"isDefault\": true\n        },\n        \"businessId\": \"K5jrN7LSJ7\",\n        \"contacts\": [\n            {\n                \"type\": \"email\",\n                \"address\": \"someemail@test.com\"\n            },\n            {\n                \"type\": \"mobile\",\n                \"number\": \"+18017229210\"\n            }\n        ],\n        \"notes\": [],\n        \"tags\": [],\n        \"createdAt\": \"2024-08-16T02:28:05.726Z\",\n        \"updatedAt\": \"2024-08-16T02:28:05.726Z\"\n    },\n    \"order\": {\n        \"id\": 161,\n        \"number\": \"161\",\n        \"total\": \"52.5\",\n        \"subTotal\": \"50\",\n        \"terms\": \"Card\",\n        \"status\": \"Invoiced\",\n        \"paymentStatus\": null,\n        \"tax\": \"2.5\",\n        \"hookRef\": \"12345\",\n        \"businessId\": \"K5jrN7LSJ7\",\n        \"taxRate\": {\n            \"ref\": \"\",\n            \"name\": \"Sales Tax\",\n            \"rate\": 0.05,\n            \"agency\": \"Tax Agency\",\n            \"isDefault\": true\n        },\n        \"customerId\": 68,\n        \"assignedToUserId\": 23,\n        \"notes\": [],\n        \"tags\": [],\n        \"createdAt\": \"2024-08-16T20:05:49.036Z\",\n        \"updatedAt\": \"2024-08-16T20:09:26.452Z\",\n        \"orderItems\": [\n            {\n                \"id\": 190,\n                \"businessId\": \"K5jrN7LSJ7\",\n                \"complete\": false,\n                \"description\": null,\n                \"number\": \"MISC-FAST\",\n                \"price\": \"50\",\n                \"partId\": 71,\n                \"locationId\": null,\n                \"vendorId\": null,\n                \"customerId\": null,\n                \"quantity\": \"1\",\n                \"uom\": {\n                    \"name\": \"EA\",\n                    \"conversion\": 1\n                },\n                \"createdAt\": \"2024-08-16T20:05:49.323Z\",\n                \"updatedAt\": \"2024-08-16T20:05:49.323Z\",\n                \"orderId\": 161,\n                \"part\": {\n                    \"id\": 71,\n                    \"number\": \"MISC-FAST\",\n                    \"ref\": null,\n                    \"hookRef\": null,\n                    \"incomeAccountId\": null,\n                    \"inventoryAccountId\": null,\n                    \"expenseAccountId\": null,\n                    \"description\": \"Some Item You Sell\",\n                    \"stockLevel\": null,\n                    \"cost\": \"0\",\n                    \"price\": \"50\",\n                    \"type\": \"Service\",\n                    \"taxable\": true,\n                    \"trackingType\": [],\n                    \"active\": true,\n                    \"businessId\": \"K5jrN7LSJ7\",\n                    \"defaultLocationId\": null,\n                    \"notes\": [],\n                    \"tags\": [],\n                    \"uoms\": [\n                        {\n                            \"name\": \"EA\",\n                            \"conversion\": 1\n                        }\n                    ],\n                    \"createdAt\": \"2024-08-16T02:28:05.796Z\",\n                    \"updatedAt\": \"2024-08-16T02:28:05.796Z\",\n                    \"defaultLocation\": null,\n                    \"expenseAccount\": null,\n                    \"incomeAccount\": null,\n                    \"inventoryAccount\": null\n                }\n            }\n        ],\n        \"assignedToUser\": {\n            \"name\": \"Change Me Change Me\",\n            \"id\": 23,\n            \"username\": \"lindabrobledo@gmail.com\",\n            \"businessId\": \"K5jrN7LSJ7\",\n            \"module\": {\n                \"part\": true,\n                \"user\": true,\n                \"order\": true,\n                \"report\": true,\n                \"vendor\": true,\n                \"company\": true,\n                \"payment\": true,\n                \"release\": true,\n                \"webhook\": true,\n                \"customer\": true,\n                \"location\": true,\n                \"dashboard\": true,\n                \"inventory\": true,\n                \"receivable\": true,\n                \"webhookLog\": true\n            },\n            \"nameFirst\": \"Change Me\",\n            \"nameLast\": \"Change Me\",\n            \"contacts\": [],\n            \"notes\": [],\n            \"tags\": [],\n            \"createdAt\": \"2024-08-12T02:11:48.900Z\",\n            \"updatedAt\": \"2024-08-12T02:11:48.900Z\"\n        },\n        \"customer\": {\n            \"id\": 68,\n            \"active\": true,\n            \"hookRef\": null,\n            \"optIn\": true,\n            \"cards\": [],\n            \"ref\": null,\n            \"name\": \"MartinVan Buren\",\n            \"terms\": null,\n            \"companyName\": null,\n            \"taxRate\": {\n                \"ref\": \"\",\n                \"name\": \"Sales Tax\",\n                \"rate\": 0.05,\n                \"agency\": \"Tax Agency\",\n                \"isDefault\": true\n            },\n            \"businessId\": \"K5jrN7LSJ7\",\n            \"contacts\": [\n                {\n                    \"type\": \"email\",\n                    \"address\": \"someemail@test.com\"\n                },\n                {\n                    \"type\": \"mobile\",\n                    \"number\": \"+18017229210\"\n                }\n            ],\n            \"notes\": [],\n            \"tags\": [],\n            \"createdAt\": \"2024-08-16T02:28:05.726Z\",\n            \"updatedAt\": \"2024-08-16T02:28:05.726Z\"\n        },\n        \"release\": null\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{base}}/payment/text/{{paymentId}}"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Text sent tolindabrobledo@gmail.com\"\n}"}],"_postman_id":"9238303f-45f4-4832-87e3-63d47bfe2085"},{"name":"Get Payment","event":[{"listen":"test","script":{"id":"bf021b12-faac-47f9-a11d-6588b65e3033","exec":["pm.test('Status code is 200', function () {","    pm.response.to.have.status(200);","})"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"3858e589-5722-4b29-9f9a-69f7fe046948","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"replaceWithFloPayUser"},{"key":"password","value":"replaceWithFloPayPassword"}]},"isInherited":false},"method":"GET","header":[],"url":"{{base}}/payment/{{paymentId}}","urlObject":{"path":["payment","{{paymentId}}"],"host":["{{base}}"],"query":[],"variable":[]}},"response":[{"id":"6f0aff93-2a77-4974-8a40-e221eab1cc6d","name":"Get Payment","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{base}}/payment?id={{paymentId}}","host":["{{base}}"],"path":["payment"],"query":[{"key":"id","value":"{{paymentId}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 08 Dec 2023 19:51:18 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"4063"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"30826ebf-1644-4d13-995b-6f904c4598cb"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"x-amz-apigw-id","value":"Po8EgEWQIAMEDig="},{"key":"X-Amzn-Trace-Id","value":"Root=1-657373b6-7c3de8bf36916ecc51de900d;Sampled=0;lineage=4858e837:0"},{"key":"Access-Control-Allow-Credentials","value":"true"}],"cookie":[],"responseTime":null,"body":"{\n    \"offset\": 0,\n    \"limit\": 10,\n    \"rows\": [\n        {\n            \"id\": 139,\n            \"paymentProviderData\": null,\n            \"token\": null,\n            \"providerRef\": null,\n            \"status\": \"Open\",\n            \"type\": null,\n            \"uid\": null,\n            \"hookRef\": null,\n            \"nextDate\": null,\n            \"amount\": \"52.5\",\n            \"currency\": \"USD\",\n            \"businessId\": \"K5jrN7LSJ7\",\n            \"cadenceData\": null,\n            \"customerId\": 70,\n            \"orderId\": 160,\n            \"tags\": [],\n            \"notes\": [],\n            \"createdAt\": \"2024-08-16T02:31:26.799Z\",\n            \"updatedAt\": \"2024-08-16T02:31:26.799Z\",\n            \"customer\": {\n                \"id\": 70,\n                \"active\": true,\n                \"hookRef\": null,\n                \"optIn\": true,\n                \"cards\": [],\n                \"ref\": null,\n                \"name\": \"MartinVan Buren\",\n                \"terms\": null,\n                \"companyName\": null,\n                \"taxRate\": {\n                    \"ref\": \"\",\n                    \"name\": \"Sales Tax\",\n                    \"rate\": 0.05,\n                    \"agency\": \"Tax Agency\",\n                    \"isDefault\": true\n                },\n                \"businessId\": \"K5jrN7LSJ7\",\n                \"contacts\": [\n                    {\n                        \"type\": \"email\",\n                        \"address\": \"email@test.com\"\n                    },\n                    {\n                        \"type\": \"mobile\",\n                        \"number\": \"+8015551254\"\n                    }\n                ],\n                \"notes\": [],\n                \"tags\": [],\n                \"createdAt\": \"2024-08-16T02:31:26.556Z\",\n                \"updatedAt\": \"2024-08-16T02:31:26.556Z\"\n            },\n            \"order\": {\n                \"id\": 160,\n                \"number\": \"160\",\n                \"total\": \"52.5\",\n                \"subTotal\": \"50\",\n                \"terms\": \"Card\",\n                \"status\": \"Open\",\n                \"paymentStatus\": null,\n                \"tax\": \"2.5\",\n                \"hookRef\": \"12345\",\n                \"businessId\": \"K5jrN7LSJ7\",\n                \"taxRate\": {\n                    \"ref\": \"\",\n                    \"name\": \"Sales Tax\",\n                    \"rate\": 0.05,\n                    \"agency\": \"Tax Agency\",\n                    \"isDefault\": true\n                },\n                \"customerId\": 70,\n                \"assignedToUserId\": 23,\n                \"notes\": [],\n                \"tags\": [],\n                \"createdAt\": \"2024-08-16T02:31:26.596Z\",\n                \"updatedAt\": \"2024-08-16T02:31:26.780Z\",\n                \"orderItems\": [\n                    {\n                        \"id\": 188,\n                        \"businessId\": \"K5jrN7LSJ7\",\n                        \"complete\": false,\n                        \"description\": null,\n                        \"number\": \"MISC-FAST\",\n                        \"price\": \"50\",\n                        \"partId\": 71,\n                        \"locationId\": null,\n                        \"vendorId\": null,\n                        \"customerId\": null,\n                        \"quantity\": \"1\",\n                        \"uom\": {\n                            \"name\": \"EA\",\n                            \"conversion\": 1\n                        },\n                        \"createdAt\": \"2024-08-16T02:31:26.681Z\",\n                        \"updatedAt\": \"2024-08-16T02:31:26.681Z\",\n                        \"orderId\": 160,\n                        \"part\": {\n                            \"id\": 71,\n                            \"number\": \"MISC-FAST\",\n                            \"ref\": null,\n                            \"hookRef\": null,\n                            \"incomeAccountId\": null,\n                            \"inventoryAccountId\": null,\n                            \"expenseAccountId\": null,\n                            \"description\": \"Some Item You Sell\",\n                            \"stockLevel\": null,\n                            \"cost\": \"0\",\n                            \"price\": \"50\",\n                            \"type\": \"Service\",\n                            \"taxable\": true,\n                            \"trackingType\": [],\n                            \"active\": true,\n                            \"businessId\": \"K5jrN7LSJ7\",\n                            \"defaultLocationId\": null,\n                            \"notes\": [],\n                            \"tags\": [],\n                            \"uoms\": [\n                                {\n                                    \"name\": \"EA\",\n                                    \"conversion\": 1\n                                }\n                            ],\n                            \"createdAt\": \"2024-08-16T02:28:05.796Z\",\n                            \"updatedAt\": \"2024-08-16T02:28:05.796Z\",\n                            \"defaultLocation\": null,\n                            \"expenseAccount\": null,\n                            \"incomeAccount\": null,\n                            \"inventoryAccount\": null\n                        }\n                    }\n                ],\n                \"assignedToUser\": {\n                    \"name\": \"Change Me Change Me\",\n                    \"id\": 23,\n                    \"username\": \"lindabrobledo@gmail.com\",\n                    \"businessId\": \"K5jrN7LSJ7\",\n                    \"module\": {\n                        \"part\": true,\n                        \"user\": true,\n                        \"order\": true,\n                        \"report\": true,\n                        \"vendor\": true,\n                        \"company\": true,\n                        \"payment\": true,\n                        \"release\": true,\n                        \"webhook\": true,\n                        \"customer\": true,\n                        \"location\": true,\n                        \"dashboard\": true,\n                        \"inventory\": true,\n                        \"receivable\": true,\n                        \"webhookLog\": true\n                    },\n                    \"nameFirst\": \"Change Me\",\n                    \"nameLast\": \"Change Me\",\n                    \"contacts\": [],\n                    \"notes\": [],\n                    \"tags\": [],\n                    \"createdAt\": \"2024-08-12T02:11:48.900Z\",\n                    \"updatedAt\": \"2024-08-12T02:11:48.900Z\"\n                },\n                \"customer\": {\n                    \"id\": 70,\n                    \"active\": true,\n                    \"hookRef\": null,\n                    \"optIn\": true,\n                    \"cards\": [],\n                    \"ref\": null,\n                    \"name\": \"MartinVan Buren\",\n                    \"terms\": null,\n                    \"companyName\": null,\n                    \"taxRate\": {\n                        \"ref\": \"\",\n                        \"name\": \"Sales Tax\",\n                        \"rate\": 0.05,\n                        \"agency\": \"Tax Agency\",\n                        \"isDefault\": true\n                    },\n                    \"businessId\": \"K5jrN7LSJ7\",\n                    \"contacts\": [\n                        {\n                            \"type\": \"email\",\n                            \"address\": \"email@test.com\"\n                        },\n                        {\n                            \"type\": \"mobile\",\n                            \"number\": \"+8015551254\"\n                        }\n                    ],\n                    \"notes\": [],\n                    \"tags\": [],\n                    \"createdAt\": \"2024-08-16T02:31:26.556Z\",\n                    \"updatedAt\": \"2024-08-16T02:31:26.556Z\"\n                },\n                \"release\": null\n            }\n        }\n    ],\n    \"hasMore\": false\n}"}],"_postman_id":"3858e589-5722-4b29-9f9a-69f7fe046948"},{"name":"Get Payments","id":"c4eb6384-0b27-49f2-873e-c2b3c0801665","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"replaceWithFloPayUser"},{"key":"password","value":"replaceWithFloPayPassword"}]},"isInherited":false},"method":"GET","header":[],"url":"{{base}}/payment?limit=2&offset=0&sort=-updatedAt&startDate=1999-11-16T07%3A00%3A00.000Z&endDate=2050-11-17T06%3A59%3A59.999Z","urlObject":{"path":["payment"],"host":["{{base}}"],"query":[{"key":"limit","value":"2"},{"key":"offset","value":"0"},{"key":"sort","value":"-updatedAt"},{"key":"startDate","value":"1999-11-16T07%3A00%3A00.000Z"},{"key":"endDate","value":"2050-11-17T06%3A59%3A59.999Z"}],"variable":[]}},"response":[{"id":"f98dfaf9-7244-4f61-a15f-42f1d26a177a","name":"Get Payments","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{base}}/payment?limit=2&offset=0&sort=-updatedAt&startDate=1999-11-16T07%3A00%3A00.000Z&endDate=2050-11-17T06%3A59%3A59.999Z","host":["{{base}}"],"path":["payment"],"query":[{"key":"limit","value":"2"},{"key":"offset","value":"0"},{"key":"sort","value":"-updatedAt"},{"key":"startDate","value":"1999-11-16T07%3A00%3A00.000Z"},{"key":"endDate","value":"2050-11-17T06%3A59%3A59.999Z"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 08 Dec 2023 20:08:08 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"8078"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"02492eb9-05f6-4761-ad7f-b6b6561e7bcd"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"x-amz-apigw-id","value":"Po-iVFJwIAMEGXA="},{"key":"X-Amzn-Trace-Id","value":"Root=1-657377a8-5ff92990117cc312738872e0;Sampled=0;lineage=4858e837:0"},{"key":"Access-Control-Allow-Credentials","value":"true"}],"cookie":[],"responseTime":null,"body":"{\n    \"offset\": 0,\n    \"limit\": 2,\n    \"rows\": [\n        {\n            \"id\": 81,\n            \"paymentProviderData\": null,\n            \"status\": \"Open\",\n            \"type\": \"\",\n            \"uid\": null,\n            \"nextDate\": null,\n            \"amount\": \"10\",\n            \"businessId\": \"4tsYEMs7z3\",\n            \"cadenceData\": {},\n            \"customerId\": 22,\n            \"orderId\": 45,\n            \"tags\": [],\n            \"notes\": [],\n            \"createdAt\": \"2023-11-18T00:43:14.879Z\",\n            \"updatedAt\": \"2023-12-08T20:04:15.019Z\",\n            \"customer\": {\n                \"id\": 22,\n                \"active\": true,\n                \"optIn\": true,\n                \"ref\": null,\n                \"name\": \"test\",\n                \"terms\": null,\n                \"companyName\": null,\n                \"taxRate\": null,\n                \"businessId\": \"4tsYEMs7z3\",\n                \"contacts\": [\n                    {\n                        \"type\": \"phone\",\n                        \"number\": \"5555555555\"\n                    },\n                    {\n                        \"type\": \"mobile\",\n                        \"number\": \"5555555555\"\n                    },\n                    {\n                        \"type\": \"email\",\n                        \"address\": \"fakeemail@gmail.com\"\n                    },\n                    {\n                        \"city\": \"Fake City\",\n                \"type\": \"billToAddress\",\n                \"state\": \"UT\",\n                \"street\": \"8888 Fake Street\",\n                \"postalCode\": \"88888\"\n                    },\n                    {\n                        \"city\": \"Fake City\",\n                \"type\": \"billToAddress\",\n                \"state\": \"UT\",\n                \"street\": \"8888 Fake Street\",\n                \"postalCode\": \"88888\"\n                    }\n                ],\n                \"notes\": [\n                    {\n                        \"value\": \"This is a good note\"\n                    }\n                ],\n                \"tags\": [],\n                \"createdAt\": \"2023-11-15T04:32:07.626Z\",\n                \"updatedAt\": \"2023-11-28T06:21:04.842Z\"\n            },\n            \"order\": {\n                \"id\": 45,\n                \"number\": \"45\",\n                \"total\": \"0\",\n                \"subTotal\": \"0\",\n                \"terms\": \"Card\",\n                \"status\": \"Invoiced\",\n                \"paymentStatus\": null,\n                \"tax\": \"0\",\n                \"businessId\": \"4tsYEMs7z3\",\n                \"customerId\": 22,\n                \"assignedToUserId\": 51,\n                \"notes\": [],\n                \"tags\": [],\n                \"createdAt\": \"2023-11-15T04:38:15.173Z\",\n                \"updatedAt\": \"2023-11-18T00:44:09.529Z\",\n                \"orderItems\": [],\n                \"assignedToUser\": {\n                    \"name\": \"fake name\",\n                    \"id\": 51,\n                    \"username\": \"fakename@gmail.com\",\n                    \"businessId\": \"4tsYEMs7z3\",\n                    \"module\": {\n                        \"part\": true,\n                        \"task\": true,\n                        \"user\": true,\n                        \"order\": true,\n                        \"report\": true,\n                        \"vendor\": true,\n                        \"payment\": true,\n                        \"release\": true,\n                        \"customer\": true,\n                        \"location\": true,\n                        \"dashboard\": true,\n                        \"inventory\": true,\n                        \"receivable\": true\n                    },\n                    \"nameFirst\": \"fake\",\n                    \"nameLast\": \"name\",\n                    \"contacts\": null,\n                    \"notes\": [\n                        {\n                            \"value\": \"User\"\n                        }\n                    ],\n                    \"tags\": null,\n                    \"createdAt\": \"2023-08-29T22:33:28.224Z\",\n                    \"updatedAt\": \"2023-10-02T05:52:58.468Z\"\n                },\n                \"customer\": {\n                    \"id\": 22,\n                    \"active\": true,\n                    \"optIn\": true,\n                    \"ref\": null,\n                    \"name\": \"test\",\n                    \"terms\": null,\n                    \"companyName\": null,\n                    \"taxRate\": null,\n                    \"businessId\": \"4tsYEMs7z3\",\n                    \"contacts\": [\n                        {\n                            \"type\": \"phone\",\n                            \"number\": \"5555555555\"\n                        },\n                        {\n                            \"type\": \"mobile\",\n                            \"number\": \"5555555555\"\n                        },\n                        {\n                            \"type\": \"email\",\n                            \"address\": \"fakeemail@gmail.com\"\n                        },\n                        {\n                            \"city\": \"Fake City\",\n                \"type\": \"billToAddress\",\n                \"state\": \"UT\",\n                \"street\": \"8888 Fake Street\",\n                \"postalCode\": \"88888\"\n                        },\n                        {\n                            \"city\": \"Fake City\",\n                \"type\": \"billToAddress\",\n                \"state\": \"UT\",\n                \"street\": \"8888 Fake Street\",\n                \"postalCode\": \"88888\"\n                        }\n                    ],\n                    \"notes\": [\n                        {\n                            \"value\": \"This is a good note\"\n                        }\n                    ],\n                    \"tags\": [],\n                    \"createdAt\": \"2023-11-15T04:32:07.626Z\",\n                    \"updatedAt\": \"2023-11-28T06:21:04.842Z\"\n                },\n                \"release\": {\n                    \"id\": 55,\n                    \"businessId\": \"4tsYEMs7z3\",\n                    \"status\": \"Open\",\n                    \"orderNumber\": \"45\",\n                    \"orderId\": 45,\n                    \"createdAt\": \"2023-11-18T00:43:14.894Z\",\n                    \"updatedAt\": \"2023-11-18T00:43:14.894Z\",\n                    \"releaseItems\": [\n                        {\n                            \"id\": 91,\n                            \"quantity\": \"1\",\n                            \"uom\": \"EA\",\n                            \"trackingData\": null,\n                            \"businessId\": \"4tsYEMs7z3\",\n                            \"customerId\": null,\n                            \"locationId\": 1,\n                            \"partId\": 1889,\n                            \"vendorId\": null,\n                            \"releaseId\": 55,\n                            \"orderItemId\": null,\n                            \"createdAt\": \"2023-11-18T00:43:14.913Z\",\n                            \"updatedAt\": \"2023-11-18T00:43:14.913Z\",\n                            \"location\": {\n                                \"id\": 1,\n                                \"name\": \"Warehouse\",\n                                \"description\": \"Medium Warehouse \",\n                                \"address\": \"1010 East State Street, Orem, Ut, 84605\",\n                                \"active\": true,\n                                \"site\": true,\n                                \"readonly\": null,\n                                \"path\": \".20.\",\n                                \"businessId\": \"4tsYEMs7z3\",\n                                \"notes\": [],\n                                \"tags\": [],\n                                \"createdAt\": \"2023-10-04T23:15:48.137Z\",\n                                \"updatedAt\": \"2023-12-04T16:09:56.131Z\",\n                                \"parentId\": null,\n                                \"parent\": null\n                            },\n                            \"part\": {\n                                \"id\": 1889,\n                                \"number\": \"BicPen1\",\n                                \"ref\": null,\n                                \"incomeAccountId\": null,\n                                \"inventoryAccountId\": null,\n                                \"expenseAccountId\": null,\n                                \"description\": \"Great Pen for Writing\",\n                                \"stockLevel\": \"0\",\n                                \"cost\": \"0.5\",\n                                \"price\": \"0\",\n                                \"type\": \"Inventory\",\n                                \"taxable\": true,\n                                \"trackingType\": [],\n                                \"active\": true,\n                                \"businessId\": \"4tsYEMs7z3\",\n                                \"defaultLocationId\": 1,\n                                \"notes\": [],\n                                \"tags\": [],\n                                \"uoms\": [\n                                    {\n                                        \"name\": \"EA\",\n                                        \"conversion\": 1\n                                    }\n                                ],\n                                \"createdAt\": \"2023-11-12T00:11:43.722Z\",\n                                \"updatedAt\": \"2023-11-12T00:11:43.722Z\",\n                                \"defaultLocation\": {\n                                    \"id\": 1,\n                                    \"name\": \"Warehouse\",\n                                    \"description\": \"Medium Warehouse \",\n                                    \"address\": \"1010 East State Street, Orem, Ut, 84605\",\n                                    \"active\": true,\n                                    \"site\": true,\n                                    \"readonly\": null,\n                                    \"path\": \".20.\",\n                                    \"businessId\": \"4tsYEMs7z3\",\n                                    \"notes\": [],\n                                    \"tags\": [],\n                                    \"createdAt\": \"2023-10-04T23:15:48.137Z\",\n                                    \"updatedAt\": \"2023-12-04T16:09:56.131Z\",\n                                    \"parentId\": null,\n                                    \"parent\": null\n                                },\n                                \"expenseAccount\": null,\n                                \"incomeAccount\": null,\n                                \"inventoryAccount\": null\n                            },\n                            \"vendor\": null,\n                            \"customer\": null\n                        }\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": 82,\n            \"paymentProviderData\": null,\n            \"status\": \"Open\",\n            \"type\": \"\",\n            \"uid\": null,\n            \"nextDate\": null,\n            \"amount\": \"10\",\n            \"businessId\": \"4tsYEMs7z3\",\n            \"cadenceData\": {},\n            \"customerId\": 22,\n            \"orderId\": 45,\n            \"tags\": [],\n            \"notes\": [],\n            \"createdAt\": \"2023-11-18T00:43:24.581Z\",\n            \"updatedAt\": \"2023-12-08T20:01:24.124Z\",\n            \"customer\": {\n                \"id\": 22,\n                \"active\": true,\n                \"optIn\": true,\n                \"ref\": null,\n                \"name\": \"test\",\n                \"terms\": null,\n                \"companyName\": null,\n                \"taxRate\": null,\n                \"businessId\": \"4tsYEMs7z3\",\n                \"contacts\": [\n                    {\n                        \"type\": \"phone\",\n                        \"number\": \"5555555555\"\n                    },\n                    {\n                        \"type\": \"mobile\",\n                        \"number\": \"5555555555\"\n                    },\n                    {\n                        \"type\": \"email\",\n                        \"address\": \"fakeemail@gmail.com\"\n                    },\n                    {\n                        \"city\": \"Fake City\",\n                \"type\": \"billToAddress\",\n                \"state\": \"UT\",\n                \"street\": \"8888 Fake Street\",\n                \"postalCode\": \"88888\"\n                    },\n                    {\n                       \"city\": \"Fake City\",\n                \"type\": \"billToAddress\",\n                \"state\": \"UT\",\n                \"street\": \"8888 Fake Street\",\n                \"postalCode\": \"88888\"\n                    }\n                ],\n                \"notes\": [\n                    {\n                        \"value\": \"This is a good note\"\n                    }\n                ],\n                \"tags\": [],\n                \"createdAt\": \"2023-11-15T04:32:07.626Z\",\n                \"updatedAt\": \"2023-11-28T06:21:04.842Z\"\n            },\n            \"order\": {\n                \"id\": 45,\n                \"number\": \"45\",\n                \"total\": \"0\",\n                \"subTotal\": \"0\",\n                \"terms\": \"Card\",\n                \"status\": \"Invoiced\",\n                \"paymentStatus\": null,\n                \"tax\": \"0\",\n                \"businessId\": \"4tsYEMs7z3\",\n                \"customerId\": 22,\n                \"assignedToUserId\": 51,\n                \"notes\": [],\n                \"tags\": [],\n                \"createdAt\": \"2023-11-15T04:38:15.173Z\",\n                \"updatedAt\": \"2023-11-18T00:44:09.529Z\",\n                \"orderItems\": [],\n                \"assignedToUser\": {\n                    \"name\": \"fake name\",\n                    \"id\": 51,\n                    \"username\": \"fakeemail@gmail.com\",\n                    \"businessId\": \"4tsYEMs7z3\",\n                    \"module\": {\n                        \"part\": true,\n                        \"task\": true,\n                        \"user\": true,\n                        \"order\": true,\n                        \"report\": true,\n                        \"vendor\": true,\n                        \"payment\": true,\n                        \"release\": true,\n                        \"customer\": true,\n                        \"location\": true,\n                        \"dashboard\": true,\n                        \"inventory\": true,\n                        \"receivable\": true\n                    },\n                    \"nameFirst\": \"fake\",\n                    \"nameLast\": \"name\",\n                    \"contacts\": null,\n                    \"notes\": [\n                        {\n                            \"value\": \"User\"\n                        }\n                    ],\n                    \"tags\": null,\n                    \"createdAt\": \"2023-08-29T22:33:28.224Z\",\n                    \"updatedAt\": \"2023-10-02T05:52:58.468Z\"\n                },\n                \"customer\": {\n                    \"id\": 22,\n                    \"active\": true,\n                    \"optIn\": true,\n                    \"ref\": null,\n                    \"name\": \"test\",\n                    \"terms\": null,\n                    \"companyName\": null,\n                    \"taxRate\": null,\n                    \"businessId\": \"4tsYEMs7z3\",\n                    \"contacts\": [\n                        {\n                            \"type\": \"phone\",\n                            \"number\": \"5555555555\"\n                        },\n                        {\n                            \"type\": \"mobile\",\n                            \"number\": \"5555555555\"\n                        },\n                        {\n                            \"type\": \"email\",\n                            \"address\": \"fakeemail@gmail.com\"\n                        },\n                        {\n                            \"city\": \"Fake City\",\n                \"type\": \"billToAddress\",\n                \"state\": \"UT\",\n                \"street\": \"8888 Fake Street\",\n                \"postalCode\": \"88888\"\n                        },\n                        {\n                            \"city\": \"Fake City\",\n                \"type\": \"billToAddress\",\n                \"state\": \"UT\",\n                \"street\": \"8888 Fake Street\",\n                \"postalCode\": \"88888\"\n                        }\n                    ],\n                    \"notes\": [\n                        {\n                            \"value\": \"This is a good note\"\n                        }\n                    ],\n                    \"tags\": [],\n                    \"createdAt\": \"2023-11-15T04:32:07.626Z\",\n                    \"updatedAt\": \"2023-11-28T06:21:04.842Z\"\n                },\n                \"release\": {\n                    \"id\": 55,\n                    \"businessId\": \"4tsYEMs7z3\",\n                    \"status\": \"Open\",\n                    \"orderNumber\": \"45\",\n                    \"orderId\": 45,\n                    \"createdAt\": \"2023-11-18T00:43:14.894Z\",\n                    \"updatedAt\": \"2023-11-18T00:43:14.894Z\",\n                    \"releaseItems\": [\n                        {\n                            \"id\": 91,\n                            \"quantity\": \"1\",\n                            \"uom\": \"EA\",\n                            \"trackingData\": null,\n                            \"businessId\": \"4tsYEMs7z3\",\n                            \"customerId\": null,\n                            \"locationId\": 1,\n                            \"partId\": 1889,\n                            \"vendorId\": null,\n                            \"releaseId\": 55,\n                            \"orderItemId\": null,\n                            \"createdAt\": \"2023-11-18T00:43:14.913Z\",\n                            \"updatedAt\": \"2023-11-18T00:43:14.913Z\",\n                            \"location\": {\n                                \"id\": 1,\n                                \"name\": \"Warehouse\",\n                                \"description\": \"Medium Warehouse \",\n                                \"address\": \"1010 East State Street, Orem, Ut, 84605\",\n                                \"active\": true,\n                                \"site\": true,\n                                \"readonly\": null,\n                                \"path\": \".20.\",\n                                \"businessId\": \"4tsYEMs7z3\",\n                                \"notes\": [],\n                                \"tags\": [],\n                                \"createdAt\": \"2023-10-04T23:15:48.137Z\",\n                                \"updatedAt\": \"2023-12-04T16:09:56.131Z\",\n                                \"parentId\": null,\n                                \"parent\": null\n                            },\n                            \"part\": {\n                                \"id\": 1889,\n                                \"number\": \"BicPen1\",\n                                \"ref\": null,\n                                \"incomeAccountId\": null,\n                                \"inventoryAccountId\": null,\n                                \"expenseAccountId\": null,\n                                \"description\": \"Great Pen for Writing\",\n                                \"stockLevel\": \"0\",\n                                \"cost\": \"0.5\",\n                                \"price\": \"0\",\n                                \"type\": \"Inventory\",\n                                \"taxable\": true,\n                                \"trackingType\": [],\n                                \"active\": true,\n                                \"businessId\": \"4tsYEMs7z3\",\n                                \"defaultLocationId\": 1,\n                                \"notes\": [],\n                                \"tags\": [],\n                                \"uoms\": [\n                                    {\n                                        \"name\": \"EA\",\n                                        \"conversion\": 1\n                                    }\n                                ],\n                                \"createdAt\": \"2023-11-12T00:11:43.722Z\",\n                                \"updatedAt\": \"2023-11-12T00:11:43.722Z\",\n                                \"defaultLocation\": {\n                                    \"id\": 1,\n                                    \"name\": \"Warehouse\",\n                                    \"description\": \"Medium Warehouse \",\n                                    \"address\": \"1010 East State Street, Orem, Ut, 84605\",\n                                    \"active\": true,\n                                    \"site\": true,\n                                    \"readonly\": null,\n                                    \"path\": \".20.\",\n                                    \"businessId\": \"4tsYEMs7z3\",\n                                    \"notes\": [],\n                                    \"tags\": [],\n                                    \"createdAt\": \"2023-10-04T23:15:48.137Z\",\n                                    \"updatedAt\": \"2023-12-04T16:09:56.131Z\",\n                                    \"parentId\": null,\n                                    \"parent\": null\n                                },\n                                \"expenseAccount\": null,\n                                \"incomeAccount\": null,\n                                \"inventoryAccount\": null\n                            },\n                            \"vendor\": null,\n                            \"customer\": null\n                        }\n                    ]\n                }\n            }\n        }\n    ],\n    \"hasMore\": true\n}"}],"_postman_id":"c4eb6384-0b27-49f2-873e-c2b3c0801665"},{"name":"Delete Payment","id":"94fb2e7f-5935-4bcc-b082-2d43c8cc250f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"replaceWithFloPayUser"},{"key":"password","value":"replaceWithFloPayPassword"}]},"isInherited":false},"method":"DELETE","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{base}}/payment/{{paymentId}}","urlObject":{"path":["payment","{{paymentId}}"],"host":["{{base}}"],"query":[],"variable":[]}},"response":[{"id":"a3d6de75-986b-4d02-b973-2dac544f29c7","name":"Delete Payment","originalRequest":{"method":"DELETE","header":[],"url":"{{base}}/payment/{{paymentId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 08 Dec 2023 19:42:33 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"1"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"3638543e-8c35-4cd0-8279-c7f5d218743f"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"x-amz-apigw-id","value":"Po6yhEDBoAMEqrA="},{"key":"X-Amzn-Trace-Id","value":"Root=1-657371a9-3dce9863097faf674a4ee281;Sampled=0;lineage=2a121c2a:0|6ff1460e:0"},{"key":"Access-Control-Allow-Credentials","value":"true"}],"cookie":[],"responseTime":null,"body":"1"}],"_postman_id":"94fb2e7f-5935-4bcc-b082-2d43c8cc250f"}],"id":"bad6a6fd-f98b-4ae6-9654-3718190d5618","description":"<p><strong>Payment Links</strong></p>\n<p>The Payment Links API is used to create and send links to customers that they can use to pay using credit cards, bank accounts or other alternative payment methods. Methods and payment accounts need to be configured in advance. Supported gateways include Stripe, Authorize.net UsaEpay, Mavrick, NMI,Card Pointe, Revolv3, Fluidpay and others.</p>\n<p>To configure payment gateway integration, apply for an account, board an existing account or request a new gateway integration email <a href=\"https://mailto:contact@flopay.co\">contact@flopay.co</a>.</p>\n<p><strong>Payment Link Types</strong></p>\n<p>Flopay can send payment links via Text or Email. A secure payment link will be generated and sent to the mobile phone number or valid email address of your customer. The customer receiving the text or email will be directed to a secure payment page where they will be able to authorize payment and print an invoice. An email will be sent to the customer following the successful authorization. Your web service will be notified of the payment outcome via webhook. Use the Webhook API to register webhooks.</p>\n<p><strong>Preparation</strong></p>\n<p>Before you can send a payment link to a customer you must create two items in the Flopay API. First create a valid customer record with the minimum required fields and a valid order record.</p>\n<p>Use the Prepare endpoint to quickly create both records.</p>\n<p>You must post your customer information including a valid US mobile phone number and valid email address. You must also indicate that you have permission to contact your customer by text message by setting the opt in flag. The customer and order information will be used to send the payment link. Use the Customer API and Order API to post these records.</p>\n<p><strong>Account Settings</strong></p>\n<p>You should also complete your account configuration in the settings tab of the UI or use the Company API to set your Business contact information and logo which will appear on your invoices as well as your default tax rates.</p>\n<p><strong>Payment Link API</strong></p>\n<p>The payment link API can be used to get existing payment link data, update or delete payments. To create payment links use the Order API issue endpoint as payment links are tied to orders.</p>\n<p>Alternatively you can ues the API to create the initial record and use the folloiwng API to create send Payment links. Note the ID to send to the /email or /text end point is the id of the <strong>first payment in the payment array</strong> returned by the call to the Prepare end point.</p>\n<ul>\n<li><p>Send Email Invoice with secure payment link</p>\n<ul>\n<li>PUT <code>https://api.flopay.co/erp/payment/text/31</code></li>\n</ul>\n</li>\n<li><p>Send Text Message with secure payment link</p>\n<ul>\n<li>PUT <code>https://api.flopay.co/erp/payment/email/31</code></li>\n</ul>\n</li>\n<li><p>Create a schedule for sending Text Messages or Emails.</p>\n<ul>\n<li>PUT <code>https://api.flopay.co/erp/payment/31</code></li>\n</ul>\n</li>\n<li><p>Canceling the paymen will void or refund the payment</p>\n<ul>\n<li>PUT <code>https://api.flopay.co/erp/payment/cancelPayment/31</code></li>\n</ul>\n</li>\n</ul>\n<p><strong>Scheduled Messages</strong></p>\n<p>Scheduled emails or payment links can be created by including cadenceData object on the payment update request. Once a payment has been completed scheduled messages will be cancelled. See Payment API for all optional and required fields. Scheduled types can be Email, Text or Card.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n\"id\": 31,\n\"cadenceData\": {\n        \"type\": \"Email\",\n        \"startDate\": \"2023-12-13T20:47:26-07:00\",\n        \"endDate\": \"2023-12-29T20:47:26-07:00\",\n        \"interval\": \"Weekly\",\n        \"intervalValue\": 1,\n        \"endAfterStart\": true,\n        \"startInFuture\": true,\n        \"isInvalidStart\": false,\n        \"forceBusinessDay\": true\n    }\n}\n\n</code></pre>\n<p><strong>PAYMENT API</strong></p>\n<p>Use the Get Payments, Update Payments and Delete Payments end points to manager other life cycles.</p>\n<p><strong>Authorize</strong></p>\n<ul>\n<li><p>Begin payment authoriztions by tokenizing a card and preparing payement using Prepare end point.</p>\n</li>\n<li><p>Follow up with a call to the Pay end point</p>\n</li>\n</ul>\n<p><strong>Auth Only</strong></p>\n<ul>\n<li><p>Start with of Prepare call</p>\n</li>\n<li><p>Make follow up call to /pay end point. Set authOnly to true in options</p>\n</li>\n<li><p>Make a final follow call to the Capture end point to capture transaction</p>\n</li>\n</ul>\n<p><strong>Refund / Void</strong></p>\n<ul>\n<li>To cancel or void a transaction make a call to the Cancel Payment end point</li>\n</ul>\n<p>Browser Based Encryption</p>\n<p><a href=\"https://jsfiddle.net/TokenEx/pdx9qLqh/\">https://jsfiddle.net/TokenEx/pdx9qLqh/</a></p>\n<p>Browser Based encryption allow you to safely process credit cards using Sale API with out using the checkout iframe, email or text links. This API cannot preform 3DS. BBE is a PCI approved way to encrypt card data in the browser and prevent the card number from being handled by your server. Read more about BBE on the Tokenex site.</p>\n<ul>\n<li><p>Save encryption Public Key</p>\n</li>\n<li><p>Use BBE JS Lib to encrypt the encryptedCard and encryptedCvv fields</p>\n</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-html\">&lt;script src=\"https://api.tokenex.com/inpage/js/TokenEx-Lite.js\"&gt;&lt;/script&gt;\n\n</code></pre>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">{\n  //grab the public key from the hidden field\n  var key = document.getElementById('TxEncryptionKey').value;\n  //grab the PAN\n  var creditCard = document.getElementById(\"txtCreditCard\").value;\n  //encrypt the data \n  var cipherText = TxEncrypt(key, creditCard);\n  //add the cipherText value to your form\n  document.getElementById('ciphertext').value = cipherText;\n  //remove the PAN data from your form\n  document.getElementById(\"txtCreditCard\").value = \"\";\n  //post your form to your server.\n}\n\n</code></pre>\n<p>Post these values to the / tokenize endpoint</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>https://devapi.flopay.co/gateway/tokeneize\nhttps://api.flopay.co/gateway/tokeneize\n\n</code></pre><p>Example:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"encryptedCard\":\"juhkq9WH1Q5d80MphrQWAhZd8cR/JsYx6XaEBeSb9rkMh2Sm7m/HAcbRMfoqyW8KAILDmaC11EgaGzf74Mwe0nIzKEAf3aV1ibrdG2ILbtc41Kr4RhTyuGlJHy8EJ7wgGnoq3kZjOIaFEgkPEpEo5s7HqD/LuuEMtprpcHHmeyMzw+oJiil7SJEqWx2yZPdQnMmGN9dLx0U+PFFmsY5d0x82ohOQeMF/u0rIlR3tOue/TKZmGFqllpuR+aVzlooCSKAV/b6fVpP5bd0t5lELiBH4LrR9rHa4DlGPkbsP3YyEUNaktCu9wh8/MRVPqLpHMR4jd0y+VDuzJ5ocQC0kTg==\",\n    \"encryptedCvv\":\"nu+TWv3pI9AXgrbwlxmeo++J0QPS4AKgw0XDS1xY2McSUm0LhCoi6cXDGDWaePbU6F5Wwai1vtjMuby1tkMNnk8r8Te5dGx5Npsb4rf1wq53g11lBgaGEgVnXCdV/ka46Ihc+OeDgWncd8+kimKTnNeBLOLFMFfEw8MOYXpmf4xyo2u2FXT5U/OcMm8/PZjcVZMyv8thYQxq07frQrpSxYWH7Mr/mK3j2LteQoiOwQsP+ZDL+Mk0AajwGLm2e0f1YamABNaNW6htFfPvNtvnYTuUJmXKMC85fW1z+G/TdMKpX58VqQ4Xi/RCPyRD7y94zgpdIB9YQD69tiY1M5O2TQ==\",\n    \"businessId\":\"1z2HUO9nT2\"\n}\n\n</code></pre>\n<ul>\n<li><p>Make a <code>PUT</code> call to the sale endpoint, including the token value</p>\n</li>\n<li><p>Make <code>POST</code> to prepare endpoint</p>\n</li>\n<li><p>Make <code>PUT</code> endpoint</p>\n<ul>\n<li><p>Include token data in the body</p>\n</li>\n<li><p>Include the ID from the prepare endpoint in the URL</p>\n</li>\n</ul>\n</li>\n</ul>\n<p>Test Cards:</p>\n<ul>\n<li><p>4111111111111111</p>\n</li>\n<li><p>5105105105105100</p>\n</li>\n</ul>\n<p>3DS Test Cards:</p>\n<ul>\n<li><p>2303779951000396 (Frictionless)</p>\n</li>\n<li><p>2303779951000446 (Challenge)</p>\n</li>\n<li><p>2303779951000453 (Challenge Fail)</p>\n</li>\n</ul>\n<p>Payment Routing:</p>\n<ul>\n<li><p>Route payments by selecting a percentage for each provider in the dashboard My Account | Payment tab. You can automatically route between multiple providers by percentage or select an individual provider.</p>\n</li>\n<li><p>Route payments dynamically by passing the <strong>providerId</strong> to the options object \"pay\" call. This will direct the transaction to that provider.<br />  <code>\"options\": { \"authOnly\": true, \"providerId\":\"7sP3NqIDML\" }</code></p>\n<ul>\n<li>Find the providerId in the dashboard settings. Go to My Account | Payments | Managme Payment Providers. The providerId is listed next to each provider as a short GUID</li>\n</ul>\n</li>\n</ul>\n<p>hookRef:</p>\n<p>hookRef is an important field that should be created when creating payments. This is how you Identify payments when passing the payment information between FloPay and other systems. This is also used when registering webhooks. This will show up as the External Order ID in the dashboard.</p>\n","_postman_id":"bad6a6fd-f98b-4ae6-9654-3718190d5618"},{"name":"Webhooks","item":[{"name":"Create Webhook","event":[{"listen":"test","script":{"id":"be7999c2-4078-4307-815c-1c4d3ac21df8","exec":["pm.test('Status code is 200', function () {\r","    pm.response.to.have.status(200);\r","})\r","\r","var jsonData = pm.response.json();\r","pm.environment.set(\"webhookId\", jsonData.id);"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"c5574f21-7fac-44be-97c6-3b0ad957d209","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"replaceWithFloPayUser"},{"key":"password","value":"replaceWithFloPayPassword"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"url\":\"https://www.mywebsite.com\",\r\n    \"type\":\"Payment Completed\",\r\n    \"active\":true,\r\n    \"businessId\":\"{{businessId}}\",\r\n    \"secret\":\"yourSignatureSecret\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{webHookBase}}/webhook","urlObject":{"path":["webhook"],"host":["{{webHookBase}}"],"query":[],"variable":[]}},"response":[{"id":"4e072e76-9e1b-4b07-aa91-6525ce698f9d","name":"Required params only","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"url\":\"https://www.mywebsite.com\",\r\n    \"type\":\"Payment Completed\",\r\n    \"active\":true,\r\n    \"businessId\":\"{{businessId}}\",\r\n    \"secret\":\"yourSignatureSecret\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{webHookBase}}/webhook"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"7e5742ba-e0b8-4132-baca-94c8dd6277dc","name":"Full params","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"url\":\"https://www.mywebsite.com\",\r\n    \"type\":\"Payment Completed\",\r\n    \"active\":true,\r\n    \"businessId\":\"{{businessId}}\",\r\n    \"secret\":\"yourSignatureSecret\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{webHookBase}}/webhook"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"71ec8372-9c8e-4458-ad9b-1936a701cba4","name":"Error","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"url\":\"https://www.mywebsite.com\",\r\n    \"type\":\"Payment Completed\",\r\n    \"active\":true\r\n}","options":{"raw":{"language":"json"}}},"url":"{{webHookBase}}/webhook"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 16 Dec 2023 22:44:56 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"62"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"2628e42f-4e36-406b-bc24-6ff30c1f9f25"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"x-amz-apigw-id","value":"QDs_3HckIAMENAA="},{"key":"X-Amzn-Trace-Id","value":"Root=1-657e2865-175351957c82374d4626c06b;Sampled=0;lineage=2a121c2a:0|66acad1a:0"},{"key":"Access-Control-Allow-Credentials","value":"true"}],"cookie":[],"responseTime":null,"body":"{\n    \"statusCode\": 401,\n    \"errorCode\": \"4111\",\n    \"message\": \"UNAUTHORIZED\"\n}"}],"_postman_id":"c5574f21-7fac-44be-97c6-3b0ad957d209"},{"name":"Update Webhook","id":"35b78901-65b0-4ab8-8dcb-df021f43e5da","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"replaceWithFloPayUser"},{"key":"password","value":"replaceWithFloPayPassword"}]},"isInherited":false},"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"url\":\"https://www.mywebsite.com\",\r\n    \"type\":\"Payment Completed\",\r\n    \"active\":true,\r\n    \"businessId\": \"{{businessId}}\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{webHookBase}}/webhook/{{webhookId}}","urlObject":{"path":["webhook","{{webhookId}}"],"host":["{{webHookBase}}"],"query":[],"variable":[]}},"response":[{"id":"741649bc-ed7e-4777-ab8c-1ef8cbd78f46","name":"Update Webhook","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"url\":\"https://www.mywebsite.com\",\r\n    \"type\":\"Payment Completed\",\r\n    \"active\":true,\r\n    \"businessId\": \"{{businessId}}\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{webHookBase}}/webhook/{{webhookId}}"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"35b78901-65b0-4ab8-8dcb-df021f43e5da"},{"name":"Delete Webhook","event":[{"listen":"test","script":{"id":"012a97e6-9787-4271-9d49-b67a3322fa75","exec":["pm.test('Status code is 200', function () {\r","    pm.response.to.have.status(200);\r","})\r",""],"type":"text/javascript","packages":{},"requests":{}}}],"id":"b8443f7e-9875-4821-8bb0-9c0927123295","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"replaceWithFloPayUser"},{"key":"password","value":"replaceWithFloPayPassword"}]},"isInherited":false},"method":"DELETE","header":[],"url":"{{webHookBase}}/webhook/162","urlObject":{"path":["webhook","162"],"host":["{{webHookBase}}"],"query":[],"variable":[]}},"response":[{"id":"1252dbb6-3b8b-4237-90fa-d4eff8b01fac","name":"Delete webhook","originalRequest":{"method":"DELETE","header":[],"url":"{{webHookBase}}/webhook/{{webhookId}}"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"b8443f7e-9875-4821-8bb0-9c0927123295"},{"name":"Get Webhooks","event":[{"listen":"test","script":{"id":"633f9326-6fa8-4489-bf49-3eec800c4a42","exec":["pm.test('Status code is 200', function () {\r","    pm.response.to.have.status(200);\r","})\r",""],"type":"text/javascript","packages":{},"requests":{}}}],"id":"fcc2594c-fa56-4287-92e3-0e78e9762bdf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"replaceWithFloPayUser"},{"key":"password","value":"replaceWithFloPayPassword"}]},"isInherited":false},"method":"GET","header":[],"url":"{{webHookBase}}/webhook?limit=10&offset=0&sort=-updatedAt&startDate=2023-11-16T07%3A00%3A00.000Z&endDate=2023-11-17T06%3A59%3A59.999Z","urlObject":{"path":["webhook"],"host":["{{webHookBase}}"],"query":[{"key":"limit","value":"10"},{"key":"offset","value":"0"},{"key":"sort","value":"-updatedAt"},{"key":"startDate","value":"2023-11-16T07%3A00%3A00.000Z"},{"key":"endDate","value":"2023-11-17T06%3A59%3A59.999Z"}],"variable":[]}},"response":[{"id":"104185a8-b8fc-4c1d-960c-8a283531575e","name":"Get Webhooks","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{webHookBase}}/webhook?limit=10&offset=0&sort=-updatedAt&startDate=2023-11-16T07%3A00%3A00.000Z&endDate=2023-11-17T06%3A59%3A59.999Z","host":["{{webHookBase}}"],"path":["webhook"],"query":[{"key":"limit","value":"10"},{"key":"offset","value":"0"},{"key":"sort","value":"-updatedAt"},{"key":"startDate","value":"2023-11-16T07%3A00%3A00.000Z"},{"key":"endDate","value":"2023-11-17T06%3A59%3A59.999Z"}]}},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"fcc2594c-fa56-4287-92e3-0e78e9762bdf"},{"name":"Get Webhook Logs","event":[{"listen":"test","script":{"id":"c18ab613-1312-45bc-aaa1-4acf0c692cdc","exec":["pm.test('Status code is 200', function () {\r","    pm.response.to.have.status(200);\r","})\r",""],"type":"text/javascript","packages":{},"requests":{}}}],"id":"082ebd35-c4e6-46c3-bc31-6a386fdbfc0d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"replaceWithFloPayUser"},{"key":"password","value":"replaceWithFloPayPassword"}]},"isInherited":false},"method":"GET","header":[],"url":"{{webHookBase}}/webhookLog?limit=10&offset=0&sort=-updatedAt&startDate=2023-11-16T07%3A00%3A00.000Z&endDate=2025-11-17T06%3A59%3A59.999Z","urlObject":{"path":["webhookLog"],"host":["{{webHookBase}}"],"query":[{"key":"limit","value":"10"},{"key":"offset","value":"0"},{"key":"sort","value":"-updatedAt"},{"key":"startDate","value":"2023-11-16T07%3A00%3A00.000Z"},{"key":"endDate","value":"2025-11-17T06%3A59%3A59.999Z"}],"variable":[]}},"response":[{"id":"24ec8ae7-425e-4042-a0c2-c946113b9056","name":"Get Webhook Logs","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{webHookBase}}/webhookLog?limit=10&offset=0&sort=-updatedAt&startDate=2023-11-16T07%3A00%3A00.000Z&endDate=2025-11-17T06%3A59%3A59.999Z","host":["{{webHookBase}}"],"path":["webhookLog"],"query":[{"key":"limit","value":"10"},{"key":"offset","value":"0"},{"key":"sort","value":"-updatedAt"},{"key":"startDate","value":"2023-11-16T07%3A00%3A00.000Z"},{"key":"endDate","value":"2025-11-17T06%3A59%3A59.999Z"}]}},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"082ebd35-c4e6-46c3-bc31-6a386fdbfc0d"}],"id":"123ee681-ca1c-40ab-bac9-537ee771bdfd","description":"<p>Register webhooks in order to receive updates about events that happen in FloPay. Currently there are 3 events that will post updates to webhooks.</p>\n<p><strong>Note:</strong> Card data will not be sent to webhooks. To configure a second gateway or to receive card data see Card Notice URL.</p>\n<ul>\n<li><p>Payment Completed</p>\n</li>\n<li><p>Payment Failed</p>\n</li>\n<li><p>Payment Created</p>\n</li>\n<li><p>Payment Canceled</p>\n</li>\n<li><p>Payment Deleted</p>\n</li>\n<li><p>Payment Updated</p>\n</li>\n<li><p>Order Created</p>\n</li>\n<li><p>Order Updated</p>\n</li>\n<li><p>Order Deleted</p>\n</li>\n<li><p>Order Completed</p>\n</li>\n</ul>\n<p>To register a webhook make a <code>POST</code> request with the URL you would like notified of each event. Your webhook will be called with a <code>POST</code> containing the following body:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"businessId\": \"YOURBID\",\n  \"updatedEndpoint\": \"https://devapi.flopay.co/erp/payment/115\",\n  \"type\": \"Payment Created\",\n  \"user\": {\n    \"username\": \"youruser@email.com\",\n    \"id\": 83\n  },\n  \"hookRef\": null,\n}\n\n</code></pre>\n<p>To get the detail that from the updated item, make a call to the <code>updatedEndpoint</code> provided in the webhook payload. In order to reconcile webhooks to items accociated with your business ID you may create the original item with a <code>hookRef</code> value.</p>\n<p><strong>Webhook log</strong></p>\n<p>You may review the status of attempts to call webhooks by checking the <a href=\"https://documenter.getpostman.com/view/31217055/2s9YXpUdoJ#082ebd35-c4e6-46c3-bc31-6a386fdbfc0d\">Get Webhook Log</a> endpoint. Webhooks will be attempted 3 times. Webhooks are to be used with asyncronous workflows and can take minutes to process through a queue.</p>\n<p><strong>Security</strong></p>\n<p>No secure information will be sent via webhook. Instead, you will receive a notification that allows you to send a secure HTTPS call to get any updated information. You can set a secret when you register your webhook as shown below.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"url\":\"https://www.mywebsite.com\",\n    \"type\":\"Payment Completed\",\n    \"active\":true,\n    \"businessId\":\"1\",\n    \"secret\":\"secret\"\n}\n\n</code></pre>\n<p>A header will be set on each webhook. The <code>X-FloPay-Secret</code> header will be a hash (HMAC SHA256) of the body content of the webhook created using your secret. Your secret will NOT be sent on webhook notifications.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">\"X-FloPay-Secret\":\"59f49671139ffbbfcef1bc927cd2f5f4a8e23a6529bb5113abaf155f85860a44\"\n\n</code></pre>\n<p>You may use this as a secret to validate the wehbook by recreating the hash on your side.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">import hmacSHA256 from 'crypto-js/hmac-sha256.js';\nconst check = hmacSHA256(JSON.stringify(webhookBody), yourSecret).toString(CryptoJS.enc.Hex);\nif(check === xFloPayHeader){\n// all good\n}\n\n</code></pre>\n<p><strong>Card Notice URL (Webhook)</strong></p>\n<p>The FloPay API can be configured to send card data to a second system or back office. This allows for posting the payment to a second system or gateway. If configured, the receiving endpoint will be sent the raw card data for additional processing.</p>\n<p><strong>Configure Card Notice URL</strong></p>\n<p>In the Dashboard open the \"My Account\" tab. Click the Integration Tab. In the FloPay Gateway section, click to Add Configuration, or Update Configuration. Add a URL to Card Notice URl field and save.</p>\n<p><strong>Note</strong>: Your URL must be HTTPS and whitelisted with FloPay support. To add your endpoint and IP address, contact <a href=\"https://contact@flopay.co\">Flopay suport</a>.</p>\n","_postman_id":"123ee681-ca1c-40ab-bac9-537ee771bdfd"},{"name":"Orders","item":[{"name":"Vendors","item":[{"name":"Create Vendor","event":[{"listen":"test","script":{"id":"9007c3ce-1a14-48b4-9f3d-3ea821bd5501","exec":["pm.test('Status code is 200', function () {\r","    pm.response.to.have.status(200);\r","})\r","\r","var jsonData = pm.response.json();\r","pm.collectionVariables.set(\"vendorID\", jsonData.id);"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"f0449ce5-72b2-4e8e-ac35-0dbbef8e0a5b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"replaceWithFloPayUser"},{"key":"password","value":"replaceWithFloPayPassword"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"contacts\": [\r\n        {\r\n            \"type\": \"mobile\",\r\n            \"number\": \"+12312312121\"\r\n        },\r\n        {\r\n            \"type\": \"email\",\r\n            \"address\": \"test@email.com\"\r\n        },\r\n        {\r\n            \"street\": \"the streat\",\r\n            \"city\": \"mycity\",\r\n            \"state\": \"CT\",\r\n            \"postalCode\": \"84153\",\r\n            \"countryCode\": \"US\",\r\n            \"type\": \"shipToAddress\"\r\n        },\r\n        {\r\n            \"street\": \"\",\r\n            \"city\": \"the streat\",\r\n            \"state\": \"CT\",\r\n            \"postalCode\": \"84153\",\r\n            \"countryCode\": \"US\",\r\n            \"type\": \"billToAddress\"\r\n        }\r\n    ],\r\n    \"name\": \"New vendor\",\r\n    \"businessId\": \"{{businessId}}\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base}}/vendor","urlObject":{"path":["vendor"],"host":["{{base}}"],"query":[],"variable":[]}},"response":[{"id":"a361550f-3bf8-4af5-8c22-685bd908bff9","name":"Required params only","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"businessId\": \"{{businessId}}\",\r\n    \"name\": \"Joes Barn\",\r\n    \"contacts\": [\r\n        {\r\n            \"type\": \"phone\",\r\n            \"number\": \"+18012341234\"\r\n        },\r\n        {\r\n            \"type\": \"mobile\",\r\n            \"number\": \"+18012341234\"\r\n        },\r\n        {\r\n            \"type\": \"email\",\r\n            \"address\": \"joesbarn@mail.com\"\r\n        },\r\n        {\r\n            \"street\": \"Barn Street 111\",\r\n            \"city\": \"Sin City\",\r\n            \"state\": \"NV\",\r\n            \"postalCode\": \"89004\",\r\n            \"countryCode\": \"US\",\r\n            \"type\": \"billToAddress\"\r\n        },\r\n        {\r\n            \"street\": \"Barn Street 111\",\r\n            \"city\": \"Sin City\",\r\n            \"state\": \"NV\",\r\n            \"postalCode\": \"89004\",\r\n            \"countryCode\": \"US\",\r\n            \"type\": \"shipToAddress\"\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base}}/vendor"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 04 Dec 2023 17:00:35 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"586"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"d6c2ff08-dfc6-4e63-a72a-65028ecf58bb"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"x-amz-apigw-id","value":"PbXT6EiTIAMEd1A="},{"key":"X-Amzn-Trace-Id","value":"Root=1-656e05b2-7ec9defd3eea78c70e37321a;Sampled=0;lineage=90690d56:0"},{"key":"Access-Control-Allow-Credentials","value":"true"}],"cookie":[],"responseTime":null,"body":"{\n    \"notes\": [],\n    \"tags\": [],\n    \"id\": 40,\n    \"name\": \"Joes Barn\",\n    \"contacts\": [\n        {\n            \"type\": \"phone\",\n            \"number\": \"+18012341234\"\n        },\n        {\n            \"type\": \"mobile\",\n            \"number\": \"+18012341234\"\n        },\n        {\n            \"type\": \"email\",\n            \"address\": \"joesbarn@mail.com\"\n        },\n        {\n            \"city\": \"Sin City\",\n            \"type\": \"billToAddress\",\n            \"state\": \"NV\",\n            \"street\": \"Barn Street 111\",\n            \"postalCode\": \"89004\",\n            \"countryCode\": \"US\"\n        },\n        {\n            \"city\": \"Sin City\",\n            \"type\": \"shipToAddress\",\n            \"state\": \"NV\",\n            \"street\": \"Barn Street 111\",\n            \"postalCode\": \"89004\",\n            \"countryCode\": \"US\"\n        }\n    ],\n    \"businessId\": \"4tsYEMs7z3\",\n    \"active\": true,\n    \"updatedAt\": \"2023-12-04T17:00:35.669Z\",\n    \"createdAt\": \"2023-12-04T17:00:35.669Z\",\n    \"ref\": null,\n    \"companyName\": null\n}"},{"id":"434a899d-2305-4015-8dae-a4d9a1c5346b","name":"Full params","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"businessId\":\"{{businessId}}\",\r\n    \"name\": \"Joes Barn\",\r\n    \"contacts\": [\r\n        {\r\n            \"type\": \"phone\",\r\n            \"number\": \"+18012341234\"\r\n        },\r\n        {\r\n            \"type\": \"mobile\",\r\n            \"number\": \"+18012341234\"\r\n        },\r\n        {\r\n            \"type\": \"email\",\r\n            \"address\": \"joesbarn@mail.com\"\r\n        },\r\n        {\r\n            \"street\": \"Barn Street 111\",\r\n            \"city\": \"Sin City\",\r\n            \"state\": \"NV\",\r\n            \"postalCode\": \"89004\",\r\n            \"countryCode\": \"US\",\r\n            \"type\": \"billToAddress\"\r\n        },\r\n        {\r\n            \"street\": \"Barn Street 111\",\r\n            \"city\": \"Sin City\",\r\n            \"state\": \"NV\",\r\n            \"postalCode\": \"89004\",\r\n            \"countryCode\": \"US\",\r\n            \"type\": \"shipToAddress\"\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base}}/vendor"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"f0449ce5-72b2-4e8e-ac35-0dbbef8e0a5b"},{"name":"Get Vendors","event":[{"listen":"test","script":{"id":"3e71d3c8-141a-4a95-bd97-dcbf997f2743","exec":["pm.test('Status code is 200', function () {\r","    pm.response.to.have.status(200);\r","})"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"eaaf1003-979a-43cf-ba7e-e9f18f26d45b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"replaceWithFloPayUser"},{"key":"password","value":"replaceWithFloPayPassword"}]},"isInherited":false},"method":"GET","header":[],"url":"{{base}}/vendor?limit=10&offset=0","description":"<p>Returns list of all Vendors in attached to your business ID.</p>\n","urlObject":{"path":["vendor"],"host":["{{base}}"],"query":[{"key":"limit","value":"10"},{"key":"offset","value":"0"}],"variable":[]}},"response":[{"id":"01e7affd-b61a-4d6d-b016-0a03bc26cb49","name":"Get Vendors","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{base}}/vendor?limit=10&offset=0&sort=-updatedAt&startDate=1999-11-16T07%3A00%3A00.000Z&endDate=2050-11-17T06%3A59%3A59.999Z","host":["{{base}}"],"path":["vendor"],"query":[{"key":"limit","value":"10"},{"key":"offset","value":"0"},{"key":"sort","value":"-updatedAt"},{"key":"startDate","value":"1999-11-16T07%3A00%3A00.000Z"},{"key":"endDate","value":"2050-11-17T06%3A59%3A59.999Z"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 04 Dec 2023 16:58:46 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"3947"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"75510cf3-46ea-460e-aa3b-013c32e40ea0"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"x-amz-apigw-id","value":"PbXCuFH1IAMERXg="},{"key":"X-Amzn-Trace-Id","value":"Root=1-656e0544-5a92898f7ece39b64ea7a55f;Sampled=0;lineage=2a121c2a:0|d659f471:0"},{"key":"Access-Control-Allow-Credentials","value":"true"}],"cookie":[],"responseTime":null,"body":"{\n    \"offset\": 0,\n    \"limit\": 10,\n    \"rows\": [\n        {\n            \"id\": 38,\n            \"name\": \"Joes Barn\",\n            \"ref\": null,\n            \"companyName\": null,\n            \"active\": true,\n            \"businessId\": \"4tsYEMs7z3\",\n            \"contacts\": [\n                {\n                    \"type\": \"phone\",\n                    \"number\": \"+18012341234\"\n                },\n                {\n                    \"type\": \"mobile\",\n                    \"number\": \"+18012341234\"\n                },\n                {\n                    \"type\": \"email\",\n                    \"address\": \"joesbarn@mail.com\"\n                },\n                {\n                    \"city\": \"Sin City\",\n                    \"type\": \"billToAddress\",\n                    \"state\": \"NV\",\n                    \"street\": \"Barn Street 111\",\n                    \"postalCode\": \"89004\",\n                    \"countryCode\": \"US\"\n                },\n                {\n                    \"city\": \"Sin City\",\n                    \"type\": \"shipToAddress\",\n                    \"state\": \"NV\",\n                    \"street\": \"Barn Street 111\",\n                    \"postalCode\": \"89004\",\n                    \"countryCode\": \"US\"\n                }\n            ],\n            \"notes\": [],\n            \"tags\": [],\n            \"createdAt\": \"2023-12-04T16:25:05.600Z\",\n            \"updatedAt\": \"2023-12-04T16:25:05.600Z\"\n        },\n        {\n            \"id\": 17,\n            \"name\": \"Squeeky Kleen\",\n            \"ref\": \"57\",\n            \"companyName\": null,\n            \"active\": true,\n            \"businessId\": \"4tsYEMs7z3\",\n            \"contacts\": [\n                {\n                    \"type\": \"mobile\",\n                    \"number\": \"+10110101101\"\n                },\n                {\n                    \"type\": \"email\",\n                    \"address\": \"squeekykleen@gmail.com\"\n                },\n                {\n                    \"city\": \"\",\n                    \"type\": \"billToAddress\",\n                    \"state\": \"\",\n                    \"street\": \"1010 The Way ST\",\n                    \"postalCode\": \"\",\n                    \"countryCode\": \"US\"\n                }\n            ],\n            \"notes\": [],\n            \"tags\": [],\n            \"createdAt\": \"2023-11-29T22:16:46.229Z\",\n            \"updatedAt\": \"2023-12-04T16:21:11.835Z\"\n        },\n        {\n            \"id\": 12,\n            \"name\": \"Bob's Burger Joint\",\n            \"ref\": \"56\",\n            \"companyName\": null,\n            \"active\": true,\n            \"businessId\": \"4tsYEMs7z3\",\n            \"contacts\": [],\n            \"notes\": [],\n            \"tags\": [],\n            \"createdAt\": \"2023-11-29T22:16:44.369Z\",\n            \"updatedAt\": \"2023-11-30T23:41:46.361Z\"\n        },\n        {\n            \"id\": 18,\n            \"name\": \"Tony Rondonuwu\",\n            \"ref\": \"52\",\n            \"companyName\": null,\n            \"active\": true,\n            \"businessId\": \"4tsYEMs7z3\",\n            \"contacts\": [\n                {\n                    \"type\": \"email\",\n                    \"address\": \"tonyrjr@intuit.com\"\n                }\n            ],\n            \"notes\": [],\n            \"tags\": [],\n            \"createdAt\": \"2023-11-29T22:16:46.231Z\",\n            \"updatedAt\": \"2023-11-30T23:41:44.275Z\"\n        },\n        {\n            \"id\": 22,\n            \"name\": \"United States Treasury\",\n            \"ref\": \"53\",\n            \"companyName\": null,\n            \"active\": true,\n            \"businessId\": \"4tsYEMs7z3\",\n            \"contacts\": [\n                {\n                    \"city\": \"Tucson\",\n                    \"type\": \"billToAddress\",\n                    \"state\": \"AZ\",\n                    \"street\": \"5568 Capital Drive\",\n                    \"postalCode\": \"85718\",\n                    \"countryCode\": \"US\"\n                },\n                {\n                    \"type\": \"phone\",\n                    \"number\": \"(888) 555-6454\"\n                },\n                {\n                    \"type\": \"email\",\n                    \"address\": \"taxesaregreat@intuit.com\"\n                }\n            ],\n            \"notes\": [],\n            \"tags\": [],\n            \"createdAt\": \"2023-11-29T22:16:46.512Z\",\n            \"updatedAt\": \"2023-11-30T23:41:44.262Z\"\n        },\n        {\n            \"id\": 37,\n            \"name\": \"Hall Properties\",\n            \"ref\": \"40\",\n            \"companyName\": \"Hall Properties\",\n            \"active\": true,\n            \"businessId\": \"4tsYEMs7z3\",\n            \"contacts\": [\n                {\n                    \"city\": \"South Orange\",\n                    \"type\": \"billToAddress\",\n                    \"state\": \"NJ\",\n                    \"street\": \"P.O.Box 357\",\n                    \"postalCode\": \"07079\",\n                    \"countryCode\": \"US\"\n                },\n                {\n                    \"type\": \"phone\",\n                    \"number\": \"(973) 555-3827\"\n                },\n                {\n                    \"type\": \"mobile\",\n                    \"number\": \"(973) 888-6222\"\n                }\n            ],\n            \"notes\": [],\n            \"tags\": [],\n            \"createdAt\": \"2023-11-30T23:19:46.471Z\",\n            \"updatedAt\": \"2023-11-30T23:19:46.471Z\"\n        },\n        {\n            \"id\": 32,\n            \"name\": \"PG&E0000\",\n            \"ref\": \"48\",\n            \"companyName\": \"PG&E\",\n            \"active\": true,\n            \"businessId\": \"4tsYEMs7z3\",\n            \"contacts\": [\n                {\n                    \"city\": \"Palo Alto\",\n                    \"type\": \"billToAddress\",\n                    \"state\": \"CA\",\n                    \"street\": \"4 Main St.\",\n                    \"postalCode\": \"94303\",\n                    \"countryCode\": \"US\"\n                },\n                {\n                    \"type\": \"phone\",\n                    \"number\": \"(888) 555-9465\"\n                },\n                {\n                    \"type\": \"email\",\n                    \"address\": \"utilities@noemail.com\"\n                }\n            ],\n            \"notes\": [],\n            \"tags\": [],\n            \"createdAt\": \"2023-11-29T22:16:46.759Z\",\n            \"updatedAt\": \"2023-11-30T23:19:46.301Z\"\n        },\n        {\n            \"id\": 36,\n            \"name\": \"EDD0000\",\n            \"ref\": \"37\",\n            \"companyName\": \"EDD\",\n            \"active\": true,\n            \"businessId\": \"4tsYEMs7z3\",\n            \"contacts\": [],\n            \"notes\": [],\n            \"tags\": [],\n            \"createdAt\": \"2023-11-30T23:19:46.046Z\",\n            \"updatedAt\": \"2023-11-30T23:19:46.046Z\"\n        },\n        {\n            \"id\": 26,\n            \"name\": \"Brosnahan Insurance Agency\",\n            \"ref\": \"31\",\n            \"companyName\": \"Brosnahan Insurance Agency\",\n            \"active\": true,\n            \"businessId\": \"4tsYEMs7z3\",\n            \"contacts\": [\n                {\n                    \"city\": \"Middlefield\",\n                    \"type\": \"billToAddress\",\n                    \"state\": \"CA\",\n                    \"street\": \"P.O. Box 5\",\n                    \"postalCode\": \"94482\",\n                    \"countryCode\": \"US\"\n                },\n                {\n                    \"type\": \"phone\",\n                    \"number\": \"(650) 555-9912\"\n                },\n                {\n                    \"type\": \"mobile\",\n                    \"number\": \"(650) 555-9874\"\n                },\n                {\n                    \"type\": \"fax\",\n                    \"number\": \"(555) 123-4567\"\n                }\n            ],\n            \"notes\": [],\n            \"tags\": [],\n            \"createdAt\": \"2023-11-29T22:16:46.529Z\",\n            \"updatedAt\": \"2023-11-30T05:28:44.429Z\"\n        },\n        {\n            \"id\": 23,\n            \"name\": \"Cal Telephone\",\n            \"ref\": \"32\",\n            \"companyName\": \"Cal Telephone\",\n            \"active\": true,\n            \"businessId\": \"4tsYEMs7z3\",\n            \"contacts\": [\n                {\n                    \"city\": \"Palo Alto\",\n                    \"type\": \"billToAddress\",\n                    \"state\": \"CA\",\n                    \"street\": \"10 Main St.\",\n                    \"postalCode\": \"94303\",\n                    \"countryCode\": \"US\"\n                },\n                {\n                    \"type\": \"phone\",\n                    \"number\": \"(650) 555-1616\"\n                }\n            ],\n            \"notes\": [],\n            \"tags\": [],\n            \"createdAt\": \"2023-11-29T22:16:46.507Z\",\n            \"updatedAt\": \"2023-11-30T05:28:44.365Z\"\n        }\n    ],\n    \"hasMore\": true\n}"}],"_postman_id":"eaaf1003-979a-43cf-ba7e-e9f18f26d45b"},{"name":"Get Vendor","id":"148b192b-81fc-4710-a013-9e6a8b4ba95a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"replaceWithFloPayUser"},{"key":"password","value":"replaceWithFloPayPassword"}]},"isInherited":false},"method":"GET","header":[],"url":"{{base}}/vendor/","description":"<p>Returns a single vendor based on the Vendor number, passed in the URL.</p>\n","urlObject":{"path":["vendor",""],"host":["{{base}}"],"query":[],"variable":[]}},"response":[{"id":"72ec701b-0956-4a0c-9710-61a154d1c234","name":"Get Vendor","originalRequest":{"method":"GET","header":[],"url":"{{base}}/vendor/17"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 04 Dec 2023 16:59:59 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"416"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"ed5098c7-30e3-493f-8d9b-3d733eba1446"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"x-amz-apigw-id","value":"PbXOOHsXoAMED1w="},{"key":"X-Amzn-Trace-Id","value":"Root=1-656e058d-65710b4b1882e78f3340c5ae;Sampled=0;lineage=dc39b1f8:0"},{"key":"Access-Control-Allow-Credentials","value":"true"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 17,\n    \"name\": \"Squeeky Kleen\",\n    \"ref\": \"57\",\n    \"companyName\": null,\n    \"active\": true,\n    \"businessId\": \"4tsYEMs7z3\",\n    \"contacts\": [\n        {\n            \"type\": \"mobile\",\n            \"number\": \"+10110101101\"\n        },\n        {\n            \"type\": \"email\",\n            \"address\": \"squeekykleen@gmail.com\"\n        },\n        {\n            \"city\": \"\",\n            \"type\": \"billToAddress\",\n            \"state\": \"\",\n            \"street\": \"1010 The Way ST\",\n            \"postalCode\": \"\",\n            \"countryCode\": \"US\"\n        }\n    ],\n    \"notes\": [],\n    \"tags\": [],\n    \"createdAt\": \"2023-11-29T22:16:46.229Z\",\n    \"updatedAt\": \"2023-12-04T16:21:11.835Z\"\n}"}],"_postman_id":"148b192b-81fc-4710-a013-9e6a8b4ba95a"},{"name":"Update Vendor","event":[{"listen":"test","script":{"id":"8357b450-d1f4-46cf-936f-68651ebec70d","exec":["pm.test('Status code is 200', function () {\r","    pm.response.to.have.status(200);\r","})"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"57c5829b-2af2-449d-aa3f-2dda2e005725","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"replaceWithFloPayUser"},{"key":"password","value":"replaceWithFloPayPassword"}]},"isInherited":false},"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n  \"id\": 12,\r\n  \"name\": \"Joes Barneses\",\r\n  \"ref\": null,\r\n  \"companyName\": null,\r\n  \"hookRef\": null,\r\n  \"active\": true,\r\n  \"businessId\": \"1z2HUO9nT2\",\r\n  \"contacts\": [\r\n    {\r\n      \"type\": \"phone\",\r\n      \"number\": \"+18012341234\"\r\n    },\r\n    {\r\n      \"type\": \"mobile\",\r\n      \"number\": \"+18012341234\"\r\n    },\r\n    {\r\n      \"type\": \"email\",\r\n      \"address\": \"joesbarn@mail.com\"\r\n    },\r\n    {\r\n      \"city\": \"Sin City\",\r\n      \"type\": \"billToAddress\",\r\n      \"state\": \"NV\",\r\n      \"street\": \"Barn Street 111\",\r\n      \"postalCode\": \"89004\",\r\n      \"countryCode\": \"US\"\r\n    },\r\n    {\r\n      \"city\": \"Sin City\",\r\n      \"type\": \"shipToAddress\",\r\n      \"state\": \"NV\",\r\n      \"street\": \"Barn Street 111\",\r\n      \"postalCode\": \"89004\",\r\n      \"countryCode\": \"US\"\r\n    }\r\n  ],\r\n  \"notes\": [],\r\n  \"tags\": [],\r\n  \"createdAt\": \"2025-11-25T21:05:42.531Z\",\r\n  \"updatedAt\": \"2025-11-25T21:05:42.531Z\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base}}/vendor/","urlObject":{"path":["vendor",""],"host":["{{base}}"],"query":[],"variable":[]}},"response":[{"id":"48829ce2-2df6-4577-b38d-ebfa967d1a3b","name":"Update Vendor","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n  \"id\": 12,\r\n  \"name\": \"Joes Barneses\",\r\n  \"ref\": null,\r\n  \"companyName\": null,\r\n  \"hookRef\": null,\r\n  \"active\": true,\r\n  \"businessId\": \"1z2HUO9nT2\",\r\n  \"contacts\": [\r\n    {\r\n      \"type\": \"phone\",\r\n      \"number\": \"+18012341234\"\r\n    },\r\n    {\r\n      \"type\": \"mobile\",\r\n      \"number\": \"+18012341234\"\r\n    },\r\n    {\r\n      \"type\": \"email\",\r\n      \"address\": \"joesbarn@mail.com\"\r\n    },\r\n    {\r\n      \"city\": \"Sin City\",\r\n      \"type\": \"billToAddress\",\r\n      \"state\": \"NV\",\r\n      \"street\": \"Barn Street 111\",\r\n      \"postalCode\": \"89004\",\r\n      \"countryCode\": \"US\"\r\n    },\r\n    {\r\n      \"city\": \"Sin City\",\r\n      \"type\": \"shipToAddress\",\r\n      \"state\": \"NV\",\r\n      \"street\": \"Barn Street 111\",\r\n      \"postalCode\": \"89004\",\r\n      \"countryCode\": \"US\"\r\n    }\r\n  ],\r\n  \"notes\": [],\r\n  \"tags\": [],\r\n  \"createdAt\": \"2025-11-25T21:05:42.531Z\",\r\n  \"updatedAt\": \"2025-11-25T21:05:42.531Z\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base}}/vendor/012"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Date","value":"Mon, 09 Mar 2026 19:40:58 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"605"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"1361c8e4-9cd6-4475-aea8-7ef6b919d617"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Security-Policy","value":"default-src 'none'; frame-ancestors 'none'"},{"key":"x-amz-apigw-id","value":"Z-JLrHx2oAMEAYQ="},{"key":"Cache-Control","value":"no-store"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-69af224a-59dd2c470f0751e47810d115;Parent=2e806e927505d47f;Sampled=0;Lineage=1:b4533de5:0"},{"key":"Permissions-Policy","value":"camera=(), microphone=(), geolocation=()"},{"key":"Access-Control-Allow-Credentials","value":"true"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 12,\n    \"name\": \"Joes Barneses\",\n    \"ref\": null,\n    \"companyName\": null,\n    \"hookRef\": null,\n    \"active\": true,\n    \"businessId\": \"1z2HUO9nT2\",\n    \"contacts\": [\n        {\n            \"type\": \"phone\",\n            \"number\": \"+18012341234\"\n        },\n        {\n            \"type\": \"mobile\",\n            \"number\": \"+18012341234\"\n        },\n        {\n            \"type\": \"email\",\n            \"address\": \"joesbarn@mail.com\"\n        },\n        {\n            \"city\": \"Sin City\",\n            \"type\": \"billToAddress\",\n            \"state\": \"NV\",\n            \"street\": \"Barn Street 111\",\n            \"postalCode\": \"89004\",\n            \"countryCode\": \"US\"\n        },\n        {\n            \"city\": \"Sin City\",\n            \"type\": \"shipToAddress\",\n            \"state\": \"NV\",\n            \"street\": \"Barn Street 111\",\n            \"postalCode\": \"89004\",\n            \"countryCode\": \"US\"\n        }\n    ],\n    \"notes\": [],\n    \"tags\": [],\n    \"createdAt\": \"2025-11-25T21:05:42.531Z\",\n    \"updatedAt\": \"2026-03-09T19:39:35.864Z\"\n}"}],"_postman_id":"57c5829b-2af2-449d-aa3f-2dda2e005725"},{"name":"Delete Vendor","id":"41cde5ef-f696-48b5-a379-22ebc85944f0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"replaceWithFloPayUser"},{"key":"password","value":"replaceWithFloPayPassword"}]},"isInherited":false},"method":"DELETE","header":[],"url":"{{base}}/vendor/","urlObject":{"path":["vendor",""],"host":["{{base}}"],"query":[],"variable":[]}},"response":[{"id":"bd5e6d1e-2018-49c8-9da2-47c65ddb0327","name":"Delete Vendor","originalRequest":{"method":"DELETE","header":[],"url":"{{base}}/vendor/38"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 04 Dec 2023 17:09:28 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"1"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"b902164c-25ef-4fd1-8620-bd9c72e80c42"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"x-amz-apigw-id","value":"PbYnLEabIAMEeOw="},{"key":"X-Amzn-Trace-Id","value":"Root=1-656e07c7-6de402371f528b4d74c405cf;Sampled=0;lineage=afefbfb6:0"},{"key":"Access-Control-Allow-Credentials","value":"true"}],"cookie":[],"responseTime":null,"body":"1"}],"_postman_id":"41cde5ef-f696-48b5-a379-22ebc85944f0"}],"id":"c504c119-1feb-421c-974c-853f1e0024cc","_postman_id":"c504c119-1feb-421c-974c-853f1e0024cc","description":""},{"name":"Receive","item":[{"name":"Create Receivable","event":[{"listen":"test","script":{"id":"b284e391-6d41-4d13-9ce2-d81076e44371","exec":["const jsonData = pm.response.json();\r","pm.environment.set(\"receivableId\", jsonData.id);\r","pm.test('Status code is 200', function () {\r","    pm.response.to.have.status(200);\r","})"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"a53464b2-3622-401a-bb30-f383e26abb1a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"replaceWithFloPayUser"},{"key":"password","value":"replaceWithFloPayPassword"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"receivableItems\": [\r\n        {\r\n            \"price\": \"25\",\r\n            \"extendedPrice\": 100,\r\n            \"description\": \"Office Supplies\",\r\n            \"number\": \"OFSPLY\",\r\n            \"uom\": {\r\n                \"name\": \"EA\",\r\n                \"conversion\": 1\r\n            },\r\n            \"part\": {\r\n                \"id\": 70,\r\n                \"number\": \"OFSPLY\",\r\n                \"ref\": null,\r\n                \"hookRef\": null,\r\n                \"incomeAccountId\": null,\r\n                \"inventoryAccountId\": null,\r\n                \"expenseAccountId\": null,\r\n                \"description\": \"Office Supplies\",\r\n                \"stockLevel\": \"1000\",\r\n                \"cost\": \"15\",\r\n                \"price\": \"25\",\r\n                \"type\": \"Inventory\",\r\n                \"taxable\": true,\r\n                \"trackingType\": [],\r\n                \"active\": true,\r\n                \"businessId\": \"K5jrN7LSJ7\",\r\n                \"defaultLocationId\": 2,\r\n                \"notes\": [],\r\n                \"tags\": [],\r\n                \"uoms\": [\r\n                    {\r\n                        \"name\": \"EA\",\r\n                        \"conversion\": 1\r\n                    }\r\n                ],\r\n                \"createdAt\": \"2024-08-16T02:01:17.798Z\",\r\n                \"updatedAt\": \"2024-08-16T02:04:44.348Z\",\r\n                \"defaultLocation\": {\r\n                    \"id\": 2,\r\n                    \"name\": \"A1A1\",\r\n                    \"description\": \"Default location create on initial setup.\",\r\n                    \"address\": \"\",\r\n                    \"active\": true,\r\n                    \"site\": true,\r\n                    \"readonly\": true,\r\n                    \"path\": \"1\",\r\n                    \"businessId\": \"IepQ1qQNeC\",\r\n                    \"notes\": [],\r\n                    \"tags\": [],\r\n                    \"createdAt\": \"2024-03-29T19:27:31.271Z\",\r\n                    \"updatedAt\": \"2024-03-29T19:27:31.271Z\",\r\n                    \"parentId\": null,\r\n                    \"parent\": null\r\n                },\r\n                \"expenseAccount\": null,\r\n                \"incomeAccount\": null,\r\n                \"inventoryAccount\": null\r\n            },\r\n            \"partId\": 70,\r\n            \"quantity\": \"4\",\r\n            \"locationId\": 2,\r\n            \"location\": {\r\n                \"id\": 2,\r\n                \"name\": \"A1A1\",\r\n                \"description\": \"Default location create on initial setup.\",\r\n                \"address\": \"\",\r\n                \"active\": true,\r\n                \"site\": true,\r\n                \"readonly\": true,\r\n                \"path\": \"1\",\r\n                \"businessId\": \"IepQ1qQNeC\",\r\n                \"notes\": [],\r\n                \"tags\": [],\r\n                \"createdAt\": \"2024-03-29T19:27:31.271Z\",\r\n                \"updatedAt\": \"2024-03-29T19:27:31.271Z\",\r\n                \"parentId\": null,\r\n                \"parent\": null\r\n            },\r\n            \"complete\": false\r\n        }\r\n    ],\r\n    \"businessId\": \"{{businessId}}\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base}}/receivable","urlObject":{"path":["receivable"],"host":["{{base}}"],"query":[],"variable":[]}},"response":[{"id":"db32f577-7e22-4f6e-a398-9e7ebe3e6806","name":"Required params only","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"receivableItems\": [\r\n        {\r\n            \"price\": \"25\",\r\n            \"extendedPrice\": 100,\r\n            \"description\": \"Office Supplies\",\r\n            \"number\": \"OFSPLY\",\r\n            \"uom\": {\r\n                \"name\": \"EA\",\r\n                \"conversion\": 1\r\n            },\r\n            \"part\": {\r\n                \"id\": 70,\r\n                \"number\": \"OFSPLY\",\r\n                \"ref\": null,\r\n                \"hookRef\": null,\r\n                \"incomeAccountId\": null,\r\n                \"inventoryAccountId\": null,\r\n                \"expenseAccountId\": null,\r\n                \"description\": \"Office Supplies\",\r\n                \"stockLevel\": \"1000\",\r\n                \"cost\": \"15\",\r\n                \"price\": \"25\",\r\n                \"type\": \"Inventory\",\r\n                \"taxable\": true,\r\n                \"trackingType\": [],\r\n                \"active\": true,\r\n                \"businessId\": \"K5jrN7LSJ7\",\r\n                \"defaultLocationId\": 2,\r\n                \"notes\": [],\r\n                \"tags\": [],\r\n                \"uoms\": [\r\n                    {\r\n                        \"name\": \"EA\",\r\n                        \"conversion\": 1\r\n                    }\r\n                ],\r\n                \"createdAt\": \"2024-08-16T02:01:17.798Z\",\r\n                \"updatedAt\": \"2024-08-16T02:04:44.348Z\",\r\n                \"defaultLocation\": {\r\n                    \"id\": 2,\r\n                    \"name\": \"A1A1\",\r\n                    \"description\": \"Default location create on initial setup.\",\r\n                    \"address\": \"\",\r\n                    \"active\": true,\r\n                    \"site\": true,\r\n                    \"readonly\": true,\r\n                    \"path\": \"1\",\r\n                    \"businessId\": \"IepQ1qQNeC\",\r\n                    \"notes\": [],\r\n                    \"tags\": [],\r\n                    \"createdAt\": \"2024-03-29T19:27:31.271Z\",\r\n                    \"updatedAt\": \"2024-03-29T19:27:31.271Z\",\r\n                    \"parentId\": null,\r\n                    \"parent\": null\r\n                },\r\n                \"expenseAccount\": null,\r\n                \"incomeAccount\": null,\r\n                \"inventoryAccount\": null\r\n            },\r\n            \"partId\": 70,\r\n            \"quantity\": \"4\",\r\n            \"locationId\": 2,\r\n            \"location\": {\r\n                \"id\": 2,\r\n                \"name\": \"A1A1\",\r\n                \"description\": \"Default location create on initial setup.\",\r\n                \"address\": \"\",\r\n                \"active\": true,\r\n                \"site\": true,\r\n                \"readonly\": true,\r\n                \"path\": \"1\",\r\n                \"businessId\": \"IepQ1qQNeC\",\r\n                \"notes\": [],\r\n                \"tags\": [],\r\n                \"createdAt\": \"2024-03-29T19:27:31.271Z\",\r\n                \"updatedAt\": \"2024-03-29T19:27:31.271Z\",\r\n                \"parentId\": null,\r\n                \"parent\": null\r\n            },\r\n            \"complete\": false\r\n        }\r\n    ],\r\n    \"businessId\": \"{{businessId}}\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base}}/receivable"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 16 Jan 2024 22:26:22 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"444"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"d0690141-292d-473c-97ff-c4bd0fd1c0af"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"x-amz-apigw-id","value":"Rp1WQEVJoAMElXg="},{"key":"X-Amzn-Trace-Id","value":"Root=1-65a7028e-665a7afc6f4ae63d3afeec55;Sampled=0;lineage=2a121c2a:0|b57815ad:0"},{"key":"Access-Control-Allow-Credentials","value":"true"}],"cookie":[],"responseTime":null,"body":"{\n    \"notes\": [],\n    \"tags\": [],\n    \"id\": 3,\n    \"businessId\": \"K5jrN7LSJ7\",\n    \"status\": \"Open\",\n    \"updatedAt\": \"2024-08-16T20:29:40.069Z\",\n    \"createdAt\": \"2024-08-16T20:29:40.069Z\",\n    \"orderNumber\": null,\n    \"hookRef\": null,\n    \"receivableItems\": [\n        {\n            \"id\": 4,\n            \"uom\": {\n                \"name\": \"EA\",\n                \"conversion\": 1\n            },\n            \"partId\": 70,\n            \"quantity\": 4,\n            \"locationId\": 2,\n            \"businessId\": \"K5jrN7LSJ7\",\n            \"receivableId\": 3,\n            \"createdAt\": \"2024-08-16T20:29:40.080Z\",\n            \"updatedAt\": \"2024-08-16T20:29:40.080Z\",\n            \"trackingData\": null,\n            \"customerId\": null,\n            \"vendorId\": null\n        }\n    ]\n}"},{"id":"1c71ed37-10d3-40fd-9d0b-7c4516783752","name":"Full params Copy","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"receivableItems\": [\r\n        {\r\n            \"price\": \"25\",\r\n            \"extendedPrice\": 100,\r\n            \"description\": \"Office Supplies\",\r\n            \"number\": \"OFSPLY\",\r\n            \"uom\": {\r\n                \"name\": \"EA\",\r\n                \"conversion\": 1\r\n            },\r\n            \"part\": {\r\n                \"id\": 70,\r\n                \"number\": \"OFSPLY\",\r\n                \"ref\": null,\r\n                \"hookRef\": null,\r\n                \"incomeAccountId\": null,\r\n                \"inventoryAccountId\": null,\r\n                \"expenseAccountId\": null,\r\n                \"description\": \"Office Supplies\",\r\n                \"stockLevel\": \"1000\",\r\n                \"cost\": \"15\",\r\n                \"price\": \"25\",\r\n                \"type\": \"Inventory\",\r\n                \"taxable\": true,\r\n                \"trackingType\": [],\r\n                \"active\": true,\r\n                \"businessId\": \"K5jrN7LSJ7\",\r\n                \"defaultLocationId\": 2,\r\n                \"notes\": [],\r\n                \"tags\": [],\r\n                \"uoms\": [\r\n                    {\r\n                        \"name\": \"EA\",\r\n                        \"conversion\": 1\r\n                    }\r\n                ],\r\n                \"createdAt\": \"2024-08-16T02:01:17.798Z\",\r\n                \"updatedAt\": \"2024-08-16T02:04:44.348Z\",\r\n                \"defaultLocation\": {\r\n                    \"id\": 2,\r\n                    \"name\": \"A1A1\",\r\n                    \"description\": \"Default location create on initial setup.\",\r\n                    \"address\": \"\",\r\n                    \"active\": true,\r\n                    \"site\": true,\r\n                    \"readonly\": true,\r\n                    \"path\": \"1\",\r\n                    \"businessId\": \"IepQ1qQNeC\",\r\n                    \"notes\": [],\r\n                    \"tags\": [],\r\n                    \"createdAt\": \"2024-03-29T19:27:31.271Z\",\r\n                    \"updatedAt\": \"2024-03-29T19:27:31.271Z\",\r\n                    \"parentId\": null,\r\n                    \"parent\": null\r\n                },\r\n                \"expenseAccount\": null,\r\n                \"incomeAccount\": null,\r\n                \"inventoryAccount\": null\r\n            },\r\n            \"partId\": 70,\r\n            \"quantity\": \"4\",\r\n            \"locationId\": 2,\r\n            \"location\": {\r\n                \"id\": 2,\r\n                \"name\": \"A1A1\",\r\n                \"description\": \"Default location create on initial setup.\",\r\n                \"address\": \"\",\r\n                \"active\": true,\r\n                \"site\": true,\r\n                \"readonly\": true,\r\n                \"path\": \"1\",\r\n                \"businessId\": \"IepQ1qQNeC\",\r\n                \"notes\": [],\r\n                \"tags\": [],\r\n                \"createdAt\": \"2024-03-29T19:27:31.271Z\",\r\n                \"updatedAt\": \"2024-03-29T19:27:31.271Z\",\r\n                \"parentId\": null,\r\n                \"parent\": null\r\n            },\r\n            \"complete\": false\r\n        }\r\n    ],\r\n    \"businessId\": \"{{businessId}}\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base}}/receivable"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 16 Jan 2024 22:26:22 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"444"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"d0690141-292d-473c-97ff-c4bd0fd1c0af"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"x-amz-apigw-id","value":"Rp1WQEVJoAMElXg="},{"key":"X-Amzn-Trace-Id","value":"Root=1-65a7028e-665a7afc6f4ae63d3afeec55;Sampled=0;lineage=2a121c2a:0|b57815ad:0"},{"key":"Access-Control-Allow-Credentials","value":"true"}],"cookie":[],"responseTime":null,"body":"{\n    \"notes\": [],\n    \"tags\": [],\n    \"id\": 3,\n    \"businessId\": \"K5jrN7LSJ7\",\n    \"status\": \"Open\",\n    \"updatedAt\": \"2024-08-16T20:29:40.069Z\",\n    \"createdAt\": \"2024-08-16T20:29:40.069Z\",\n    \"orderNumber\": null,\n    \"hookRef\": null,\n    \"receivableItems\": [\n        {\n            \"id\": 4,\n            \"uom\": {\n                \"name\": \"EA\",\n                \"conversion\": 1\n            },\n            \"partId\": 70,\n            \"quantity\": 4,\n            \"locationId\": 2,\n            \"businessId\": \"K5jrN7LSJ7\",\n            \"receivableId\": 3,\n            \"createdAt\": \"2024-08-16T20:29:40.080Z\",\n            \"updatedAt\": \"2024-08-16T20:29:40.080Z\",\n            \"trackingData\": null,\n            \"customerId\": null,\n            \"vendorId\": null\n        }\n    ]\n}"}],"_postman_id":"a53464b2-3622-401a-bb30-f383e26abb1a"},{"name":"Get Receivables","event":[{"listen":"test","script":{"id":"932e9f48-29ab-4332-aba2-6dabc8877057","exec":["pm.test('Status code is 200', function () {\r","    pm.response.to.have.status(200);\r","})"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"67ac622c-56dc-49ee-9040-26fe9a62d7f9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"replaceWithFloPayUser"},{"key":"password","value":"replaceWithFloPayPassword"}]},"isInherited":false},"method":"GET","header":[],"url":"{{base}}/receivable?limit=10&offset=0","urlObject":{"path":["receivable"],"host":["{{base}}"],"query":[{"key":"limit","value":"10"},{"key":"offset","value":"0"}],"variable":[]}},"response":[{"id":"5fa572bb-9ed2-431c-a8b9-b686467422d7","name":"Get Receivables","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{base}}/receivable?limit=10&offset=0","host":["{{base}}"],"path":["receivable"],"query":[{"key":"limit","value":"10"},{"key":"offset","value":"0"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 16 Jan 2024 22:20:30 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"3597"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"f9ac1a30-5586-4110-aad7-02adafce2921"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"x-amz-apigw-id","value":"Rp0fSHxXoAMEXoQ="},{"key":"X-Amzn-Trace-Id","value":"Root=1-65a7012e-588de55308834a3266c37bf5;Sampled=0;lineage=2a121c2a:0|7998e211:0"},{"key":"Access-Control-Allow-Credentials","value":"true"}],"cookie":[],"responseTime":null,"body":"{\n    \"offset\": 0,\n    \"limit\": 10,\n    \"rows\": [\n        {\n            \"id\": 28,\n            \"businessId\": \"HRldk0Rjhj\",\n            \"status\": \"Received\",\n            \"orderNumber\": null,\n            \"hookRef\": null,\n            \"notes\": [],\n            \"tags\": [],\n            \"createdAt\": \"2023-12-28T05:06:10.787Z\",\n            \"updatedAt\": \"2023-12-28T05:06:15.429Z\",\n            \"receivableItems\": [\n                {\n                    \"id\": 46,\n                    \"quantity\": \"1\",\n                    \"uom\": \"EA\",\n                    \"trackingData\": null,\n                    \"businessId\": \"HRldk0Rjhj\",\n                    \"customerId\": null,\n                    \"locationId\": 43,\n                    \"partId\": 2649,\n                    \"vendorId\": null,\n                    \"receivableId\": 28,\n                    \"createdAt\": \"2023-12-28T05:06:10.814Z\",\n                    \"updatedAt\": \"2023-12-28T05:06:10.814Z\",\n                    \"location\": {\n                        \"id\": 43,\n                        \"name\": \"B1B2\",\n                        \"description\": null,\n                        \"address\": null,\n                        \"active\": true,\n                        \"site\": null,\n                        \"readonly\": null,\n                        \"path\": \".43.\",\n                        \"businessId\": \"HRldk0Rjhj\",\n                        \"notes\": [],\n                        \"tags\": [],\n                        \"createdAt\": \"2023-12-28T05:05:21.420Z\",\n                        \"updatedAt\": \"2023-12-28T05:05:21.505Z\",\n                        \"parentId\": null\n                    },\n                    \"part\": {\n                        \"id\": 2649,\n                        \"number\": \"IA100\",\n                        \"ref\": null,\n                        \"hookRef\": null,\n                        \"incomeAccountId\": null,\n                        \"inventoryAccountId\": null,\n                        \"expenseAccountId\": null,\n                        \"description\": \"Inventory Item\",\n                        \"stockLevel\": \"100\",\n                        \"cost\": \"300\",\n                        \"price\": \"200\",\n                        \"type\": \"Inventory\",\n                        \"taxable\": true,\n                        \"trackingType\": [],\n                        \"active\": true,\n                        \"businessId\": \"HRldk0Rjhj\",\n                        \"defaultLocationId\": 43,\n                        \"notes\": [],\n                        \"tags\": [],\n                        \"uoms\": [\n                            {\n                                \"name\": \"EA\",\n                                \"conversion\": 1\n                            }\n                        ],\n                        \"createdAt\": \"2023-12-28T05:05:57.059Z\",\n                        \"updatedAt\": \"2023-12-28T05:05:57.059Z\"\n                    },\n                    \"vendor\": null,\n                    \"customer\": null\n                }\n            ]\n        },\n        {\n            \"id\": 27,\n            \"businessId\": \"FD8fkrKYSW\",\n            \"status\": \"Received\",\n            \"orderNumber\": null,\n            \"hookRef\": null,\n            \"notes\": [],\n            \"tags\": [],\n            \"createdAt\": \"2023-12-23T04:05:26.245Z\",\n            \"updatedAt\": \"2023-12-23T04:05:43.679Z\",\n            \"receivableItems\": [\n                {\n                    \"id\": 44,\n                    \"quantity\": \"1\",\n                    \"uom\": \"EA\",\n                    \"trackingData\": null,\n                    \"businessId\": \"FD8fkrKYSW\",\n                    \"customerId\": null,\n                    \"locationId\": 1,\n                    \"partId\": 2647,\n                    \"vendorId\": null,\n                    \"receivableId\": 27,\n                    \"createdAt\": \"2023-12-23T04:05:26.280Z\",\n                    \"updatedAt\": \"2023-12-23T04:05:26.280Z\",\n                    \"location\": {\n                        \"id\": 1,\n                        \"name\": \"Warehouse\",\n                        \"description\": \"Medium Warehouse \",\n                        \"address\": \"1010 East State Street, Orem, Ut, 84605\",\n                        \"active\": true,\n                        \"site\": true,\n                        \"readonly\": null,\n                        \"path\": \".20.\",\n                        \"businessId\": \"4tsYEMs7z3\",\n                        \"notes\": [],\n                        \"tags\": [],\n                        \"createdAt\": \"2023-10-04T23:15:48.137Z\",\n                        \"updatedAt\": \"2023-12-04T16:09:56.131Z\",\n                        \"parentId\": null\n                    },\n                    \"part\": {\n                        \"id\": 2647,\n                        \"number\": \"Bic Pen 1818\",\n                        \"ref\": \"19\",\n                        \"hookRef\": null,\n                        \"incomeAccountId\": 79,\n                        \"inventoryAccountId\": null,\n                        \"expenseAccountId\": 80,\n                        \"description\": \"Great Pen for Writing\",\n                        \"stockLevel\": \"200\",\n                        \"cost\": \"4\",\n                        \"price\": \"500\",\n                        \"type\": \"Inventory\",\n                        \"taxable\": true,\n                        \"trackingType\": [],\n                        \"active\": true,\n                        \"businessId\": \"FD8fkrKYSW\",\n                        \"defaultLocationId\": 1,\n                        \"notes\": [],\n                        \"tags\": [],\n                        \"uoms\": [\n                            {\n                                \"name\": \"EA\",\n                                \"conversion\": 1\n                            }\n                        ],\n                        \"createdAt\": \"2023-12-17T23:18:45.961Z\",\n                        \"updatedAt\": \"2023-12-17T23:18:45.961Z\"\n                    },\n                    \"vendor\": null,\n                    \"customer\": null\n                },\n                {\n                    \"id\": 45,\n                    \"quantity\": \"25\",\n                    \"uom\": \"EA\",\n                    \"trackingData\": null,\n                    \"businessId\": \"FD8fkrKYSW\",\n                    \"customerId\": null,\n                    \"locationId\": 1,\n                    \"partId\": 2647,\n                    \"vendorId\": null,\n                    \"receivableId\": 27,\n                    \"createdAt\": \"2023-12-23T04:05:26.280Z\",\n                    \"updatedAt\": \"2023-12-23T04:05:26.280Z\",\n                    \"location\": {\n                        \"id\": 1,\n                        \"name\": \"Warehouse\",\n                        \"description\": \"Medium Warehouse \",\n                        \"address\": \"1010 East State Street, Orem, Ut, 84605\",\n                        \"active\": true,\n                        \"site\": true,\n                        \"readonly\": null,\n                        \"path\": \".20.\",\n                        \"businessId\": \"4tsYEMs7z3\",\n                        \"notes\": [],\n                        \"tags\": [],\n                        \"createdAt\": \"2023-10-04T23:15:48.137Z\",\n                        \"updatedAt\": \"2023-12-04T16:09:56.131Z\",\n                        \"parentId\": null\n                    },\n                    \"part\": {\n                        \"id\": 2647,\n                        \"number\": \"Bic Pen 1818\",\n                        \"ref\": \"19\",\n                        \"hookRef\": null,\n                        \"incomeAccountId\": 79,\n                        \"inventoryAccountId\": null,\n                        \"expenseAccountId\": 80,\n                        \"description\": \"Great Pen for Writing\",\n                        \"stockLevel\": \"200\",\n                        \"cost\": \"4\",\n                        \"price\": \"500\",\n                        \"type\": \"Inventory\",\n                        \"taxable\": true,\n                        \"trackingType\": [],\n                        \"active\": true,\n                        \"businessId\": \"FD8fkrKYSW\",\n                        \"defaultLocationId\": 1,\n                        \"notes\": [],\n                        \"tags\": [],\n                        \"uoms\": [\n                            {\n                                \"name\": \"EA\",\n                                \"conversion\": 1\n                            }\n                        ],\n                        \"createdAt\": \"2023-12-17T23:18:45.961Z\",\n                        \"updatedAt\": \"2023-12-17T23:18:45.961Z\"\n                    },\n                    \"vendor\": null,\n                    \"customer\": null\n                }\n            ]\n        }\n    ],\n    \"hasMore\": false\n}"}],"_postman_id":"67ac622c-56dc-49ee-9040-26fe9a62d7f9"},{"name":"Get Receivable","event":[{"listen":"test","script":{"id":"9ee2a642-3ed3-4989-8568-004be486a908","exec":["pm.test('Status code is 200', function () {\r","    pm.response.to.have.status(200);\r","})"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"e7ac89c3-b126-4837-a93d-c27cf902211c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"replaceWithFloPayUser"},{"key":"password","value":"replaceWithFloPayPassword"}]},"isInherited":false},"method":"GET","header":[],"url":"{{base}}/receivable","urlObject":{"path":["receivable"],"host":["{{base}}"],"query":[],"variable":[]}},"response":[{"id":"e67881dd-ad16-49ca-93da-d9bbf7d7acab","name":"Get Receivable","originalRequest":{"method":"GET","header":[],"url":"{{base}}/receivable/audit/11"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Date","value":"Tue, 10 Mar 2026 17:39:57 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"876"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"43f838f0-8d57-4f75-82c6-cf86e4356645"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Security-Policy","value":"default-src 'none'; frame-ancestors 'none'"},{"key":"x-amz-apigw-id","value":"aBKZHHqpIAMEbjw="},{"key":"Cache-Control","value":"no-store"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-69b0576d-48a3630d774842e675471d71;Parent=24f2d76d1264c9f5;Sampled=0;Lineage=1:d3a93c74:0"},{"key":"Permissions-Policy","value":"camera=(), microphone=(), geolocation=()"},{"key":"Access-Control-Allow-Credentials","value":"true"}],"cookie":[],"responseTime":null,"body":"{\n    \"offset\": 0,\n    \"limit\": 10,\n    \"rows\": [\n        {\n            \"id\": 21,\n            \"field\": \"businessId\",\n            \"type\": \"INSERT\",\n            \"valueOld\": \"\",\n            \"valueNew\": \"1z2HUO9nT2\",\n            \"changedByUser\": \"qa@flopay.co\",\n            \"businessId\": \"1z2HUO9nT2\",\n            \"createdAt\": \"2026-03-10T17:31:22.209Z\",\n            \"receivableId\": 11,\n            \"ChangedByUserId\": 133,\n            \"receivable\": {\n                \"id\": 11,\n                \"businessId\": \"1z2HUO9nT2\",\n                \"status\": \"Open\",\n                \"orderNumber\": null,\n                \"hookRef\": null,\n                \"notes\": [],\n                \"tags\": [],\n                \"createdAt\": \"2026-03-10T17:31:22.181Z\",\n                \"updatedAt\": \"2026-03-10T17:31:22.181Z\"\n            }\n        },\n        {\n            \"id\": 22,\n            \"field\": \"status\",\n            \"type\": \"INSERT\",\n            \"valueOld\": \"\",\n            \"valueNew\": \"Open\",\n            \"changedByUser\": \"qa@flopay.co\",\n            \"businessId\": \"1z2HUO9nT2\",\n            \"createdAt\": \"2026-03-10T17:31:22.209Z\",\n            \"receivableId\": 11,\n            \"ChangedByUserId\": 133,\n            \"receivable\": {\n                \"id\": 11,\n                \"businessId\": \"1z2HUO9nT2\",\n                \"status\": \"Open\",\n                \"orderNumber\": null,\n                \"hookRef\": null,\n                \"notes\": [],\n                \"tags\": [],\n                \"createdAt\": \"2026-03-10T17:31:22.181Z\",\n                \"updatedAt\": \"2026-03-10T17:31:22.181Z\"\n            }\n        }\n    ],\n    \"hasMore\": false\n}"}],"_postman_id":"e7ac89c3-b126-4837-a93d-c27cf902211c"},{"name":"Update Receivable","id":"9e8a84c1-5823-42d5-82b0-98f6b51d6c25","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"replaceWithFloPayUser"},{"key":"password","value":"replaceWithFloPayPassword"}]},"isInherited":false},"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"id\": 2,\r\n    \"businessId\": \"{{businessId}}\",\r\n    \"status\": \"Open\",\r\n    \"orderNumber\": null,\r\n    \"hookRef\": null,\r\n    \"notes\": [],\r\n    \"tags\": [],\r\n    \"createdAt\": \"2024-08-16T20:27:03.975Z\",\r\n    \"updatedAt\": \"2024-08-16T20:27:03.975Z\",\r\n    \"receivableItems\": [\r\n        {\r\n            \"id\": 3,\r\n            \"quantity\": \"6\",\r\n            \"uom\": {\r\n                \"name\": \"EA\",\r\n                \"conversion\": 1\r\n            },\r\n            \"trackingData\": null,\r\n            \"businessId\": \"K5jrN7LSJ7\",\r\n            \"customerId\": null,\r\n            \"locationId\": 2,\r\n            \"partId\": 70,\r\n            \"vendorId\": null,\r\n            \"receivableId\": 2,\r\n            \"createdAt\": \"2024-08-16T20:27:04.007Z\",\r\n            \"updatedAt\": \"2024-08-16T20:27:04.007Z\",\r\n            \"location\": {\r\n                \"id\": 2,\r\n                \"name\": \"A1A1\",\r\n                \"description\": \"Default location create on initial setup.\",\r\n                \"address\": \"\",\r\n                \"active\": true,\r\n                \"site\": true,\r\n                \"readonly\": true,\r\n                \"path\": \"1\",\r\n                \"businessId\": \"IepQ1qQNeC\",\r\n                \"notes\": [],\r\n                \"tags\": [],\r\n                \"createdAt\": \"2024-03-29T19:27:31.271Z\",\r\n                \"updatedAt\": \"2024-03-29T19:27:31.271Z\",\r\n                \"parentId\": null\r\n            },\r\n            \"part\": {\r\n                \"id\": 70,\r\n                \"number\": \"OFSPLY\",\r\n                \"ref\": null,\r\n                \"hookRef\": null,\r\n                \"incomeAccountId\": null,\r\n                \"inventoryAccountId\": null,\r\n                \"expenseAccountId\": null,\r\n                \"description\": \"Office Supplies\",\r\n                \"stockLevel\": \"1000\",\r\n                \"cost\": \"15\",\r\n                \"price\": \"25\",\r\n                \"type\": \"Inventory\",\r\n                \"taxable\": true,\r\n                \"trackingType\": [],\r\n                \"active\": true,\r\n                \"businessId\": \"K5jrN7LSJ7\",\r\n                \"defaultLocationId\": 2,\r\n                \"notes\": [],\r\n                \"tags\": [],\r\n                \"uoms\": [\r\n                    {\r\n                        \"name\": \"EA\",\r\n                        \"conversion\": 1\r\n                    }\r\n                ],\r\n                \"createdAt\": \"2024-08-16T02:01:17.798Z\",\r\n                \"updatedAt\": \"2024-08-16T02:04:44.348Z\"\r\n            },\r\n            \"vendor\": null,\r\n            \"customer\": null\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base}}/receivable/","urlObject":{"path":["receivable",""],"host":["{{base}}"],"query":[],"variable":[]}},"response":[{"id":"0b8b0038-95d3-407f-8422-f452c9eada39","name":"Update Receivable","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"id\": 2,\r\n    \"businessId\": \"{{businessId}}\",\r\n    \"status\": \"Open\",\r\n    \"orderNumber\": null,\r\n    \"hookRef\": null,\r\n    \"notes\": [],\r\n    \"tags\": [],\r\n    \"createdAt\": \"2024-08-16T20:27:03.975Z\",\r\n    \"updatedAt\": \"2024-08-16T20:27:03.975Z\",\r\n    \"receivableItems\": [\r\n        {\r\n            \"id\": 3,\r\n            \"quantity\": \"6\",\r\n            \"uom\": {\r\n                \"name\": \"EA\",\r\n                \"conversion\": 1\r\n            },\r\n            \"trackingData\": null,\r\n            \"businessId\": \"K5jrN7LSJ7\",\r\n            \"customerId\": null,\r\n            \"locationId\": 2,\r\n            \"partId\": 70,\r\n            \"vendorId\": null,\r\n            \"receivableId\": 2,\r\n            \"createdAt\": \"2024-08-16T20:27:04.007Z\",\r\n            \"updatedAt\": \"2024-08-16T20:27:04.007Z\",\r\n            \"location\": {\r\n                \"id\": 2,\r\n                \"name\": \"A1A1\",\r\n                \"description\": \"Default location create on initial setup.\",\r\n                \"address\": \"\",\r\n                \"active\": true,\r\n                \"site\": true,\r\n                \"readonly\": true,\r\n                \"path\": \"1\",\r\n                \"businessId\": \"IepQ1qQNeC\",\r\n                \"notes\": [],\r\n                \"tags\": [],\r\n                \"createdAt\": \"2024-03-29T19:27:31.271Z\",\r\n                \"updatedAt\": \"2024-03-29T19:27:31.271Z\",\r\n                \"parentId\": null\r\n            },\r\n            \"part\": {\r\n                \"id\": 70,\r\n                \"number\": \"OFSPLY\",\r\n                \"ref\": null,\r\n                \"hookRef\": null,\r\n                \"incomeAccountId\": null,\r\n                \"inventoryAccountId\": null,\r\n                \"expenseAccountId\": null,\r\n                \"description\": \"Office Supplies\",\r\n                \"stockLevel\": \"1000\",\r\n                \"cost\": \"15\",\r\n                \"price\": \"25\",\r\n                \"type\": \"Inventory\",\r\n                \"taxable\": true,\r\n                \"trackingType\": [],\r\n                \"active\": true,\r\n                \"businessId\": \"K5jrN7LSJ7\",\r\n                \"defaultLocationId\": 2,\r\n                \"notes\": [],\r\n                \"tags\": [],\r\n                \"uoms\": [\r\n                    {\r\n                        \"name\": \"EA\",\r\n                        \"conversion\": 1\r\n                    }\r\n                ],\r\n                \"createdAt\": \"2024-08-16T02:01:17.798Z\",\r\n                \"updatedAt\": \"2024-08-16T02:04:44.348Z\"\r\n            },\r\n            \"vendor\": null,\r\n            \"customer\": null\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base}}/receivable/"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"9e8a84c1-5823-42d5-82b0-98f6b51d6c25"},{"name":"Delete Receivable","id":"bee5c7b1-da61-49a2-be1a-8bc1449d2bc6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"replaceWithFloPayUser"},{"key":"password","value":"replaceWithFloPayPassword"}]},"isInherited":false},"method":"DELETE","header":[],"url":"https://devapi.flopay.co/erp/receivable/","urlObject":{"protocol":"https","path":["erp","receivable",""],"host":["devapi","flopay","co"],"query":[],"variable":[]}},"response":[{"id":"0453beaa-3079-45f1-85c2-fd96c81ac1fe","name":"Delete Receivable","originalRequest":{"method":"DELETE","header":[],"url":"https://devapi.flopay.co/erp/receivable/"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"bee5c7b1-da61-49a2-be1a-8bc1449d2bc6"}],"id":"2ff45d21-6ac1-4648-8da5-453d6dbc8816","_postman_id":"2ff45d21-6ac1-4648-8da5-453d6dbc8816","description":""},{"name":"Items","item":[{"name":"Create Item","event":[{"listen":"test","script":{"id":"e87fc58d-ff5f-4de3-8331-39de14217f50","exec":["pm.test('Status code is 200', function () {\r","    pm.response.to.have.status(200);\r","})\r","var jsonData = pm.response.json();\r","pm.environment.set(\"itemId\", jsonData.id);"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"f98a8d2f-bdc6-45fb-bc0e-6c165786d1fb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"replaceWithFloPayUser"},{"key":"password","value":"replaceWithFloPayPassword"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"number\": \"OFSPLY-jl\",\r\n    \"description\": \"Office Supplies\",\r\n    \"stockLevel\": \"1000\",\r\n    \"cost\": \"15\",\r\n    \"price\": \"25\",\r\n    \"type\": \"Inventory\",\r\n    \"taxable\": true,\r\n    \"trackingType\": [],\r\n    \"active\": true,\r\n    \"businessId\": \"{{businessId}}\",\r\n    \"defaultLocationId\": 2,\r\n    \"notes\": [],\r\n    \"tags\": [],\r\n    \"uoms\": [\r\n        {\r\n            \"name\": \"EA\",\r\n            \"conversion\": 1\r\n        }\r\n    ],\r\n    \"defaultLocation\": {\r\n        \"id\": 2,\r\n        \"name\": \"L2000\",\r\n        \"description\": \" Main Office\",\r\n        \"address\": \"1232 W. 123 S. Orem, Utah 84062\",\r\n        \"active\": true,\r\n        \"site\": true,\r\n        \"readonly\": true,\r\n        \"path\": \".2.\",\r\n        \"businessId\": \"iSaMmxSpt9\",\r\n        \"notes\": [],\r\n        \"tags\": []\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base}}/part","urlObject":{"path":["part"],"host":["{{base}}"],"query":[],"variable":[]}},"response":[{"id":"3e6c8420-af1d-4f28-87e6-620e233c66ea","name":"Create item","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"businessId\": \"{{businessId}}\",\r\n  \"uoms\": [\r\n    {\r\n      \"name\": \"EA\",\r\n      \"conversion\": 1\r\n    }\r\n  ],\r\n  \"number\": \"5678\",\r\n  \"defaultLocationId\": 231\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base}}/part"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"680"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Nov 2023 02:47:23 GMT"},{"key":"x-amzn-RequestId","value":"714ee29f-e34d-48d7-afac-5222bd51285b"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"x-amz-apigw-id","value":"OhYZYFouIAMESPA="},{"key":"X-Amzn-Trace-Id","value":"Root=1-6556d43b-2aab25c02ac0e98c79ab1462;Sampled=0;lineage=e21dbd46:0"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 0f0b1a29daedcaef491f1558b9ebf0f6.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"YTO50-P3"},{"key":"X-Amz-Cf-Id","value":"kgOQDwdWnjEDwBawP3hni57oC8C2whpnXP1uRRGh_LU-6_tPIAFrag=="}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 64,\n    \"number\": \"7890\",\n    \"ref\": null,\n    \"hookRef\": null,\n    \"incomeAccountId\": null,\n    \"inventoryAccountId\": null,\n    \"expenseAccountId\": null,\n    \"description\": null,\n    \"stockLevel\": 0,\n    \"cost\": 0,\n    \"price\": 0,\n    \"type\": \"Inventory\",\n    \"taxable\": true,\n    \"trackingType\": [],\n    \"active\": true,\n    \"businessId\": \"K5jrN7LSJ7\",\n    \"defaultLocationId\": 231,\n    \"notes\": [],\n    \"tags\": [],\n    \"uoms\": [\n        {\n            \"name\": \"EA\",\n            \"conversion\": 1\n        }\n    ],\n    \"createdAt\": \"2024-08-16T01:56:59.734Z\",\n    \"updatedAt\": \"2024-08-16T01:56:59.734Z\",\n    \"defaultLocation\": {\n        \"id\": 231,\n        \"name\": \"Summerville\",\n        \"description\": \"Dorchester county warehouse\",\n        \"address\": \"1234 Dorchester Road, Ladson SC\",\n        \"active\": true,\n        \"site\": null,\n        \"readonly\": null,\n        \"path\": \".231.\",\n        \"businessId\": \"K5jrN7LSJ7\",\n        \"notes\": [],\n        \"tags\": [],\n        \"createdAt\": \"2024-08-16T00:33:01.742Z\",\n        \"updatedAt\": \"2024-08-16T00:33:52.696Z\",\n        \"parentId\": null\n    }\n}"},{"id":"92a2c619-d012-40d0-90ca-346a42a47c08","name":"Error 500","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"businessId\": \"{{businessId}}\",\r\n    \"number\": \"O\",\r\n    \"description\": \"Office Supplies\",\r\n    \"stockLevel\": \"1000\",\r\n    \"cost\": \"15\",\r\n    \"price\": \"25\",\r\n    \"taxRate\": \"0.0625\",\r\n    \"type\": \"Inventory\",\r\n    \"taxable\": true,\r\n    \"trackingType\": [],\r\n    \"active\": true,\r\n    \"defaultLocationId\": 2,\r\n    \"notes\": [],\r\n    \"tags\": [],\r\n    \"uoms\": [\r\n        {\r\n            \"name\": \"EA\",\r\n            \"conversion\": 1\r\n        }\r\n    ],\r\n    \"defaultLocation\": {\r\n        \"id\": 2,\r\n        \"name\": \"L2000\",\r\n        \"description\": \" Main Office\",\r\n        \"address\": \"1232 W. 123 S. Orem, Utah 84062\",\r\n        \"active\": true,\r\n        \"site\": true,\r\n        \"readonly\": true,\r\n        \"path\": \".2.\",\r\n        \"businessId\": \"iSaMmxSpt9\",\r\n        \"notes\": [],\r\n        \"tags\": []\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base}}/part"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"257"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Nov 2023 03:08:42 GMT"},{"key":"x-amzn-RequestId","value":"89ce4d12-62da-422c-8be1-83d5200eac4c"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"x-amz-apigw-id","value":"OhbhNHQBIAMEK0g="},{"key":"X-Amzn-Trace-Id","value":"Root=1-6556d93a-3592bbe10757ab005c3b2257;Sampled=0;lineage=e21dbd46:0"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 34d83bdced2ff151ec8c14c89b681518.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"SLC50-C1"},{"key":"X-Amz-Cf-Id","value":"ainlM9YR-DBeIz4BVYl_zVYqMTfEAXaiZiX3nlH9nrmfP9Nlw0eQFA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"statusCode\": 500,\n    \"errorCode\": \"5XX\",\n    \"message\": \" number must be unique businessId must be uniqueKey (number, \\\"businessId\\\")=(OFSPLY-D, iSaMmxSpt9) already exists.error: duplicate key value violates unique constraint \\\"unique_constraint_number_businessId\\\"\"\n}"},{"id":"50fe8e4e-970b-4dfc-b6fa-c421f9841d3d","name":"Error 400","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"businessId\": \"{{businessId}}\",\r\n    \"number\": \"O\",\r\n    \"description\": \"Office Supplies\",\r\n    \"stockLevel\": \"1000\",\r\n    \"cost\": \"15\",\r\n    \"price\": \"25\",\r\n    \"taxRate\": \"0.0625\",\r\n    \"type\": \"Inventory\",\r\n    \"taxable\": true,\r\n    \"trackingType\": [],\r\n    \"active\": true,\r\n    \"defaultLocationId\": 2,\r\n    \"notes\": [],\r\n    \"tags\": [],\r\n    \"uoms\": [\r\n        {\r\n            \"name\": \"EA\",\r\n            \"conversion\": 1\r\n        }\r\n    ],\r\n    \"defaultLocation\": {\r\n        \"id\": 2,\r\n        \"name\": \"L2000\",\r\n        \"description\": \" Main Office\",\r\n        \"address\": \"1232 W. 123 S. Orem, Utah 84062\",\r\n        \"active\": true,\r\n        \"site\": true,\r\n        \"readonly\": true,\r\n        \"path\": \".2.\",\r\n        \"businessId\": \"iSaMmxSpt9\",\r\n        \"notes\": [],\r\n        \"tags\": []\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base}}/part"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"102"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Nov 2023 03:10:14 GMT"},{"key":"x-amzn-RequestId","value":"5735e69c-8db5-4801-af20-a7214463399f"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"x-amz-apigw-id","value":"OhbvhEfCIAMEctg="},{"key":"X-Amzn-Trace-Id","value":"Root=1-6556d996-33c78bb73b7a85f33c09e39f;Sampled=0;lineage=829e0d55:0|e21dbd46:0"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 34d83bdced2ff151ec8c14c89b681518.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"SLC50-C1"},{"key":"X-Amz-Cf-Id","value":"Vw3zSa09OuWP3FZu8JbW4bhObb6NMs9vLfshTwKmBX_fV8Je_460Ew=="}],"cookie":[],"responseTime":null,"body":"{\n    \"statusCode\": 400,\n    \"errorCode\": \"4000\",\n    \"message\": \"\\\"number\\\" length must be at least 4 characters long\"\n}"}],"_postman_id":"f98a8d2f-bdc6-45fb-bc0e-6c165786d1fb"},{"name":"Get Items","event":[{"listen":"test","script":{"id":"50d84599-ce1e-44cd-966d-142eb0bb22d9","exec":["pm.test('Status code is 200', function () {\r","    pm.response.to.have.status(200);\r","})"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"d3f7f324-353e-42e4-a3c2-74c314f6f23e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"replaceWithFloPayUser"},{"key":"password","value":"replaceWithFloPayPassword"}]},"isInherited":false},"method":"GET","header":[],"url":"{{base}}/part","urlObject":{"path":["part"],"host":["{{base}}"],"query":[],"variable":[]}},"response":[{"id":"91a99ad4-91a9-4a38-ac7b-31cc7809f07c","name":"Get Items","originalRequest":{"method":"GET","header":[],"url":"{{base}}/part"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 14 Aug 2024 12:06:06 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"1215"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"3a76d2e6-a9f4-415d-b9ae-8f1a97807e86"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"x-amz-apigw-id","value":"cf2TRE9aoAMEK5A="},{"key":"X-Amzn-Trace-Id","value":"Root=1-66bc9dae-412c6b9260b9e83152836410;Parent=033827103d831034;Sampled=0;lineage=2a121c2a:0|7cd8e33e:0"},{"key":"Access-Control-Allow-Credentials","value":"true"}],"cookie":[],"responseTime":null,"body":"{\n    \"offset\": 0,\n    \"limit\": 10,\n    \"rows\": [\n        {\n            \"id\": 70,\n            \"number\": \"15678\",\n            \"ref\": null,\n            \"hookRef\": null,\n            \"incomeAccountId\": null,\n            \"inventoryAccountId\": null,\n            \"expenseAccountId\": null,\n            \"description\": null,\n            \"stockLevel\": null,\n            \"cost\": \"0\",\n            \"price\": \"0\",\n            \"type\": \"Inventory\",\n            \"taxable\": true,\n            \"trackingType\": [],\n            \"active\": true,\n            \"businessId\": \"K5jrN7LSJ7\",\n            \"defaultLocationId\": 231,\n            \"notes\": [],\n            \"tags\": [],\n            \"uoms\": [\n                {\n                    \"name\": \"EA\",\n                    \"conversion\": 1\n                }\n            ],\n            \"createdAt\": \"2024-08-16T02:01:17.798Z\",\n            \"updatedAt\": \"2024-08-16T02:01:17.798Z\",\n            \"defaultLocation\": {\n                \"id\": 231,\n                \"name\": \"Summerville\",\n                \"description\": \"Dorchester county warehouse\",\n                \"address\": \"1234 Dorchester Road, Ladson SC\",\n                \"active\": true,\n                \"site\": null,\n                \"readonly\": null,\n                \"path\": \".231.\",\n                \"businessId\": \"K5jrN7LSJ7\",\n                \"notes\": [],\n                \"tags\": [],\n                \"createdAt\": \"2024-08-16T00:33:01.742Z\",\n                \"updatedAt\": \"2024-08-16T00:33:52.696Z\",\n                \"parentId\": null,\n                \"parent\": null\n            },\n            \"expenseAccount\": null,\n            \"incomeAccount\": null,\n            \"inventoryAccount\": null\n        },\n        {\n            \"id\": 67,\n            \"number\": \"56738\",\n            \"ref\": null,\n            \"hookRef\": null,\n            \"incomeAccountId\": null,\n            \"inventoryAccountId\": null,\n            \"expenseAccountId\": null,\n            \"description\": null,\n            \"stockLevel\": null,\n            \"cost\": \"0\",\n            \"price\": \"0\",\n            \"type\": \"Inventory\",\n            \"taxable\": true,\n            \"trackingType\": [],\n            \"active\": true,\n            \"businessId\": \"K5jrN7LSJ7\",\n            \"defaultLocationId\": 231,\n            \"notes\": [],\n            \"tags\": [],\n            \"uoms\": [\n                {\n                    \"name\": \"EA\",\n                    \"conversion\": 1\n                }\n            ],\n            \"createdAt\": \"2024-08-16T01:59:55.125Z\",\n            \"updatedAt\": \"2024-08-16T01:59:55.125Z\",\n            \"defaultLocation\": {\n                \"id\": 231,\n                \"name\": \"Summerville\",\n                \"description\": \"Dorchester county warehouse\",\n                \"address\": \"1234 Dorchester Road, Ladson SC\",\n                \"active\": true,\n                \"site\": null,\n                \"readonly\": null,\n                \"path\": \".231.\",\n                \"businessId\": \"K5jrN7LSJ7\",\n                \"notes\": [],\n                \"tags\": [],\n                \"createdAt\": \"2024-08-16T00:33:01.742Z\",\n                \"updatedAt\": \"2024-08-16T00:33:52.696Z\",\n                \"parentId\": null,\n                \"parent\": null\n            },\n            \"expenseAccount\": null,\n            \"incomeAccount\": null,\n            \"inventoryAccount\": null\n        },\n        {\n            \"id\": 64,\n            \"number\": \"7890\",\n            \"ref\": null,\n            \"hookRef\": null,\n            \"incomeAccountId\": null,\n            \"inventoryAccountId\": null,\n            \"expenseAccountId\": null,\n            \"description\": null,\n            \"stockLevel\": null,\n            \"cost\": \"0\",\n            \"price\": \"0\",\n            \"type\": \"Inventory\",\n            \"taxable\": true,\n            \"trackingType\": [],\n            \"active\": true,\n            \"businessId\": \"K5jrN7LSJ7\",\n            \"defaultLocationId\": 231,\n            \"notes\": [],\n            \"tags\": [],\n            \"uoms\": [\n                {\n                    \"name\": \"EA\",\n                    \"conversion\": 1\n                }\n            ],\n            \"createdAt\": \"2024-08-16T01:56:59.734Z\",\n            \"updatedAt\": \"2024-08-16T01:56:59.734Z\",\n            \"defaultLocation\": {\n                \"id\": 231,\n                \"name\": \"Summerville\",\n                \"description\": \"Dorchester county warehouse\",\n                \"address\": \"1234 Dorchester Road, Ladson SC\",\n                \"active\": true,\n                \"site\": null,\n                \"readonly\": null,\n                \"path\": \".231.\",\n                \"businessId\": \"K5jrN7LSJ7\",\n                \"notes\": [],\n                \"tags\": [],\n                \"createdAt\": \"2024-08-16T00:33:01.742Z\",\n                \"updatedAt\": \"2024-08-16T00:33:52.696Z\",\n                \"parentId\": null,\n                \"parent\": null\n            },\n            \"expenseAccount\": null,\n            \"incomeAccount\": null,\n            \"inventoryAccount\": null\n        },\n        {\n            \"id\": 62,\n            \"number\": \"5678\",\n            \"ref\": null,\n            \"hookRef\": null,\n            \"incomeAccountId\": null,\n            \"inventoryAccountId\": null,\n            \"expenseAccountId\": null,\n            \"description\": null,\n            \"stockLevel\": null,\n            \"cost\": \"0\",\n            \"price\": \"0\",\n            \"type\": \"Inventory\",\n            \"taxable\": true,\n            \"trackingType\": [],\n            \"active\": true,\n            \"businessId\": \"K5jrN7LSJ7\",\n            \"defaultLocationId\": 231,\n            \"notes\": [],\n            \"tags\": [],\n            \"uoms\": [\n                {\n                    \"name\": \"EA\",\n                    \"conversion\": 1\n                }\n            ],\n            \"createdAt\": \"2024-08-16T01:55:49.630Z\",\n            \"updatedAt\": \"2024-08-16T01:55:49.630Z\",\n            \"defaultLocation\": {\n                \"id\": 231,\n                \"name\": \"Summerville\",\n                \"description\": \"Dorchester county warehouse\",\n                \"address\": \"1234 Dorchester Road, Ladson SC\",\n                \"active\": true,\n                \"site\": null,\n                \"readonly\": null,\n                \"path\": \".231.\",\n                \"businessId\": \"K5jrN7LSJ7\",\n                \"notes\": [],\n                \"tags\": [],\n                \"createdAt\": \"2024-08-16T00:33:01.742Z\",\n                \"updatedAt\": \"2024-08-16T00:33:52.696Z\",\n                \"parentId\": null,\n                \"parent\": null\n            },\n            \"expenseAccount\": null,\n            \"incomeAccount\": null,\n            \"inventoryAccount\": null\n        },\n        {\n            \"id\": 61,\n            \"number\": \"9999\",\n            \"ref\": null,\n            \"hookRef\": null,\n            \"incomeAccountId\": null,\n            \"inventoryAccountId\": null,\n            \"expenseAccountId\": null,\n            \"description\": null,\n            \"stockLevel\": null,\n            \"cost\": \"0\",\n            \"price\": \"0\",\n            \"type\": \"Inventory\",\n            \"taxable\": true,\n            \"trackingType\": [],\n            \"active\": true,\n            \"businessId\": \"K5jrN7LSJ7\",\n            \"defaultLocationId\": 24,\n            \"notes\": [],\n            \"tags\": [],\n            \"uoms\": [\n                {\n                    \"name\": \"EA\",\n                    \"conversion\": 1\n                }\n            ],\n            \"createdAt\": \"2024-08-16T01:54:10.366Z\",\n            \"updatedAt\": \"2024-08-16T01:54:10.366Z\",\n            \"defaultLocation\": {\n                \"id\": 24,\n                \"name\": \"Warehouse\",\n                \"description\": null,\n                \"address\": null,\n                \"active\": true,\n                \"site\": null,\n                \"readonly\": null,\n                \"path\": \".24.\",\n                \"businessId\": \"K5jrN7LSJ7\",\n                \"notes\": [],\n                \"tags\": [],\n                \"createdAt\": \"2024-08-16T00:48:28.693Z\",\n                \"updatedAt\": \"2024-08-16T00:48:28.770Z\",\n                \"parentId\": null,\n                \"parent\": null\n            },\n            \"expenseAccount\": null,\n            \"incomeAccount\": null,\n            \"inventoryAccount\": null\n        },\n        {\n            \"id\": 54,\n            \"number\": \"MISC-SERVICE\",\n            \"ref\": null,\n            \"hookRef\": null,\n            \"incomeAccountId\": null,\n            \"inventoryAccountId\": null,\n            \"expenseAccountId\": null,\n            \"description\": \"Default service item created on initial setup.\",\n            \"stockLevel\": null,\n            \"cost\": \"0\",\n            \"price\": \"0\",\n            \"type\": \"Service\",\n            \"taxable\": true,\n            \"trackingType\": [],\n            \"active\": true,\n            \"businessId\": \"K5jrN7LSJ7\",\n            \"defaultLocationId\": null,\n            \"notes\": [],\n            \"tags\": [],\n            \"uoms\": [\n                {\n                    \"name\": \"EA\",\n                    \"conversion\": 1\n                }\n            ],\n            \"createdAt\": \"2024-08-12T02:11:49.215Z\",\n            \"updatedAt\": \"2024-08-12T02:11:49.215Z\",\n            \"defaultLocation\": null,\n            \"expenseAccount\": null,\n            \"incomeAccount\": null,\n            \"inventoryAccount\": null\n        },\n        {\n            \"id\": 53,\n            \"number\": \"MISC-ITEM\",\n            \"ref\": null,\n            \"hookRef\": null,\n            \"incomeAccountId\": null,\n            \"inventoryAccountId\": null,\n            \"expenseAccountId\": null,\n            \"description\": \"Default non-inventory item created on initial setup.\",\n            \"stockLevel\": null,\n            \"cost\": \"0\",\n            \"price\": \"0\",\n            \"type\": \"Non-Inventory\",\n            \"taxable\": true,\n            \"trackingType\": [],\n            \"active\": true,\n            \"businessId\": \"K5jrN7LSJ7\",\n            \"defaultLocationId\": null,\n            \"notes\": [],\n            \"tags\": [],\n            \"uoms\": [\n                {\n                    \"name\": \"EA\",\n                    \"conversion\": 1\n                }\n            ],\n            \"createdAt\": \"2024-08-12T02:11:49.173Z\",\n            \"updatedAt\": \"2024-08-12T02:11:49.173Z\",\n            \"defaultLocation\": null,\n            \"expenseAccount\": null,\n            \"incomeAccount\": null,\n            \"inventoryAccount\": null\n        }\n    ],\n    \"hasMore\": false\n}"}],"_postman_id":"d3f7f324-353e-42e4-a3c2-74c314f6f23e"},{"name":"Get Item","event":[{"listen":"test","script":{"id":"38d1459b-c775-4d17-b1a5-71c663ffecba","exec":["pm.test('Status code is 200', function () {\r","    pm.response.to.have.status(200);\r","})"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"4b6519e1-8414-418e-a758-d8fee259811b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"replaceWithFloPayUser"},{"key":"password","value":"replaceWithFloPayPassword"}]},"isInherited":false},"method":"GET","header":[],"url":"{{base}}/part/{{itemId}}","urlObject":{"path":["part","{{itemId}}"],"host":["{{base}}"],"query":[],"variable":[]}},"response":[{"id":"f6a4ea1e-ae5b-4115-a133-f28fc0a4c847","name":"Get Item","originalRequest":{"method":"GET","header":[],"url":"{{base}}/part/70"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"364"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Nov 2023 03:06:43 GMT"},{"key":"x-amzn-RequestId","value":"cbabae81-4d15-4d55-9f46-4606dd7c9305"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"x-amz-apigw-id","value":"OhbOYHb7oAMEDvQ="},{"key":"X-Amzn-Trace-Id","value":"Root=1-6556d8c2-603342893197f52361a93e00;Sampled=0;lineage=e644bf72:0"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 34d83bdced2ff151ec8c14c89b681518.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"SLC50-C1"},{"key":"X-Amz-Cf-Id","value":"0m4rJFO47UYf9OVGm6uRsMnz0aQnsLRON8RqFzge1Q_5UK-qmybCXQ=="}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 70,\n    \"number\": \"15678\",\n    \"ref\": null,\n    \"hookRef\": null,\n    \"incomeAccountId\": null,\n    \"inventoryAccountId\": null,\n    \"expenseAccountId\": null,\n    \"description\": null,\n    \"stockLevel\": null,\n    \"cost\": \"0\",\n    \"price\": \"0\",\n    \"type\": \"Inventory\",\n    \"taxable\": true,\n    \"trackingType\": [],\n    \"active\": true,\n    \"businessId\": \"K5jrN7LSJ7\",\n    \"defaultLocationId\": 231,\n    \"notes\": [],\n    \"tags\": [],\n    \"uoms\": [\n        {\n            \"name\": \"EA\",\n            \"conversion\": 1\n        }\n    ],\n    \"createdAt\": \"2024-08-16T02:01:17.798Z\",\n    \"updatedAt\": \"2024-08-16T02:01:17.798Z\"\n}"}],"_postman_id":"4b6519e1-8414-418e-a758-d8fee259811b"},{"name":"Update Item","event":[{"listen":"test","script":{"id":"bf9148d4-6138-45da-815b-4f9129ff137c","exec":["pm.test('Status code is 200', function () {\r","    pm.response.to.have.status(200);\r","})"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"d88d5561-efeb-4d88-8b15-77df6c7ec7d8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"replaceWithFloPayUser"},{"key":"password","value":"replaceWithFloPayPassword"}]},"isInherited":false},"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"number\": \"OFSPLY-op\",\r\n    \"description\": \"Office Supplies\",\r\n    \"stockLevel\": \"1000\",\r\n    \"cost\": \"15\",\r\n    \"price\": \"25\",\r\n    \"type\": \"Inventory\",\r\n    \"taxable\": true,\r\n    \"trackingType\": [],\r\n    \"active\": true,\r\n    \"businessId\": \"{{businessId}}\",\r\n    \"defaultLocationId\": 2,\r\n    \"notes\": [],\r\n    \"tags\": [],\r\n    \"uoms\": [\r\n        {\r\n            \"name\": \"EA\",\r\n            \"conversion\": 1\r\n        }\r\n    ],\r\n    \"createdAt\": \"2023-10-12T14:39:10.035Z\",\r\n    \"updatedAt\": \"2023-11-10T00:00:24.808Z\",\r\n    \"defaultLocation\": {\r\n        \"id\": 2,\r\n        \"name\": \"L2000\",\r\n        \"description\": \" Main Office\",\r\n        \"address\": \"1232 W. 123 S. Orem, Utah 84062\",\r\n        \"active\": true,\r\n        \"site\": true,\r\n        \"readonly\": true,\r\n        \"path\": \".2.\",\r\n        \"businessId\": \"{{businessId}}\",\r\n        \"notes\": [],\r\n        \"tags\": [],\r\n        \"createdAt\": \"2023-10-12T05:00:09.935Z\",\r\n        \"updatedAt\": \"2023-11-10T00:02:57.188Z\",\r\n        \"parentId\": null\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base}}/part/{{itemId}}","urlObject":{"path":["part","{{itemId}}"],"host":["{{base}}"],"query":[],"variable":[]}},"response":[{"id":"d4bdd8be-9836-42c9-b01b-19095fef602c","name":"Required params only","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"businessId\": \"{{businessId}}\",\r\n    \"number\": \"OFSPLY\",\r\n    \"description\": \"Office Supplies\",\r\n    \"stockLevel\": \"1000\",\r\n    \"cost\": \"15\",\r\n    \"price\": \"25\",\r\n    \"type\": \"Inventory\",\r\n    \"taxable\": true,\r\n    \"trackingType\": [],\r\n    \"active\": true,\r\n    \"defaultLocationId\": 2,\r\n    \"notes\": [],\r\n    \"tags\": [],\r\n    \"uoms\": [\r\n        {\r\n            \"name\": \"EA\",\r\n            \"conversion\": 1\r\n        }\r\n    ],\r\n    \"createdAt\": \"2023-10-12T14:39:10.035Z\",\r\n    \"updatedAt\": \"2023-11-10T00:00:24.808Z\",\r\n    \"defaultLocation\": {\r\n        \"id\": 2,\r\n        \"name\": \"L2000\",\r\n        \"description\": \" Main Office\",\r\n        \"address\": \"1232 W. 123 S. Orem, Utah 84062\",\r\n        \"active\": true,\r\n        \"site\": true,\r\n        \"readonly\": true,\r\n        \"path\": \".2.\",\r\n        \"businessId\": \"iSaMmxSpt9\",\r\n        \"notes\": [],\r\n        \"tags\": [],\r\n        \"createdAt\": \"2023-10-12T05:00:09.935Z\",\r\n        \"updatedAt\": \"2023-11-10T00:02:57.188Z\",\r\n        \"parentId\": null\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base}}/part/70"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"677"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Nov 2023 03:05:01 GMT"},{"key":"x-amzn-RequestId","value":"cbc11fba-b915-4ed6-a79c-b1433c907094"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"x-amz-apigw-id","value":"Oha-dGeTIAMEWIA="},{"key":"X-Amzn-Trace-Id","value":"Root=1-6556d85c-3a37eb9962eacb806ec1029a;Sampled=0;lineage=829e0d55:0|39957262:0"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 34d83bdced2ff151ec8c14c89b681518.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"SLC50-C1"},{"key":"X-Amz-Cf-Id","value":"Fv4RJdFY3PSqlPDbbkSVZw2M3GpecuL9aJaU80hKK1LBgcJsVQoivg=="}],"cookie":[],"responseTime":null,"body":"{\n    \"businessId\": \"K5jrN7LSJ7\",\n    \"number\": \"OFSPLY\",\n    \"description\": \"Office Supplies\",\n    \"stockLevel\": \"1000\",\n    \"cost\": \"15\",\n    \"price\": \"25\",\n    \"type\": \"Inventory\",\n    \"taxable\": true,\n    \"trackingType\": [],\n    \"active\": true,\n    \"defaultLocationId\": 2,\n    \"notes\": [],\n    \"tags\": [],\n    \"uoms\": [\n        {\n            \"name\": \"EA\",\n            \"conversion\": 1\n        }\n    ],\n    \"createdAt\": \"2023-10-12T14:39:10.035Z\",\n    \"updatedAt\": \"2023-11-10T00:00:24.808Z\",\n    \"defaultLocation\": {\n        \"id\": 2,\n        \"name\": \"L2000\",\n        \"description\": \" Main Office\",\n        \"address\": \"1232 W. 123 S. Orem, Utah 84062\",\n        \"active\": true,\n        \"site\": true,\n        \"readonly\": true,\n        \"path\": \".2.\",\n        \"businessId\": \"iSaMmxSpt9\",\n        \"notes\": [],\n        \"tags\": [],\n        \"createdAt\": \"2023-10-12T05:00:09.935Z\",\n        \"updatedAt\": \"2023-11-10T00:02:57.188Z\",\n        \"parentId\": null\n    }\n}"},{"id":"960c391e-9eef-451b-a53d-979305461ced","name":"Full params","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"businessId\": \"{{businessId}}\",\r\n    \"number\": \"OFSPLY\",\r\n    \"description\": \"Office Supplies\",\r\n    \"stockLevel\": \"1000\",\r\n    \"cost\": \"15\",\r\n    \"price\": \"25\",\r\n    \"type\": \"Inventory\",\r\n    \"taxable\": true,\r\n    \"trackingType\": [],\r\n    \"active\": true,\r\n    \"defaultLocationId\": 2,\r\n    \"notes\": [],\r\n    \"tags\": [],\r\n    \"uoms\": [\r\n        {\r\n            \"name\": \"EA\",\r\n            \"conversion\": 1\r\n        }\r\n    ],\r\n    \"createdAt\": \"2023-10-12T14:39:10.035Z\",\r\n    \"updatedAt\": \"2023-11-10T00:00:24.808Z\",\r\n    \"defaultLocation\": {\r\n        \"id\": 2,\r\n        \"name\": \"L2000\",\r\n        \"description\": \" Main Office\",\r\n        \"address\": \"1232 W. 123 S. Orem, Utah 84062\",\r\n        \"active\": true,\r\n        \"site\": true,\r\n        \"readonly\": true,\r\n        \"path\": \".2.\",\r\n        \"businessId\": \"iSaMmxSpt9\",\r\n        \"notes\": [],\r\n        \"tags\": [],\r\n        \"createdAt\": \"2023-10-12T05:00:09.935Z\",\r\n        \"updatedAt\": \"2023-11-10T00:02:57.188Z\",\r\n        \"parentId\": null\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base}}/part/70"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"677"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Nov 2023 03:05:01 GMT"},{"key":"x-amzn-RequestId","value":"cbc11fba-b915-4ed6-a79c-b1433c907094"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"x-amz-apigw-id","value":"Oha-dGeTIAMEWIA="},{"key":"X-Amzn-Trace-Id","value":"Root=1-6556d85c-3a37eb9962eacb806ec1029a;Sampled=0;lineage=829e0d55:0|39957262:0"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 34d83bdced2ff151ec8c14c89b681518.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"SLC50-C1"},{"key":"X-Amz-Cf-Id","value":"Fv4RJdFY3PSqlPDbbkSVZw2M3GpecuL9aJaU80hKK1LBgcJsVQoivg=="}],"cookie":[],"responseTime":null,"body":"{\n    \"businessId\": \"K5jrN7LSJ7\",\n    \"number\": \"OFSPLY\",\n    \"description\": \"Office Supplies\",\n    \"stockLevel\": \"1000\",\n    \"cost\": \"15\",\n    \"price\": \"25\",\n    \"type\": \"Inventory\",\n    \"taxable\": true,\n    \"trackingType\": [],\n    \"active\": true,\n    \"defaultLocationId\": 2,\n    \"notes\": [],\n    \"tags\": [],\n    \"uoms\": [\n        {\n            \"name\": \"EA\",\n            \"conversion\": 1\n        }\n    ],\n    \"createdAt\": \"2023-10-12T14:39:10.035Z\",\n    \"updatedAt\": \"2023-11-10T00:00:24.808Z\",\n    \"defaultLocation\": {\n        \"id\": 2,\n        \"name\": \"L2000\",\n        \"description\": \" Main Office\",\n        \"address\": \"1232 W. 123 S. Orem, Utah 84062\",\n        \"active\": true,\n        \"site\": true,\n        \"readonly\": true,\n        \"path\": \".2.\",\n        \"businessId\": \"iSaMmxSpt9\",\n        \"notes\": [],\n        \"tags\": [],\n        \"createdAt\": \"2023-10-12T05:00:09.935Z\",\n        \"updatedAt\": \"2023-11-10T00:02:57.188Z\",\n        \"parentId\": null\n    }\n}"}],"_postman_id":"d88d5561-efeb-4d88-8b15-77df6c7ec7d8"},{"name":"Delete Item","event":[{"listen":"test","script":{"id":"e488dc30-56b2-4aa2-af3c-74109ccd1224","exec":["pm.test('Status code is 200', function () {\r","    pm.response.to.have.status(200);\r","})"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"879e4623-59db-4fbe-ad86-bf2b6d03a95a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"replaceWithFloPayUser"},{"key":"password","value":"replaceWithFloPayPassword"}]},"isInherited":false},"method":"DELETE","header":[],"url":"{{base}}/part/{{itemId}}","urlObject":{"path":["part","{{itemId}}"],"host":["{{base}}"],"query":[],"variable":[]}},"response":[{"id":"1237cc7d-0a5c-4aff-9c4c-8ca205a750b6","name":"Delete Item","originalRequest":{"method":"DELETE","header":[],"url":"{{base}}/part/7"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"1"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Nov 2023 03:06:21 GMT"},{"key":"x-amzn-RequestId","value":"c6158b2e-31e8-44a8-a4c4-5746c76da657"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"x-amz-apigw-id","value":"OhbK7GUvoAMEXoQ="},{"key":"X-Amzn-Trace-Id","value":"Root=1-6556d8ac-50940e9e1c1c3f0e4486defd;Sampled=0;lineage=cad2dde0:0"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 34d83bdced2ff151ec8c14c89b681518.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"SLC50-C1"},{"key":"X-Amz-Cf-Id","value":"t5ujwFpzFd09xnhNO6iZctcs-lZpblZoCUoSEps9p3VKfQ4Bb_qz6A=="}],"cookie":[],"responseTime":null,"body":"1"}],"_postman_id":"879e4623-59db-4fbe-ad86-bf2b6d03a95a"}],"id":"866aaf5b-94ad-42c6-bd19-72dbc9f30972","description":"<p>Create Inventory, Non-Inventory and Service type items that you want to track add to orders and receive payements for. Each item must be assinged to a default location. At least one location must be created before any items are added to the system. Items of type Inventory will automatically have a zero quantity added to inventory.</p>\n","_postman_id":"866aaf5b-94ad-42c6-bd19-72dbc9f30972"},{"name":"Location","item":[{"name":"Create Location","event":[{"id":"b0209bb9-cf7a-407d-8f5a-761bbbf81c66","listen":"test","script":{"id":"d9c5ed4d-e4be-4663-a182-81320fbdf10b","exec":["pm.test('Status code is 200', function () {\r","    pm.response.to.have.status(200);\r","})\r","\r","var jsonData = pm.response.json();\r","pm.environment.set(\"locationId\", jsonData.id);"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"f3723f4b-1c35-4c72-94f7-749e2c3268cc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"replaceWithFloPayUser"},{"key":"password","value":"replaceWithFloPayPassword"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"notes\": [],\r\n    \"tags\": [],\r\n    \"name\": \"Summerville\",\r\n    \"businessId\": \"{{businessId}}\",\r\n    \"active\": true,\r\n    \"updatedAt\": \"2024-08-16T00:26:58.256Z\",\r\n    \"createdAt\": \"2024-08-16T00:26:58.192Z\",\r\n    \"description\": null,\r\n    \"address\": null,\r\n    \"site\": null,\r\n    \"readonly\": null,\r\n    \"path\": \".20.\",\r\n    \"parentId\": null\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base}}/location","urlObject":{"path":["location"],"host":["{{base}}"],"query":[],"variable":[]}},"response":[{"id":"c7a59f28-3c30-4523-bb7c-f032daece615","name":"Required params only","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"businessId\": \"{{businessId}}\",\r\n    \"name\": \"Warehouse\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base}}/location"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"notes\": [],\n    \"tags\": [],\n    \"id\": 22,\n    \"name\": \"Warehouse\",\n    \"businessId\": \"K5jrN7LSJ7\",\n    \"active\": true,\n    \"updatedAt\": \"2024-08-16T00:31:35.087Z\",\n    \"createdAt\": \"2024-08-16T00:31:35.083Z\",\n    \"description\": null,\n    \"address\": null,\n    \"site\": null,\n    \"readonly\": null,\n    \"path\": \".22.\",\n    \"parentId\": null\n}"},{"id":"227aca6e-d34b-443d-bc8c-31bcdd015db6","name":"Full params","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"businessId\": \"{{businessId}}\",\r\n    \"notes\": [],\r\n    \"tags\": [],\r\n    \"id\": 230,\r\n    \"name\": \"Summerville\",\r\n    \"description\": \"Dorchester county warehouse\",\r\n    \"address\": \"1234 Dorchester Road, Ladson SC\",\r\n    \"active\": true,\r\n    \"updatedAt\": \"2024-08-16T00:33:01.768Z\",\r\n    \"createdAt\": \"2024-08-16T00:33:01.742Z\",\r\n    \"site\": null,\r\n    \"readonly\": null,\r\n    \"path\": \".23.\",\r\n    \"parentId\": null\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base}}/location"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"notes\": [],\n    \"tags\": [],\n    \"id\": 231,\n    \"name\": \"Summerville\",\n    \"description\": \"Dorchester county warehouse\",\n    \"address\": \"1234 Dorchester Road, Ladson SC\",\n    \"businessId\": \"K5jrN7LSJ7\",\n    \"active\": true,\n    \"updatedAt\": \"2024-08-16T00:33:52.696Z\",\n    \"createdAt\": \"2024-08-16T00:33:01.742Z\",\n    \"site\": null,\n    \"readonly\": null,\n    \"path\": \".231.\",\n    \"parentId\": null\n}"}],"_postman_id":"f3723f4b-1c35-4c72-94f7-749e2c3268cc"},{"name":"Get Location","event":[{"id":"972d80a4-84df-43a1-8d52-4dd46811f1b9","listen":"test","script":{"id":"715b0e64-cca0-44ef-878b-43ae36d20ea1","exec":["pm.test('Status code is 200', function () {\r","    pm.response.to.have.status(200);\r","})"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"91b069e9-a984-4fc9-b6b3-a2287748eb0c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"replaceWithFloPayUser"},{"key":"password","value":"replaceWithFloPayPassword"}]},"isInherited":false},"method":"GET","header":[],"url":"{{base}}/location/{{locationId}}","urlObject":{"path":["location","{{locationId}}"],"host":["{{base}}"],"query":[],"variable":[]}},"response":[{"id":"323d7822-df0d-429a-9206-a2b1717b044c","name":"Get Location","originalRequest":{"method":"GET","header":[],"url":"{{base}}/location/291"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 291,\n    \"name\": \"Summerville\",\n    \"description\": \"Dorchester county warehouse\",\n    \"address\": \"1234 Dorchester Road, Ladson SC\",\n    \"active\": true,\n    \"site\": null,\n    \"readonly\": null,\n    \"path\": \".291.\",\n    \"businessId\": \"K5jrN7LSJ7\",\n    \"notes\": [],\n    \"tags\": [],\n    \"createdAt\": \"2024-08-16T00:33:01.742Z\",\n    \"updatedAt\": \"2024-08-16T00:48:53.207Z\",\n    \"parentId\": null\n}"}],"_postman_id":"91b069e9-a984-4fc9-b6b3-a2287748eb0c"},{"name":"Get Locations","event":[{"id":"3915168f-5fbd-4304-9ac0-d163fc4e61d4","listen":"test","script":{"id":"08a4a590-5e1f-4cbd-9c39-b25e29f1eab8","exec":["pm.test('Status code is 200', function () {\r","    pm.response.to.have.status(200);\r","})"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"4826e15a-2e00-4b31-a560-61d27c9ac263","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"replaceWithFloPayUser"},{"key":"password","value":"replaceWithFloPayPassword"}]},"isInherited":false},"method":"GET","header":[],"url":"{{base}}/location?limit=10&offset=0&sort=-updatedAt&startDate=1999-11-16T07%3A00%3A00.000Z&endDate=2050-11-17T06%3A59%3A59.999Z","urlObject":{"path":["location"],"host":["{{base}}"],"query":[{"key":"limit","value":"10"},{"key":"offset","value":"0"},{"key":"sort","value":"-updatedAt"},{"key":"startDate","value":"1999-11-16T07%3A00%3A00.000Z"},{"key":"endDate","value":"2050-11-17T06%3A59%3A59.999Z"}],"variable":[]}},"response":[{"id":"8500c960-2f84-467c-a124-bd1aa6f5e0ae","name":"Default filters","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{base}}/location","host":["{{base}}"],"path":["location"],"query":[{"key":"limit","value":"10","disabled":true},{"key":"offset","value":"0","disabled":true},{"key":"sort","value":"-updatedAt","disabled":true},{"key":"startDate","value":"1999-11-16T07%3A00%3A00.000Z","disabled":true},{"key":"endDate","value":"2050-11-17T06%3A59%3A59.999Z","disabled":true}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"offset\": 0,\n    \"limit\": 10,\n    \"rows\": [\n        {\n            \"id\": 291,\n            \"name\": \"Summerville\",\n            \"description\": \"Dorchester county warehouse\",\n            \"address\": \"1234 Dorchester Road, Ladson SC\",\n            \"active\": true,\n            \"site\": null,\n            \"readonly\": null,\n            \"path\": \".291.\",\n            \"businessId\": \"K5jrN7LSJ7\",\n            \"notes\": [],\n            \"tags\": [],\n            \"createdAt\": \"2024-08-16T00:33:01.742Z\",\n            \"updatedAt\": \"2024-08-16T00:48:53.207Z\",\n            \"parentId\": null,\n            \"parent\": null\n        },\n        {\n            \"id\": 24,\n            \"name\": \"Warehouse\",\n            \"description\": null,\n            \"address\": null,\n            \"active\": true,\n            \"site\": null,\n            \"readonly\": null,\n            \"path\": \".24.\",\n            \"businessId\": \"K5jrN7LSJ7\",\n            \"notes\": [],\n            \"tags\": [],\n            \"createdAt\": \"2024-08-16T00:48:28.693Z\",\n            \"updatedAt\": \"2024-08-16T00:48:28.770Z\",\n            \"parentId\": null,\n            \"parent\": null\n        },\n        {\n            \"id\": 231,\n            \"name\": \"Summerville\",\n            \"description\": \"Dorchester county warehouse\",\n            \"address\": \"1234 Dorchester Road, Ladson SC\",\n            \"active\": true,\n            \"site\": null,\n            \"readonly\": null,\n            \"path\": \".231.\",\n            \"businessId\": \"K5jrN7LSJ7\",\n            \"notes\": [],\n            \"tags\": [],\n            \"createdAt\": \"2024-08-16T00:33:01.742Z\",\n            \"updatedAt\": \"2024-08-16T00:33:52.696Z\",\n            \"parentId\": null,\n            \"parent\": null\n        },\n        {\n            \"id\": 230,\n            \"name\": \"Summerville\",\n            \"description\": \"Dorchester county warehouse\",\n            \"address\": \"1234 Dorchester Road, Ladson SC\",\n            \"active\": true,\n            \"site\": null,\n            \"readonly\": null,\n            \"path\": \".230.\",\n            \"businessId\": \"K5jrN7LSJ7\",\n            \"notes\": [],\n            \"tags\": [],\n            \"createdAt\": \"2024-08-16T00:33:01.742Z\",\n            \"updatedAt\": \"2024-08-16T00:33:34.531Z\",\n            \"parentId\": null,\n            \"parent\": null\n        },\n        {\n            \"id\": 23,\n            \"name\": \"Summerville\",\n            \"description\": \"Dorchester county warehouse\",\n            \"address\": \"1234 Dorchester Road, Ladson SC\",\n            \"active\": true,\n            \"site\": null,\n            \"readonly\": null,\n            \"path\": \".23.\",\n            \"businessId\": \"K5jrN7LSJ7\",\n            \"notes\": [],\n            \"tags\": [],\n            \"createdAt\": \"2024-08-16T00:33:01.742Z\",\n            \"updatedAt\": \"2024-08-16T00:33:01.768Z\",\n            \"parentId\": null,\n            \"parent\": null\n        },\n        {\n            \"id\": 22,\n            \"name\": \"Warehouse\",\n            \"description\": null,\n            \"address\": null,\n            \"active\": true,\n            \"site\": null,\n            \"readonly\": null,\n            \"path\": \".22.\",\n            \"businessId\": \"K5jrN7LSJ7\",\n            \"notes\": [],\n            \"tags\": [],\n            \"createdAt\": \"2024-08-16T00:31:35.083Z\",\n            \"updatedAt\": \"2024-08-16T00:31:35.087Z\",\n            \"parentId\": null,\n            \"parent\": null\n        },\n        {\n            \"id\": 21,\n            \"name\": \"Warehouse\",\n            \"description\": null,\n            \"address\": null,\n            \"active\": true,\n            \"site\": null,\n            \"readonly\": null,\n            \"path\": \".21.\",\n            \"businessId\": \"K5jrN7LSJ7\",\n            \"notes\": [],\n            \"tags\": [],\n            \"createdAt\": \"2024-08-16T00:31:30.781Z\",\n            \"updatedAt\": \"2024-08-16T00:31:30.800Z\",\n            \"parentId\": null,\n            \"parent\": null\n        },\n        {\n            \"id\": 234,\n            \"name\": \"Summerville\",\n            \"description\": null,\n            \"address\": null,\n            \"active\": true,\n            \"site\": null,\n            \"readonly\": null,\n            \"path\": \".234.\",\n            \"businessId\": \"K5jrN7LSJ7\",\n            \"notes\": [],\n            \"tags\": [],\n            \"createdAt\": \"2024-08-16T00:26:58.192Z\",\n            \"updatedAt\": \"2024-08-16T00:29:28.740Z\",\n            \"parentId\": null,\n            \"parent\": null\n        },\n        {\n            \"id\": 20,\n            \"name\": \"Summerville\",\n            \"description\": null,\n            \"address\": null,\n            \"active\": true,\n            \"site\": null,\n            \"readonly\": null,\n            \"path\": \".20.\",\n            \"businessId\": \"K5jrN7LSJ7\",\n            \"notes\": [],\n            \"tags\": [],\n            \"createdAt\": \"2024-08-16T00:26:58.192Z\",\n            \"updatedAt\": \"2024-08-16T00:26:58.256Z\",\n            \"parentId\": null,\n            \"parent\": null\n        }\n    ],\n    \"hasMore\": false\n}"},{"id":"78667f27-d392-4d7b-b05c-26d03340a181","name":"Custom filters","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{base}}/location?limit=10&offset=0&sort=-updatedAt&startDate=1999-11-16T07%3A00%3A00.000Z&endDate=2050-11-17T06%3A59%3A59.999Z","host":["{{base}}"],"path":["location"],"query":[{"key":"limit","value":"10"},{"key":"offset","value":"0"},{"key":"sort","value":"-updatedAt"},{"key":"startDate","value":"1999-11-16T07%3A00%3A00.000Z"},{"key":"endDate","value":"2050-11-17T06%3A59%3A59.999Z"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"offset\": 0,\n    \"limit\": 10,\n    \"rows\": [\n        {\n            \"id\": 291,\n            \"name\": \"Summerville\",\n            \"description\": \"Dorchester county warehouse\",\n            \"address\": \"1234 Dorchester Road, Ladson SC\",\n            \"active\": true,\n            \"site\": null,\n            \"readonly\": null,\n            \"path\": \".291.\",\n            \"businessId\": \"K5jrN7LSJ7\",\n            \"notes\": [],\n            \"tags\": [],\n            \"createdAt\": \"2024-08-16T00:33:01.742Z\",\n            \"updatedAt\": \"2024-08-16T00:48:53.207Z\",\n            \"parentId\": null,\n            \"parent\": null\n        },\n        {\n            \"id\": 24,\n            \"name\": \"Warehouse\",\n            \"description\": null,\n            \"address\": null,\n            \"active\": true,\n            \"site\": null,\n            \"readonly\": null,\n            \"path\": \".24.\",\n            \"businessId\": \"K5jrN7LSJ7\",\n            \"notes\": [],\n            \"tags\": [],\n            \"createdAt\": \"2024-08-16T00:48:28.693Z\",\n            \"updatedAt\": \"2024-08-16T00:48:28.770Z\",\n            \"parentId\": null,\n            \"parent\": null\n        },\n        {\n            \"id\": 231,\n            \"name\": \"Summerville\",\n            \"description\": \"Dorchester county warehouse\",\n            \"address\": \"1234 Dorchester Road, Ladson SC\",\n            \"active\": true,\n            \"site\": null,\n            \"readonly\": null,\n            \"path\": \".231.\",\n            \"businessId\": \"K5jrN7LSJ7\",\n            \"notes\": [],\n            \"tags\": [],\n            \"createdAt\": \"2024-08-16T00:33:01.742Z\",\n            \"updatedAt\": \"2024-08-16T00:33:52.696Z\",\n            \"parentId\": null,\n            \"parent\": null\n        },\n        {\n            \"id\": 230,\n            \"name\": \"Summerville\",\n            \"description\": \"Dorchester county warehouse\",\n            \"address\": \"1234 Dorchester Road, Ladson SC\",\n            \"active\": true,\n            \"site\": null,\n            \"readonly\": null,\n            \"path\": \".230.\",\n            \"businessId\": \"K5jrN7LSJ7\",\n            \"notes\": [],\n            \"tags\": [],\n            \"createdAt\": \"2024-08-16T00:33:01.742Z\",\n            \"updatedAt\": \"2024-08-16T00:33:34.531Z\",\n            \"parentId\": null,\n            \"parent\": null\n        },\n        {\n            \"id\": 23,\n            \"name\": \"Summerville\",\n            \"description\": \"Dorchester county warehouse\",\n            \"address\": \"1234 Dorchester Road, Ladson SC\",\n            \"active\": true,\n            \"site\": null,\n            \"readonly\": null,\n            \"path\": \".23.\",\n            \"businessId\": \"K5jrN7LSJ7\",\n            \"notes\": [],\n            \"tags\": [],\n            \"createdAt\": \"2024-08-16T00:33:01.742Z\",\n            \"updatedAt\": \"2024-08-16T00:33:01.768Z\",\n            \"parentId\": null,\n            \"parent\": null\n        },\n        {\n            \"id\": 22,\n            \"name\": \"Warehouse\",\n            \"description\": null,\n            \"address\": null,\n            \"active\": true,\n            \"site\": null,\n            \"readonly\": null,\n            \"path\": \".22.\",\n            \"businessId\": \"K5jrN7LSJ7\",\n            \"notes\": [],\n            \"tags\": [],\n            \"createdAt\": \"2024-08-16T00:31:35.083Z\",\n            \"updatedAt\": \"2024-08-16T00:31:35.087Z\",\n            \"parentId\": null,\n            \"parent\": null\n        },\n        {\n            \"id\": 21,\n            \"name\": \"Warehouse\",\n            \"description\": null,\n            \"address\": null,\n            \"active\": true,\n            \"site\": null,\n            \"readonly\": null,\n            \"path\": \".21.\",\n            \"businessId\": \"K5jrN7LSJ7\",\n            \"notes\": [],\n            \"tags\": [],\n            \"createdAt\": \"2024-08-16T00:31:30.781Z\",\n            \"updatedAt\": \"2024-08-16T00:31:30.800Z\",\n            \"parentId\": null,\n            \"parent\": null\n        },\n        {\n            \"id\": 234,\n            \"name\": \"Summerville\",\n            \"description\": null,\n            \"address\": null,\n            \"active\": true,\n            \"site\": null,\n            \"readonly\": null,\n            \"path\": \".234.\",\n            \"businessId\": \"K5jrN7LSJ7\",\n            \"notes\": [],\n            \"tags\": [],\n            \"createdAt\": \"2024-08-16T00:26:58.192Z\",\n            \"updatedAt\": \"2024-08-16T00:29:28.740Z\",\n            \"parentId\": null,\n            \"parent\": null\n        },\n        {\n            \"id\": 20,\n            \"name\": \"Summerville\",\n            \"description\": null,\n            \"address\": null,\n            \"active\": true,\n            \"site\": null,\n            \"readonly\": null,\n            \"path\": \".20.\",\n            \"businessId\": \"K5jrN7LSJ7\",\n            \"notes\": [],\n            \"tags\": [],\n            \"createdAt\": \"2024-08-16T00:26:58.192Z\",\n            \"updatedAt\": \"2024-08-16T00:26:58.256Z\",\n            \"parentId\": null,\n            \"parent\": null\n        }\n    ],\n    \"hasMore\": false\n}"}],"_postman_id":"4826e15a-2e00-4b31-a560-61d27c9ac263"},{"name":"Update Location","event":[{"id":"ba61ae4b-93fc-43ac-9f08-6fd1b511f628","listen":"test","script":{"id":"d5919142-8804-42cf-b1a9-ee264d0beb4e","exec":["pm.test('Status code is 200', function () {\r","    pm.response.to.have.status(200);\r","})"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"23bf2987-a65d-4f26-bdbc-dda6479b9f90","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"replaceWithFloPayUser"},{"key":"password","value":"replaceWithFloPayPassword"}]},"isInherited":false},"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"id\": 1,\r\n    \"name\": \"Warehouse\",\r\n    \"description\": \"Medium Warehouse \",\r\n    \"address\": \"1010 East State Street, Orem, Ut, 84605\",\r\n    \"active\": true,\r\n    \"site\": true,\r\n    \"readonly\": null,\r\n    \"path\": \".20.\",\r\n    \"businessId\": \"{{businessId}}\",\r\n    \"notes\": [],\r\n    \"tags\": [],\r\n    \"createdAt\": \"2023-10-04T23:15:48.137Z\",\r\n    \"updatedAt\": \"2023-12-04T16:07:32.563Z\",\r\n    \"parentId\": null,\r\n    \"parent\": null\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base}}/location/{{locationId}}","urlObject":{"path":["location","{{locationId}}"],"host":["{{base}}"],"query":[],"variable":[]}},"response":[{"id":"06fe7664-ddfe-4bd6-9255-794d79c90699","name":"Full params","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"businessId\": \"{{businessId}}\",\r\n    \"name\": \"Ladson\",\r\n    \"description\": \"Dorchester county warehouse\",\r\n    \"address\": \"1234 Dorchester Road, Ladson SC\",\r\n    \"active\": true,\r\n    \"site\": null,\r\n    \"readonly\": null,\r\n    \"path\": \".291.\",\r\n    \"notes\": [],\r\n    \"tags\": [],\r\n    \"createdAt\": \"2024-08-16T00:33:01.742Z\",\r\n    \"updatedAt\": \"2024-08-16T01:18:15.063Z\",\r\n    \"parentId\": null\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base}}/location/1"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 291,\n    \"name\": \"Ladson\",\n    \"description\": \"Dorchester county warehouse\",\n    \"address\": \"1234 Dorchester Road, Ladson SC\",\n    \"active\": true,\n    \"site\": null,\n    \"readonly\": null,\n    \"path\": \".291.\",\n    \"businessId\": \"K5jrN7LSJ7\",\n    \"notes\": [],\n    \"tags\": [],\n    \"createdAt\": \"2024-08-16T00:33:01.742Z\",\n    \"updatedAt\": \"2024-08-16T01:18:15.063Z\",\n    \"parentId\": null\n}"}],"_postman_id":"23bf2987-a65d-4f26-bdbc-dda6479b9f90"},{"name":"Delete Location","event":[{"id":"8e11c6f5-42ee-4da8-bae8-52bd25fd3f42","listen":"test","script":{"id":"538c5995-3578-473c-8c88-d82bb4433fd7","exec":["pm.test('Status code is 200', function () {\r","    pm.response.to.have.status(200);\r","})"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"7272d84f-e90b-4a44-8fc8-90089e37d125","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"replaceWithFloPayUser"},{"key":"password","value":"replaceWithFloPayPassword"}]},"isInherited":false},"method":"DELETE","header":[],"url":"{{base}}/location/{{locationId}}","urlObject":{"path":["location","{{locationId}}"],"host":["{{base}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"7272d84f-e90b-4a44-8fc8-90089e37d125"}],"id":"14a0619c-b434-4f21-af70-87c24b1039d2","description":"<p>Locations are used to track the physical location of Inventory type items. At least one location is required and each Inventory type item must have a default location assigned.</p>\n","_postman_id":"14a0619c-b434-4f21-af70-87c24b1039d2"},{"name":"Inventory","item":[{"name":"Get Inventory","id":"8fa2ea87-22cf-4c1f-b8b3-d0b182f4c6a4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"replaceWithFloPayUser"},{"key":"password","value":"replaceWithFloPayPassword"}]},"isInherited":false},"method":"GET","header":[],"url":"{{base}}/inventory?limit=10&offset=0","urlObject":{"path":["inventory"],"host":["{{base}}"],"query":[{"key":"limit","value":"10"},{"key":"offset","value":"0"}],"variable":[]}},"response":[{"id":"f0a1c542-a8b2-4a42-b39d-af8a5705eaea","name":"Get Inventory","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{base}}/inventory?limit=2&offset=0&sort=-updatedAt&startDate=1999-11-16T07%3A00%3A00.000Z&endDate=2050-11-17T06%3A59%3A59.999Z","host":["{{base}}"],"path":["inventory"],"query":[{"key":"limit","value":"2"},{"key":"offset","value":"0"},{"key":"sort","value":"-updatedAt"},{"key":"startDate","value":"1999-11-16T07%3A00%3A00.000Z"},{"key":"endDate","value":"2050-11-17T06%3A59%3A59.999Z"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 16 Jan 2024 22:12:30 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"3340"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"55fc4b78-7c87-49ee-9c5b-ae99e3f188e3"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"x-amz-apigw-id","value":"RpzUDHwUoAMEk6A="},{"key":"X-Amzn-Trace-Id","value":"Root=1-65a6ff4c-01f22fff7d7fd42f4100b776;Sampled=0;lineage=2a121c2a:0|9696e97c:0"},{"key":"Access-Control-Allow-Credentials","value":"true"}],"cookie":[],"responseTime":null,"body":"{\n    \"offset\": 0,\n    \"limit\": 2,\n    \"rows\": [\n        {\n            \"id\": 101,\n            \"quantity\": \"0\",\n            \"uom\": \"EA\",\n            \"businessId\": \"HRldk0Rjhj\",\n            \"trackingData\": null,\n            \"hookRef\": null,\n            \"createdAt\": \"2023-12-28T05:05:57.135Z\",\n            \"updatedAt\": \"2023-12-28T05:07:23.914Z\",\n            \"locationId\": 43,\n            \"partId\": 2649,\n            \"vendorId\": null,\n            \"customerId\": null,\n            \"location\": {\n                \"id\": 43,\n                \"name\": \"B1B2\",\n                \"description\": null,\n                \"address\": null,\n                \"active\": true,\n                \"site\": null,\n                \"readonly\": null,\n                \"path\": \".43.\",\n                \"businessId\": \"HRldk0Rjhj\",\n                \"notes\": [],\n                \"tags\": [],\n                \"createdAt\": \"2023-12-28T05:05:21.420Z\",\n                \"updatedAt\": \"2023-12-28T05:05:21.505Z\",\n                \"parentId\": null,\n                \"parent\": null\n            },\n            \"part\": {\n                \"id\": 2649,\n                \"number\": \"IA100\",\n                \"ref\": null,\n                \"hookRef\": null,\n                \"incomeAccountId\": null,\n                \"inventoryAccountId\": null,\n                \"expenseAccountId\": null,\n                \"description\": \"Inventory Item\",\n                \"stockLevel\": \"100\",\n                \"cost\": \"300\",\n                \"price\": \"200\",\n                \"type\": \"Inventory\",\n                \"taxable\": true,\n                \"trackingType\": [],\n                \"active\": true,\n                \"businessId\": \"HRldk0Rjhj\",\n                \"defaultLocationId\": 43,\n                \"notes\": [],\n                \"tags\": [],\n                \"uoms\": [\n                    {\n                        \"name\": \"EA\",\n                        \"conversion\": 1\n                    }\n                ],\n                \"createdAt\": \"2023-12-28T05:05:57.059Z\",\n                \"updatedAt\": \"2023-12-28T05:05:57.059Z\",\n                \"defaultLocation\": {\n                    \"id\": 43,\n                    \"name\": \"B1B2\",\n                    \"description\": null,\n                    \"address\": null,\n                    \"active\": true,\n                    \"site\": null,\n                    \"readonly\": null,\n                    \"path\": \".43.\",\n                    \"businessId\": \"HRldk0Rjhj\",\n                    \"notes\": [],\n                    \"tags\": [],\n                    \"createdAt\": \"2023-12-28T05:05:21.420Z\",\n                    \"updatedAt\": \"2023-12-28T05:05:21.505Z\",\n                    \"parentId\": null,\n                    \"parent\": null\n                },\n                \"expenseAccount\": null,\n                \"incomeAccount\": null,\n                \"inventoryAccount\": null\n            },\n            \"vendor\": null,\n            \"customer\": null\n        },\n        {\n            \"id\": 100,\n            \"quantity\": \"25\",\n            \"uom\": \"EA\",\n            \"businessId\": \"FD8fkrKYSW\",\n            \"trackingData\": null,\n            \"hookRef\": null,\n            \"createdAt\": \"2023-12-17T23:18:46.019Z\",\n            \"updatedAt\": \"2023-12-23T04:07:38.633Z\",\n            \"locationId\": 1,\n            \"partId\": 2647,\n            \"vendorId\": null,\n            \"customerId\": null,\n            \"location\": {\n                \"id\": 1,\n                \"name\": \"Warehouse\",\n                \"description\": \"Medium Warehouse \",\n                \"address\": \"1010 East State Street, Orem, Ut, 84605\",\n                \"active\": true,\n                \"site\": true,\n                \"readonly\": null,\n                \"path\": \".20.\",\n                \"businessId\": \"4tsYEMs7z3\",\n                \"notes\": [],\n                \"tags\": [],\n                \"createdAt\": \"2023-10-04T23:15:48.137Z\",\n                \"updatedAt\": \"2023-12-04T16:09:56.131Z\",\n                \"parentId\": null,\n                \"parent\": null\n            },\n            \"part\": {\n                \"id\": 2647,\n                \"number\": \"Bic Pen 1818\",\n                \"ref\": \"19\",\n                \"hookRef\": null,\n                \"incomeAccountId\": 79,\n                \"inventoryAccountId\": null,\n                \"expenseAccountId\": 80,\n                \"description\": \"Great Pen for Writing\",\n                \"stockLevel\": \"200\",\n                \"cost\": \"4\",\n                \"price\": \"500\",\n                \"type\": \"Inventory\",\n                \"taxable\": true,\n                \"trackingType\": [],\n                \"active\": true,\n                \"businessId\": \"FD8fkrKYSW\",\n                \"defaultLocationId\": 1,\n                \"notes\": [],\n                \"tags\": [],\n                \"uoms\": [\n                    {\n                        \"name\": \"EA\",\n                        \"conversion\": 1\n                    }\n                ],\n                \"createdAt\": \"2023-12-17T23:18:45.961Z\",\n                \"updatedAt\": \"2023-12-17T23:18:45.961Z\",\n                \"defaultLocation\": {\n                    \"id\": 1,\n                    \"name\": \"Warehouse\",\n                    \"description\": \"Medium Warehouse \",\n                    \"address\": \"1010 East State Street, Orem, Ut, 84605\",\n                    \"active\": true,\n                    \"site\": true,\n                    \"readonly\": null,\n                    \"path\": \".20.\",\n                    \"businessId\": \"4tsYEMs7z3\",\n                    \"notes\": [],\n                    \"tags\": [],\n                    \"createdAt\": \"2023-10-04T23:15:48.137Z\",\n                    \"updatedAt\": \"2023-12-04T16:09:56.131Z\",\n                    \"parentId\": null,\n                    \"parent\": null\n                },\n                \"expenseAccount\": {\n                    \"id\": 80,\n                    \"name\": \"Arizona Dept. of Revenue Payable\",\n                    \"businessId\": \"4tsYEMs7z3\",\n                    \"subAccount\": false,\n                    \"accountType\": \"Other Current Liability\",\n                    \"active\": true,\n                    \"ref\": \"89\",\n                    \"createdAt\": \"2023-11-30T07:37:46.214Z\",\n                    \"updatedAt\": \"2023-11-30T07:37:46.214Z\"\n                },\n                \"incomeAccount\": {\n                    \"id\": 79,\n                    \"name\": \"Commissions & fees\",\n                    \"businessId\": \"4tsYEMs7z3\",\n                    \"subAccount\": false,\n                    \"accountType\": \"Expense\",\n                    \"active\": true,\n                    \"ref\": \"9\",\n                    \"createdAt\": \"2023-11-30T07:37:46.208Z\",\n                    \"updatedAt\": \"2023-11-30T07:37:46.208Z\"\n                },\n                \"inventoryAccount\": null\n            },\n            \"vendor\": null,\n            \"customer\": null\n        }\n    ],\n    \"hasMore\": true\n}"}],"_postman_id":"8fa2ea87-22cf-4c1f-b8b3-d0b182f4c6a4"}],"id":"c5531acc-d57c-43fe-baa2-fe0a388084ba","_postman_id":"c5531acc-d57c-43fe-baa2-fe0a388084ba","description":""},{"name":"Customers","item":[{"name":"Create Customer","event":[{"listen":"test","script":{"id":"3c5680c3-4db9-44ea-86c3-2312bea3e887","exec":["pm.test('Status code is 200', function () {\r","    pm.response.to.have.status(200);\r","})\r","var jsonData = pm.response.json();\r","pm.environment.set(\"customerId\", jsonData.id);"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"fd6776ce-d9a0-41b8-b4c5-15099808702b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"replaceWithFloPayUser"},{"key":"password","value":"replaceWithFloPayPassword"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"businessId\": \"{{businessId}}\",\r\n    \"name\": \"Jackie Lor\",\r\n    \"contacts\": [\r\n        {\r\n            \"type\": \"mobile\",\r\n            \"number\": \"+14567824564\"\r\n        },\r\n        {\r\n            \"type\": \"email\",\r\n            \"address\": \"hunterlor@gmail.com\"\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base}}/customer","urlObject":{"path":["customer"],"host":["{{base}}"],"query":[],"variable":[]}},"response":[{"id":"0fa9f05e-fb78-40c7-8bf6-62315655f52e","name":"Required params only","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"businessId\": \"{{businessId}}\",\r\n    \"name\": \"Jackie Lor\",\r\n    \"contacts\": [\r\n        {\r\n            \"type\": \"mobile\",\r\n            \"number\": \"+14567824564\"\r\n        },\r\n        {\r\n            \"type\": \"email\",\r\n            \"address\": \"hunterlor@gmail.com\"\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base}}/customer"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"active\": true,\n    \"optIn\": true,\n    \"cards\": [],\n    \"notes\": [],\n    \"tags\": [],\n    \"id\": 65,\n    \"businessId\": \"K5jrN7LSJ7\",\n    \"name\": \"Jackie Lor\",\n    \"contacts\": [\n        {\n            \"type\": \"mobile\",\n            \"number\": \"+14567824564\"\n        },\n        {\n            \"type\": \"email\",\n            \"address\": \"hunterlor@gmail.com\"\n        }\n    ],\n    \"taxRate\": {\n        \"ref\": \"\",\n        \"name\": \"Sales Tax\",\n        \"rate\": 0.05,\n        \"agency\": \"Tax Agency\",\n        \"isDefault\": true\n    },\n    \"updatedAt\": \"2024-08-16T00:35:18.770Z\",\n    \"createdAt\": \"2024-08-16T00:35:18.770Z\",\n    \"hookRef\": null,\n    \"ref\": null,\n    \"terms\": null,\n    \"companyName\": null\n}"},{"id":"40c6df49-46e8-44e0-bbf7-e40783059fbd","name":"Full params","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"businessId\": \"{{businessId}}\",\r\n    \"active\": true,\r\n    \"optIn\": true,\r\n    \"cards\": [],\r\n    \"notes\": [],\r\n    \"tags\": [],\r\n    \"name\": \"Linda Robledo\",\r\n    \"contacts\": [\r\n        {\r\n            \"type\": \"phone\",\r\n            \"number\": \"+13852164401\"\r\n        },\r\n        {\r\n            \"type\": \"mobile\",\r\n            \"number\": \"+13852164401\"\r\n        },\r\n        {\r\n            \"type\": \"email\",\r\n            \"address\": \"linda@asdf.com\"\r\n        },\r\n        {\r\n            \"city\": \"American Fork\",\r\n            \"type\": \"billToAddress\",\r\n            \"state\": \"UT\",\r\n            \"street\": \"574 S 420 E\",\r\n            \"postalCode\": \"84003\",\r\n            \"countryCode\": \"US\"\r\n        },\r\n        {\r\n            \"city\": \"American Fork\",\r\n            \"type\": \"shipToAddress\",\r\n            \"state\": \"UT\",\r\n            \"street\": \"574 S 420 E\",\r\n            \"postalCode\": \"84003\",\r\n            \"countryCode\": \"US\"\r\n        }\r\n    ],\r\n    \"companyName\": \"rob\",\r\n    \"taxRate\": {\r\n        \"ref\": \"\",\r\n        \"name\": \"Sales Tax\",\r\n        \"rate\": 0.05,\r\n        \"agency\": \"Tax Agency\",\r\n        \"isDefault\": true\r\n    },\r\n    \"ref\": null,\r\n    \"terms\": null\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base}}/customer"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"id\": 50,\n    \"active\": true,\n    \"hookRef\": null,\n    \"optIn\": true,\n    \"cards\": [],\n    \"ref\": null,\n    \"name\": \"Linda Robledo\",\n    \"terms\": null,\n    \"companyName\": \"rob\",\n    \"taxRate\": {\n        \"ref\": \"\",\n        \"name\": \"Sales Tax\",\n        \"rate\": 0.05,\n        \"agency\": \"Tax Agency\",\n        \"isDefault\": true\n    },\n    \"businessId\": \"K5jrN7LSJ7\",\n    \"contacts\": [\n        {\n            \"type\": \"phone\",\n            \"number\": \"+13852164401\"\n        },\n        {\n            \"type\": \"mobile\",\n            \"number\": \"+13852164401\"\n        },\n        {\n            \"type\": \"email\",\n            \"address\": \"linda@asdf.com\"\n        },\n        {\n            \"city\": \"American Fork\",\n            \"type\": \"billToAddress\",\n            \"state\": \"UT\",\n            \"street\": \"574 S 420 E\",\n            \"postalCode\": \"84003\",\n            \"countryCode\": \"US\"\n        },\n        {\n            \"city\": \"American Fork\",\n            \"type\": \"shipToAddress\",\n            \"state\": \"UT\",\n            \"street\": \"574 S 420 E\",\n            \"postalCode\": \"84003\",\n            \"countryCode\": \"US\"\n        }\n    ],\n    \"notes\": [],\n    \"tags\": [],\n    \"createdAt\": \"2024-08-15T21:56:53.361Z\",\n    \"updatedAt\": \"2024-08-16T00:45:54.771Z\"\n}"}],"_postman_id":"fd6776ce-d9a0-41b8-b4c5-15099808702b"},{"name":"Get Customers","event":[{"listen":"test","script":{"id":"961b2cd6-34b6-4579-bb6b-ff3534ac128d","exec":["pm.test('Status code is 200', function () {\r","    pm.response.to.have.status(200);\r","})"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"0c12c741-40ca-4892-a21a-2c5702cbda6c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"replaceWithFloPayUser"},{"key":"password","value":"replaceWithFloPayPassword"}]},"isInherited":false},"method":"GET","header":[],"url":"{{base}}/customer","urlObject":{"path":["customer"],"host":["{{base}}"],"query":[{"disabled":true,"key":"limit","value":"20"},{"disabled":true,"key":"offset","value":"11"},{"disabled":true,"key":"sort","value":"-updatedAt"},{"disabled":true,"key":"startDate","value":"1999-01-01"},{"disabled":true,"key":"endDate","value":"2050-01-01"}],"variable":[]}},"response":[{"id":"8294b28a-730b-427b-8856-c4c25d0a85b3","name":"Default filters","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{base}}/customer","host":["{{base}}"],"path":["customer"],"query":[{"key":"limit","value":"20","disabled":true},{"key":"offset","value":"11","disabled":true},{"key":"sort","value":"-updatedAt","disabled":true},{"key":"startDate","value":"1999-01-01","disabled":true},{"key":"endDate","value":"2050-01-01","disabled":true}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"offset\": 0,\n    \"limit\": 10,\n    \"rows\": [\n        {\n            \"id\": 66,\n            \"active\": true,\n            \"hookRef\": null,\n            \"optIn\": true,\n            \"cards\": [],\n            \"ref\": null,\n            \"name\": \"Linda Robledo\",\n            \"terms\": null,\n            \"companyName\": \"rob\",\n            \"taxRate\": {\n                \"ref\": \"\",\n                \"name\": \"Sales Tax\",\n                \"rate\": 0.05,\n                \"agency\": \"Tax Agency\",\n                \"isDefault\": true\n            },\n            \"businessId\": \"K5jrN7LSJ7\",\n            \"contacts\": [\n                {\n                    \"type\": \"phone\",\n                    \"number\": \"+13852164401\"\n                },\n                {\n                    \"type\": \"mobile\",\n                    \"number\": \"+13852164401\"\n                },\n                {\n                    \"type\": \"email\",\n                    \"address\": \"linda@asdf.com\"\n                },\n                {\n                    \"city\": \"American Fork\",\n                    \"type\": \"billToAddress\",\n                    \"state\": \"UT\",\n                    \"street\": \"574 S 420 E\",\n                    \"postalCode\": \"84003\",\n                    \"countryCode\": \"US\"\n                },\n                {\n                    \"city\": \"American Fork\",\n                    \"type\": \"shipToAddress\",\n                    \"state\": \"UT\",\n                    \"street\": \"574 S 420 E\",\n                    \"postalCode\": \"84003\",\n                    \"countryCode\": \"US\"\n                }\n            ],\n            \"notes\": [],\n            \"tags\": [],\n            \"createdAt\": \"2024-08-15T23:57:38.872Z\",\n            \"updatedAt\": \"2024-08-16T00:35:31.118Z\"\n        },\n        {\n            \"id\": 65,\n            \"active\": true,\n            \"hookRef\": null,\n            \"optIn\": true,\n            \"cards\": [],\n            \"ref\": null,\n            \"name\": \"Jackie Lor\",\n            \"terms\": null,\n            \"companyName\": null,\n            \"taxRate\": {\n                \"ref\": \"\",\n                \"name\": \"Sales Tax\",\n                \"rate\": 0.05,\n                \"agency\": \"Tax Agency\",\n                \"isDefault\": true\n            },\n            \"businessId\": \"K5jrN7LSJ7\",\n            \"contacts\": [\n                {\n                    \"type\": \"mobile\",\n                    \"number\": \"+14567824564\"\n                },\n                {\n                    \"type\": \"email\",\n                    \"address\": \"hunterlor@gmail.com\"\n                }\n            ],\n            \"notes\": [],\n            \"tags\": [],\n            \"createdAt\": \"2024-08-16T00:35:18.770Z\",\n            \"updatedAt\": \"2024-08-16T00:35:18.770Z\"\n        },\n        {\n            \"id\": 64,\n            \"active\": true,\n            \"hookRef\": null,\n            \"optIn\": true,\n            \"cards\": [],\n            \"ref\": null,\n            \"name\": \"Jackie Lor\",\n            \"terms\": null,\n            \"companyName\": null,\n            \"taxRate\": {\n                \"ref\": \"\",\n                \"name\": \"Sales Tax\",\n                \"rate\": 0.05,\n                \"agency\": \"Tax Agency\",\n                \"isDefault\": true\n            },\n            \"businessId\": \"K5jrN7LSJ7\",\n            \"contacts\": [\n                {\n                    \"type\": \"mobile\",\n                    \"number\": \"+14567824564\"\n                },\n                {\n                    \"type\": \"email\",\n                    \"address\": \"hunterlor@gmail.com\"\n                }\n            ],\n            \"notes\": [],\n            \"tags\": [],\n            \"createdAt\": \"2024-08-16T00:11:31.035Z\",\n            \"updatedAt\": \"2024-08-16T00:11:31.035Z\"\n        },\n        {\n            \"id\": 63,\n            \"active\": true,\n            \"hookRef\": null,\n            \"optIn\": true,\n            \"cards\": [],\n            \"ref\": null,\n            \"name\": \"Jackie Lor\",\n            \"terms\": null,\n            \"companyName\": null,\n            \"taxRate\": {\n                \"ref\": \"\",\n                \"name\": \"Sales Tax\",\n                \"rate\": 0.05,\n                \"agency\": \"Tax Agency\",\n                \"isDefault\": true\n            },\n            \"businessId\": \"K5jrN7LSJ7\",\n            \"contacts\": [\n                {\n                    \"type\": \"mobile\",\n                    \"number\": \"+14567824564\"\n                },\n                {\n                    \"type\": \"email\",\n                    \"address\": \"hunterlor@gmail.com\"\n                }\n            ],\n            \"notes\": [],\n            \"tags\": [],\n            \"createdAt\": \"2024-08-16T00:08:35.605Z\",\n            \"updatedAt\": \"2024-08-16T00:08:35.605Z\"\n        },\n        {\n            \"id\": 62,\n            \"active\": true,\n            \"hookRef\": null,\n            \"optIn\": true,\n            \"cards\": [],\n            \"ref\": null,\n            \"name\": \"Jackie Lor\",\n            \"terms\": null,\n            \"companyName\": null,\n            \"taxRate\": {\n                \"ref\": \"\",\n                \"name\": \"Sales Tax\",\n                \"rate\": 0.05,\n                \"agency\": \"Tax Agency\",\n                \"isDefault\": true\n            },\n            \"businessId\": \"K5jrN7LSJ7\",\n            \"contacts\": [\n                {\n                    \"type\": \"mobile\",\n                    \"number\": \"+14567824564\"\n                },\n                {\n                    \"type\": \"email\",\n                    \"address\": \"hunterlor@gmail.com\"\n                }\n            ],\n            \"notes\": [],\n            \"tags\": [],\n            \"createdAt\": \"2024-08-16T00:08:19.188Z\",\n            \"updatedAt\": \"2024-08-16T00:08:19.188Z\"\n        },\n        {\n            \"id\": 61,\n            \"active\": true,\n            \"hookRef\": null,\n            \"optIn\": true,\n            \"cards\": [],\n            \"ref\": null,\n            \"name\": \"Jackie Lor\",\n            \"terms\": null,\n            \"companyName\": null,\n            \"taxRate\": {\n                \"ref\": \"\",\n                \"name\": \"Sales Tax\",\n                \"rate\": 0.05,\n                \"agency\": \"Tax Agency\",\n                \"isDefault\": true\n            },\n            \"businessId\": \"K5jrN7LSJ7\",\n            \"contacts\": [\n                {\n                    \"type\": \"mobile\",\n                    \"number\": \"+14567824564\"\n                },\n                {\n                    \"type\": \"email\",\n                    \"address\": \"hunterlor@gmail.com\"\n                }\n            ],\n            \"notes\": [],\n            \"tags\": [],\n            \"createdAt\": \"2024-08-16T00:07:17.225Z\",\n            \"updatedAt\": \"2024-08-16T00:07:17.225Z\"\n        },\n        {\n            \"id\": 60,\n            \"active\": true,\n            \"hookRef\": null,\n            \"optIn\": true,\n            \"cards\": [],\n            \"ref\": null,\n            \"name\": \"Jackie Lor\",\n            \"terms\": null,\n            \"companyName\": null,\n            \"taxRate\": {\n                \"ref\": \"\",\n                \"name\": \"Sales Tax\",\n                \"rate\": 0.05,\n                \"agency\": \"Tax Agency\",\n                \"isDefault\": true\n            },\n            \"businessId\": \"K5jrN7LSJ7\",\n            \"contacts\": [\n                {\n                    \"type\": \"mobile\",\n                    \"number\": \"+14567824564\"\n                },\n                {\n                    \"type\": \"email\",\n                    \"address\": \"hunterlor@gmail.com\"\n                }\n            ],\n            \"notes\": [],\n            \"tags\": [],\n            \"createdAt\": \"2024-08-16T00:06:45.683Z\",\n            \"updatedAt\": \"2024-08-16T00:06:45.683Z\"\n        },\n        {\n            \"id\": 59,\n            \"active\": true,\n            \"hookRef\": null,\n            \"optIn\": true,\n            \"cards\": [],\n            \"ref\": null,\n            \"name\": \"Linda Robledo\",\n            \"terms\": null,\n            \"companyName\": \"rob\",\n            \"taxRate\": {\n                \"ref\": \"\",\n                \"name\": \"Sales Tax\",\n                \"rate\": 0.05,\n                \"agency\": \"Tax Agency\",\n                \"isDefault\": true\n            },\n            \"businessId\": \"K5jrN7LSJ7\",\n            \"contacts\": [\n                {\n                    \"type\": \"phone\",\n                    \"number\": \"+13852164401\"\n                },\n                {\n                    \"type\": \"mobile\",\n                    \"number\": \"+13852164401\"\n                },\n                {\n                    \"type\": \"email\",\n                    \"address\": \"linda@asdf.com\"\n                },\n                {\n                    \"city\": \"American Fork\",\n                    \"type\": \"billToAddress\",\n                    \"state\": \"UT\",\n                    \"street\": \"574 S 420 E\",\n                    \"postalCode\": \"84003\",\n                    \"countryCode\": \"US\"\n                },\n                {\n                    \"city\": \"American Fork\",\n                    \"type\": \"shipToAddress\",\n                    \"state\": \"UT\",\n                    \"street\": \"574 S 420 E\",\n                    \"postalCode\": \"84003\",\n                    \"countryCode\": \"US\"\n                }\n            ],\n            \"notes\": [],\n            \"tags\": [],\n            \"createdAt\": \"2024-08-15T23:57:38.872Z\",\n            \"updatedAt\": \"2024-08-15T23:58:02.053Z\"\n        },\n        {\n            \"id\": 58,\n            \"active\": true,\n            \"hookRef\": null,\n            \"optIn\": true,\n            \"cards\": [],\n            \"ref\": null,\n            \"name\": \"Linda Robledo\",\n            \"terms\": null,\n            \"companyName\": \"rob\",\n            \"taxRate\": {\n                \"ref\": \"\",\n                \"name\": \"Sales Tax\",\n                \"rate\": 0.05,\n                \"agency\": \"Tax Agency\",\n                \"isDefault\": true\n            },\n            \"businessId\": \"K5jrN7LSJ7\",\n            \"contacts\": [\n                {\n                    \"type\": \"phone\",\n                    \"number\": \"+13852164401\"\n                },\n                {\n                    \"type\": \"mobile\",\n                    \"number\": \"+13852164401\"\n                },\n                {\n                    \"type\": \"email\",\n                    \"address\": \"linda@asdf.com\"\n                },\n                {\n                    \"city\": \"American Fork\",\n                    \"type\": \"billToAddress\",\n                    \"state\": \"UT\",\n                    \"street\": \"574 S 420 E\",\n                    \"postalCode\": \"84003\",\n                    \"countryCode\": \"US\"\n                },\n                {\n                    \"city\": \"American Fork\",\n                    \"type\": \"shipToAddress\",\n                    \"state\": \"UT\",\n                    \"street\": \"574 S 420 E\",\n                    \"postalCode\": \"84003\",\n                    \"countryCode\": \"US\"\n                }\n            ],\n            \"notes\": [],\n            \"tags\": [],\n            \"createdAt\": \"2024-08-15T23:57:38.872Z\",\n            \"updatedAt\": \"2024-08-15T23:57:38.872Z\"\n        },\n        {\n            \"id\": 57,\n            \"active\": true,\n            \"hookRef\": \"hhhh\",\n            \"optIn\": true,\n            \"cards\": [],\n            \"ref\": null,\n            \"name\": \"Linda Robledo\",\n            \"terms\": null,\n            \"companyName\": \"rob\",\n            \"taxRate\": {\n                \"ref\": \"\",\n                \"name\": \"Sales Tax\",\n                \"rate\": 0.05,\n                \"agency\": \"Tax Agency\",\n                \"isDefault\": true\n            },\n            \"businessId\": \"K5jrN7LSJ7\",\n            \"contacts\": [\n                {\n                    \"type\": \"phone\",\n                    \"number\": \"+13852164401\"\n                },\n                {\n                    \"type\": \"mobile\",\n                    \"number\": \"+13852164401\"\n                },\n                {\n                    \"type\": \"email\",\n                    \"address\": \"linda@asdf.com\"\n                },\n                {\n                    \"city\": \"American Fork\",\n                    \"type\": \"billToAddress\",\n                    \"state\": \"UT\",\n                    \"street\": \"574 S 420 E\",\n                    \"postalCode\": \"84003\",\n                    \"countryCode\": \"US\"\n                },\n                {\n                    \"city\": \"American Fork\",\n                    \"type\": \"shipToAddress\",\n                    \"state\": \"UT\",\n                    \"street\": \"574 S 420 E\",\n                    \"postalCode\": \"84003\",\n                    \"countryCode\": \"US\"\n                }\n            ],\n            \"notes\": [],\n            \"tags\": [],\n            \"createdAt\": \"2024-08-15T23:57:13.393Z\",\n            \"updatedAt\": \"2024-08-15T23:57:13.393Z\"\n        }\n    ],\n    \"hasMore\": true\n}"},{"id":"55002252-35a5-4682-ad6b-2fa56027f90b","name":"Custom filters","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{base}}/customer?limit=20&offset=11&sort=-updatedAt&startDate=1999-01-01&endDate=2050-01-01","host":["{{base}}"],"path":["customer"],"query":[{"key":"limit","value":"20"},{"key":"offset","value":"11"},{"key":"sort","value":"-updatedAt"},{"key":"startDate","value":"1999-01-01"},{"key":"endDate","value":"2050-01-01"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"offset\": 11,\n    \"limit\": 20,\n    \"rows\": [\n        {\n            \"id\": 55,\n            \"active\": true,\n            \"hookRef\": null,\n            \"optIn\": true,\n            \"cards\": [],\n            \"ref\": null,\n            \"name\": \"Linda Lor\",\n            \"terms\": null,\n            \"companyName\": null,\n            \"taxRate\": {\n                \"ref\": \"\",\n                \"name\": \"Sales Tax\",\n                \"rate\": 0.05,\n                \"agency\": \"Tax Agency\",\n                \"isDefault\": true\n            },\n            \"businessId\": \"K5jrN7LSJ7\",\n            \"contacts\": [],\n            \"notes\": [],\n            \"tags\": [],\n            \"createdAt\": \"2024-08-15T23:54:39.375Z\",\n            \"updatedAt\": \"2024-08-15T23:54:39.375Z\"\n        },\n        {\n            \"id\": 54,\n            \"active\": true,\n            \"hookRef\": null,\n            \"optIn\": true,\n            \"cards\": [],\n            \"ref\": null,\n            \"name\": \"Jackie Lor\",\n            \"terms\": null,\n            \"companyName\": null,\n            \"taxRate\": {\n                \"ref\": \"\",\n                \"name\": \"Sales Tax\",\n                \"rate\": 0.05,\n                \"agency\": \"Tax Agency\",\n                \"isDefault\": true\n            },\n            \"businessId\": \"K5jrN7LSJ7\",\n            \"contacts\": [],\n            \"notes\": [],\n            \"tags\": [],\n            \"createdAt\": \"2024-08-15T23:51:33.589Z\",\n            \"updatedAt\": \"2024-08-15T23:51:33.589Z\"\n        },\n        {\n            \"id\": 53,\n            \"active\": true,\n            \"hookRef\": null,\n            \"optIn\": true,\n            \"cards\": [],\n            \"ref\": null,\n            \"name\": \"Jackie Lor\",\n            \"terms\": null,\n            \"companyName\": null,\n            \"taxRate\": {\n                \"ref\": \"\",\n                \"name\": \"Sales Tax\",\n                \"rate\": 0.05,\n                \"agency\": \"Tax Agency\",\n                \"isDefault\": true\n            },\n            \"businessId\": \"K5jrN7LSJ7\",\n            \"contacts\": [\n                {\n                    \"type\": \"phone\",\n                    \"number\": \"+14567824564\"\n                },\n                {\n                    \"type\": \"mobile\",\n                    \"number\": \"+14567824564\"\n                },\n                {\n                    \"type\": \"email\",\n                    \"address\": \"hunterlor@gmail.com\"\n                },\n                {\n                    \"city\": \"Sin City \",\n                    \"type\": \"billToAddress\",\n                    \"state\": \"NV\",\n                    \"street\": \"124 Capaculli Way\",\n                    \"postalCode\": \"89004\",\n                    \"countryCode\": \"US\"\n                },\n                {\n                    \"city\": \"Sin City\",\n                    \"type\": \"shipToAddress\",\n                    \"state\": \"NV\",\n                    \"street\": \"124 Capaculli Way\",\n                    \"postalCode\": \"89004\",\n                    \"countryCode\": \"US\"\n                }\n            ],\n            \"notes\": [],\n            \"tags\": [],\n            \"createdAt\": \"2024-08-15T23:50:15.940Z\",\n            \"updatedAt\": \"2024-08-15T23:50:15.940Z\"\n        },\n        {\n            \"id\": 50,\n            \"active\": true,\n            \"hookRef\": null,\n            \"optIn\": true,\n            \"cards\": [],\n            \"ref\": null,\n            \"name\": \"Megan Lor\",\n            \"terms\": null,\n            \"companyName\": null,\n            \"taxRate\": {\n                \"ref\": \"\",\n                \"name\": \"Sales Tax\",\n                \"rate\": 0.05,\n                \"agency\": \"Tax Agency\",\n                \"isDefault\": true\n            },\n            \"businessId\": \"K5jrN7LSJ7\",\n            \"contacts\": [\n                {\n                    \"type\": \"phone\",\n                    \"number\": \"+14567821234\"\n                },\n                {\n                    \"type\": \"mobile\",\n                    \"number\": \"+14567821234\"\n                },\n                {\n                    \"type\": \"email\",\n                    \"address\": \"meganlor@gmail.com\"\n                },\n                {\n                    \"city\": \"Sin City \",\n                    \"type\": \"billToAddress\",\n                    \"state\": \"NV\",\n                    \"street\": \"124 Capaculli Way\",\n                    \"postalCode\": \"89004\",\n                    \"countryCode\": \"US\"\n                },\n                {\n                    \"city\": \"Sin City\",\n                    \"type\": \"shipToAddress\",\n                    \"state\": \"NV\",\n                    \"street\": \"124 Capaculli Way\",\n                    \"postalCode\": \"89004\",\n                    \"countryCode\": \"US\"\n                }\n            ],\n            \"notes\": [],\n            \"tags\": [],\n            \"createdAt\": \"2024-08-15T21:56:53.361Z\",\n            \"updatedAt\": \"2024-08-15T23:48:51.105Z\"\n        },\n        {\n            \"id\": 52,\n            \"active\": true,\n            \"hookRef\": null,\n            \"optIn\": true,\n            \"cards\": [],\n            \"ref\": null,\n            \"name\": \"Jackie Lor\",\n            \"terms\": null,\n            \"companyName\": null,\n            \"taxRate\": {\n                \"ref\": \"\",\n                \"name\": \"Sales Tax\",\n                \"rate\": 0.05,\n                \"agency\": \"Tax Agency\",\n                \"isDefault\": true\n            },\n            \"businessId\": \"K5jrN7LSJ7\",\n            \"contacts\": [\n                {\n                    \"type\": \"phone\",\n                    \"number\": \"+14567824564\"\n                },\n                {\n                    \"type\": \"mobile\",\n                    \"number\": \"+14567824564\"\n                },\n                {\n                    \"type\": \"email\",\n                    \"address\": \"hunterlor@gmail.com\"\n                },\n                {\n                    \"city\": \"Sin City \",\n                    \"type\": \"billToAddress\",\n                    \"state\": \"NV\",\n                    \"street\": \"124 Capaculli Way\",\n                    \"postalCode\": \"89004\",\n                    \"countryCode\": \"US\"\n                },\n                {\n                    \"city\": \"Sin City\",\n                    \"type\": \"shipToAddress\",\n                    \"state\": \"NV\",\n                    \"street\": \"124 Capaculli Way\",\n                    \"postalCode\": \"89004\",\n                    \"countryCode\": \"US\"\n                }\n            ],\n            \"notes\": [],\n            \"tags\": [],\n            \"createdAt\": \"2024-08-15T23:48:08.698Z\",\n            \"updatedAt\": \"2024-08-15T23:48:08.698Z\"\n        },\n        {\n            \"id\": 51,\n            \"active\": true,\n            \"hookRef\": null,\n            \"optIn\": true,\n            \"cards\": [],\n            \"ref\": null,\n            \"name\": \"Jackie Lor\",\n            \"terms\": null,\n            \"companyName\": null,\n            \"taxRate\": {\n                \"ref\": \"\",\n                \"name\": \"Sales Tax\",\n                \"rate\": 0.05,\n                \"agency\": \"Tax Agency\",\n                \"isDefault\": true\n            },\n            \"businessId\": \"K5jrN7LSJ7\",\n            \"contacts\": [\n                {\n                    \"type\": \"phone\",\n                    \"number\": \"+14567824564\"\n                },\n                {\n                    \"type\": \"mobile\",\n                    \"number\": \"+14567824564\"\n                },\n                {\n                    \"type\": \"email\",\n                    \"address\": \"hunterlor@gmail.com\"\n                },\n                {\n                    \"city\": \"Sin City \",\n                    \"type\": \"billToAddress\",\n                    \"state\": \"NV\",\n                    \"street\": \"124 Capaculli Way\",\n                    \"postalCode\": \"89004\",\n                    \"countryCode\": \"US\"\n                },\n                {\n                    \"city\": \"Sin City\",\n                    \"type\": \"shipToAddress\",\n                    \"state\": \"NV\",\n                    \"street\": \"124 Capaculli Way\",\n                    \"postalCode\": \"89004\",\n                    \"countryCode\": \"US\"\n                }\n            ],\n            \"notes\": [],\n            \"tags\": [],\n            \"createdAt\": \"2024-08-15T23:47:56.896Z\",\n            \"updatedAt\": \"2024-08-15T23:47:56.896Z\"\n        },\n        {\n            \"id\": 49,\n            \"active\": true,\n            \"hookRef\": null,\n            \"optIn\": true,\n            \"cards\": [],\n            \"ref\": null,\n            \"name\": \"Jackie Lor\",\n            \"terms\": null,\n            \"companyName\": null,\n            \"taxRate\": {\n                \"ref\": \"\",\n                \"name\": \"Sales Tax\",\n                \"rate\": 0.05,\n                \"agency\": \"Tax Agency\",\n                \"isDefault\": true\n            },\n            \"businessId\": \"K5jrN7LSJ7\",\n            \"contacts\": [\n                {\n                    \"type\": \"phone\",\n                    \"number\": \"+14567824564\"\n                },\n                {\n                    \"type\": \"mobile\",\n                    \"number\": \"+14567824564\"\n                },\n                {\n                    \"type\": \"email\",\n                    \"address\": \"hunterlor@gmail.com\"\n                },\n                {\n                    \"city\": \"Sin City \",\n                    \"type\": \"billToAddress\",\n                    \"state\": \"NV\",\n                    \"street\": \"124 Capaculli Way\",\n                    \"postalCode\": \"89004\",\n                    \"countryCode\": \"US\"\n                },\n                {\n                    \"city\": \"Sin City\",\n                    \"type\": \"shipToAddress\",\n                    \"state\": \"NV\",\n                    \"street\": \"124 Capaculli Way\",\n                    \"postalCode\": \"89004\",\n                    \"countryCode\": \"US\"\n                }\n            ],\n            \"notes\": [],\n            \"tags\": [],\n            \"createdAt\": \"2024-08-15T16:11:26.743Z\",\n            \"updatedAt\": \"2024-08-15T16:11:26.743Z\"\n        },\n        {\n            \"id\": 48,\n            \"active\": true,\n            \"hookRef\": null,\n            \"optIn\": true,\n            \"cards\": [],\n            \"ref\": null,\n            \"name\": \"Jackie Lor\",\n            \"terms\": null,\n            \"companyName\": null,\n            \"taxRate\": {\n                \"ref\": \"\",\n                \"name\": \"Sales Tax\",\n                \"rate\": 0.05,\n                \"agency\": \"Tax Agency\",\n                \"isDefault\": true\n            },\n            \"businessId\": \"K5jrN7LSJ7\",\n            \"contacts\": [\n                {\n                    \"type\": \"phone\",\n                    \"number\": \"+14567824564\"\n                },\n                {\n                    \"type\": \"mobile\",\n                    \"number\": \"+14567824564\"\n                },\n                {\n                    \"type\": \"email\",\n                    \"address\": \"hunterlor@gmail.com\"\n                },\n                {\n                    \"city\": \"Sin City \",\n                    \"type\": \"billToAddress\",\n                    \"state\": \"NV\",\n                    \"street\": \"124 Capaculli Way\",\n                    \"postalCode\": \"89004\",\n                    \"countryCode\": \"US\"\n                },\n                {\n                    \"city\": \"Sin City\",\n                    \"type\": \"shipToAddress\",\n                    \"state\": \"NV\",\n                    \"street\": \"124 Capaculli Way\",\n                    \"postalCode\": \"89004\",\n                    \"countryCode\": \"US\"\n                }\n            ],\n            \"notes\": [],\n            \"tags\": [],\n            \"createdAt\": \"2024-08-15T16:06:02.972Z\",\n            \"updatedAt\": \"2024-08-15T16:06:02.972Z\"\n        },\n        {\n            \"id\": 47,\n            \"active\": true,\n            \"hookRef\": null,\n            \"optIn\": true,\n            \"cards\": [],\n            \"ref\": null,\n            \"name\": \"Linda Robledo\",\n            \"terms\": null,\n            \"companyName\": \"Robledo\",\n            \"taxRate\": {\n                \"ref\": \"\",\n                \"name\": \"Sales Tax\",\n                \"rate\": 0.05,\n                \"agency\": \"Tax Agency\",\n                \"isDefault\": true\n            },\n            \"businessId\": \"K5jrN7LSJ7\",\n            \"contacts\": [\n                {\n                    \"type\": \"phone\",\n                    \"number\": \"+13852164401\"\n                },\n                {\n                    \"type\": \"mobile\",\n                    \"number\": \"+13852164401\"\n                },\n                {\n                    \"type\": \"email\",\n                    \"address\": \"linda@asdf.com\"\n                },\n                {\n                    \"city\": \"American Fork\",\n                    \"type\": \"billToAddress\",\n                    \"state\": \"UT\",\n                    \"street\": \"574 S 420 E\",\n                    \"postalCode\": \"84003\",\n                    \"countryCode\": \"US\"\n                },\n                {\n                    \"city\": \"American Fork\",\n                    \"type\": \"shipToAddress\",\n                    \"state\": \"UT\",\n                    \"street\": \"574 S 420 E\",\n                    \"postalCode\": \"84003\",\n                    \"countryCode\": \"US\"\n                }\n            ],\n            \"notes\": [],\n            \"tags\": [],\n            \"createdAt\": \"2024-08-15T16:03:11.156Z\",\n            \"updatedAt\": \"2024-08-15T16:03:11.156Z\"\n        },\n        {\n            \"id\": 46,\n            \"active\": true,\n            \"hookRef\": null,\n            \"optIn\": true,\n            \"cards\": [],\n            \"ref\": null,\n            \"name\": \"Linda Robledo\",\n            \"terms\": null,\n            \"companyName\": null,\n            \"taxRate\": {\n                \"ref\": \"\",\n                \"name\": \"Sales Tax\",\n                \"rate\": 0.05,\n                \"agency\": \"Tax Agency\",\n                \"isDefault\": true\n            },\n            \"businessId\": \"K5jrN7LSJ7\",\n            \"contacts\": [\n                {\n                    \"type\": \"phone\",\n                    \"number\": \"+13852164401\"\n                },\n                {\n                    \"type\": \"mobile\",\n                    \"number\": \"+13852164401\"\n                },\n                {\n                    \"type\": \"email\",\n                    \"address\": \"linda@asdf.com\"\n                },\n                {\n                    \"city\": \"American Fork\",\n                    \"type\": \"billToAddress\",\n                    \"state\": \"UT\",\n                    \"street\": \"574 S 420 E\",\n                    \"postalCode\": \"84003\",\n                    \"countryCode\": \"US\"\n                },\n                {\n                    \"city\": \"American Fork\",\n                    \"type\": \"shipToAddress\",\n                    \"state\": \"UT\",\n                    \"street\": \"574 S 420 E\",\n                    \"postalCode\": \"84003\",\n                    \"countryCode\": \"US\"\n                }\n            ],\n            \"notes\": [],\n            \"tags\": [],\n            \"createdAt\": \"2024-08-14T12:03:52.259Z\",\n            \"updatedAt\": \"2024-08-14T12:03:52.259Z\"\n        }\n    ],\n    \"hasMore\": false\n}"}],"_postman_id":"0c12c741-40ca-4892-a21a-2c5702cbda6c"},{"name":"Get Customer","event":[{"listen":"test","script":{"id":"aa66a6d1-5f80-4d80-98fa-6f25eb561082","exec":["pm.test('Status code is 200', function () {\r","    pm.response.to.have.status(200);\r","})"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"a85e5d9c-509c-4350-bdb9-10e549fafc2e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"replaceWithFloPayUser"},{"key":"password","value":"replaceWithFloPayPassword"}]},"isInherited":false},"method":"GET","header":[],"url":"{{base}}/customer/{{customerId}}","urlObject":{"path":["customer","{{customerId}}"],"host":["{{base}}"],"query":[],"variable":[]}},"response":[{"id":"6a466939-6c7e-4a66-8856-ca79b27b4678","name":"Get Customer","originalRequest":{"method":"GET","header":[],"url":"{{base}}/customer/50"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"id\": 50,\n    \"active\": true,\n    \"hookRef\": null,\n    \"optIn\": true,\n    \"cards\": [],\n    \"ref\": null,\n    \"name\": \"Megan Lor\",\n    \"terms\": null,\n    \"companyName\": null,\n    \"taxRate\": {\n        \"ref\": \"\",\n        \"name\": \"Sales Tax\",\n        \"rate\": 0.05,\n        \"agency\": \"Tax Agency\",\n        \"isDefault\": true\n    },\n    \"businessId\": \"K5jrN7LSJ7\",\n    \"contacts\": [\n        {\n            \"type\": \"phone\",\n            \"number\": \"+14567821234\"\n        },\n        {\n            \"type\": \"mobile\",\n            \"number\": \"+14567821234\"\n        },\n        {\n            \"type\": \"email\",\n            \"address\": \"meganlor@gmail.com\"\n        },\n        {\n            \"city\": \"Sin City \",\n            \"type\": \"billToAddress\",\n            \"state\": \"NV\",\n            \"street\": \"124 Capaculli Way\",\n            \"postalCode\": \"89004\",\n            \"countryCode\": \"US\"\n        },\n        {\n            \"city\": \"Sin City\",\n            \"type\": \"shipToAddress\",\n            \"state\": \"NV\",\n            \"street\": \"124 Capaculli Way\",\n            \"postalCode\": \"89004\",\n            \"countryCode\": \"US\"\n        }\n    ],\n    \"notes\": [],\n    \"tags\": [],\n    \"createdAt\": \"2024-08-15T21:56:53.361Z\",\n    \"updatedAt\": \"2024-08-15T23:48:51.105Z\"\n}"}],"_postman_id":"a85e5d9c-509c-4350-bdb9-10e549fafc2e"},{"name":"Update Customer","event":[{"listen":"test","script":{"id":"e3536d48-cd0f-4f63-b6c9-0b6a2f93a556","exec":["pm.test('Status code is 200', function () {\r","    pm.response.to.have.status(200);\r","})"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"12f9d286-a513-4434-9c2a-231bd5042e08","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"replaceWithFloPayUser"},{"key":"password","value":"replaceWithFloPayPassword"}]},"isInherited":false},"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"id\": 87,\r\n    \"active\": true,\r\n    \"optIn\": true,\r\n    \"ref\": null,\r\n    \"name\": \"Megan Lor\",\r\n    \"terms\": null,\r\n    \"companyName\": null,\r\n    \"businessId\": \"{{businessId}}\",\r\n    \"contacts\": [\r\n        {\r\n            \"type\": \"phone\",\r\n            \"number\": \"+14567821234\"\r\n        },\r\n        {\r\n            \"type\": \"mobile\",\r\n            \"number\": \"+14567821234\"\r\n        },\r\n        {\r\n            \"type\": \"email\",\r\n            \"address\": \"meganlor@gmail.com\"\r\n        },\r\n        {\r\n            \"city\": \"Sin City \",\r\n            \"type\": \"billToAddress\",\r\n            \"state\": \"NV\",\r\n            \"street\": \"124 Capaculli Way\",\r\n            \"postalCode\": \"89004\",\r\n            \"countryCode\": \"US\"\r\n        },\r\n        {\r\n            \"city\": \"Sin City\",\r\n            \"type\": \"shipToAddress\",\r\n            \"state\": \"NV\",\r\n            \"street\": \"124 Capaculli Way\",\r\n            \"postalCode\": \"89004\",\r\n            \"countryCode\": \"US\"\r\n        }\r\n    ],\r\n    \"notes\": [],\r\n    \"tags\": [],\r\n    \"taxRate\": {\r\n        \"ref\": \"\",\r\n        \"name\": \"Sales Tax\",\r\n        \"rate\": 0.05,\r\n        \"agency\": \"Tax Agency\",\r\n        \"isDefault\": true\r\n    },\r\n    \"createdAt\": \"2023-12-01T20:49:21.345Z\",\r\n    \"updatedAt\": \"2023-12-01T20:49:21.345Z\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base}}/customer/{{customerId}}","urlObject":{"path":["customer","{{customerId}}"],"host":["{{base}}"],"query":[],"variable":[]}},"response":[{"id":"52ae192c-4c87-473d-ba00-94e3ab739bac","name":"Required params only","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"businessId\": \"{{businessId}}\",\r\n    \"name\": \"Rudy's BBQ\",\r\n    \"taxRate\": {\r\n        \"name\": \"Sales\",\r\n        \"rate\": \"0.07\",\r\n        \"agency\": \"TX Tax Commission\",\r\n        \"isDefault\": true\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base}}/customer/50"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"c99c057e-f079-4ddc-a46a-0c8aa578534c","name":"Full params","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"businessId\": \"{{businessId}}\",\r\n    \"name\": \"Rudy's BBQ\",\r\n    \"taxRate\": {\r\n        \"name\": \"Sales\",\r\n        \"rate\": \"0.07\",\r\n        \"agency\": \"TX Tax Commission\",\r\n        \"isDefault\": true\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base}}/customer/50"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"12f9d286-a513-4434-9c2a-231bd5042e08"},{"name":"Delete Customer","event":[{"listen":"test","script":{"id":"5da58a8b-302e-4c60-9061-a9d372b80ffc","exec":["pm.test('Status code is 200', function () {\r","    pm.response.to.have.status(200);\r","})"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"5ec42487-dd00-4dde-ab40-03e912d161e6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"replaceWithFloPayUser"},{"key":"password","value":"replaceWithFloPayPassword"}]},"isInherited":false},"method":"DELETE","header":[],"url":"{{base}}/customer/{{customerId}}","urlObject":{"path":["customer","{{customerId}}"],"host":["{{base}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"5ec42487-dd00-4dde-ab40-03e912d161e6"}],"id":"112ca271-53f1-42ca-8ba0-1ff899edcad0","description":"<p>A minimum of one valid customer must be created before you can send a payment link. The following fields are required to create a customer:</p>\n<ul>\n<li><p>Customer name</p>\n</li>\n<li><p>Email</p>\n</li>\n<li><p>Mobile phone number</p>\n</li>\n</ul>\n<p>These contacts are used as the primary contact method for sending payment links via email and text message.</p>\n","_postman_id":"112ca271-53f1-42ca-8ba0-1ff899edcad0"},{"name":"Release","item":[{"name":"Create Release","event":[{"listen":"test","script":{"id":"86d5c74e-5381-4144-8ecd-edb7e98cd76c","exec":["pm.test('Status code is 200', function () {\r","    pm.response.to.have.status(200);\r","})\r","\r","var jsonData = pm.response.json();\r","pm.environment.set(\"releaseId\", jsonData.id);"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"06663ba3-d37b-4598-92fb-690da81802f3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"replaceWithFloPayUser"},{"key":"password","value":"replaceWithFloPayPassword"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"releaseItems\": [\n        {\n            \"price\": \"0\",\n            \"description\": null,\n            \"number\": \"56738\",\n            \"uom\": {\n                \"name\": \"EA\",\n                \"conversion\": 1\n            },\n            \"part\": {\n                \"id\": 67,\n                \"number\": \"56738\",\n                \"ref\": null,\n                \"hookRef\": null,\n                \"incomeAccountId\": null,\n                \"inventoryAccountId\": null,\n                \"expenseAccountId\": null,\n                \"description\": null,\n                \"stockLevel\": null,\n                \"cost\": \"0\",\n                \"price\": \"0\",\n                \"type\": \"Inventory\",\n                \"taxable\": true,\n                \"trackingType\": [],\n                \"active\": true,\n                \"businessId\": \"K5jrN7LSJ7\",\n                \"defaultLocationId\": 231,\n                \"notes\": [],\n                \"tags\": [],\n                \"uoms\": [\n                    {\n                        \"name\": \"EA\",\n                        \"conversion\": 1\n                    }\n                ],\n                \"createdAt\": \"2024-08-16T01:59:55.125Z\",\n                \"updatedAt\": \"2024-08-16T01:59:55.125Z\",\n                \"defaultLocation\": {\n                    \"id\": 231,\n                    \"name\": \"Summerville\",\n                    \"description\": \"Dorchester county warehouse\",\n                    \"address\": \"1234 Dorchester Road, Ladson SC\",\n                    \"active\": true,\n                    \"site\": null,\n                    \"readonly\": null,\n                    \"path\": \".231.\",\n                    \"businessId\": \"K5jrN7LSJ7\",\n                    \"notes\": [],\n                    \"tags\": [],\n                    \"createdAt\": \"2024-08-16T00:33:01.742Z\",\n                    \"updatedAt\": \"2024-08-16T00:33:52.696Z\",\n                    \"parentId\": null,\n                    \"parent\": null\n                },\n                \"expenseAccount\": null,\n                \"incomeAccount\": null,\n                \"inventoryAccount\": null\n            },\n            \"partId\": 67,\n            \"quantity\": \"15\",\n            \"locationId\": 231,\n            \"location\": {\n                \"id\": 231,\n                \"name\": \"Summerville\",\n                \"description\": \"Dorchester county warehouse\",\n                \"address\": \"1234 Dorchester Road, Ladson SC\",\n                \"active\": true,\n                \"site\": null,\n                \"readonly\": null,\n                \"path\": \".231.\",\n                \"businessId\": \"K5jrN7LSJ7\",\n                \"notes\": [],\n                \"tags\": [],\n                \"createdAt\": \"2024-08-16T00:33:01.742Z\",\n                \"updatedAt\": \"2024-08-16T00:33:52.696Z\",\n                \"parentId\": null,\n                \"parent\": null\n            },\n            \"complete\": false\n        }\n    ],\n    \"businessId\": \"{{businessId}}\"\n}","options":{"raw":{"language":"json"}}},"url":"{{base}}/release","urlObject":{"path":["release"],"host":["{{base}}"],"query":[],"variable":[]}},"response":[{"id":"a47d034d-153f-472e-aae7-d2bd77b7c38f","name":"Required params only","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"releaseItems\": [\n        {\n            \"price\": \"0\",\n            \"description\": null,\n            \"number\": \"56738\",\n            \"uom\": {\n                \"name\": \"EA\",\n                \"conversion\": 1\n            },\n            \"part\": {\n                \"id\": 67,\n                \"number\": \"56738\",\n                \"ref\": null,\n                \"hookRef\": null,\n                \"incomeAccountId\": null,\n                \"inventoryAccountId\": null,\n                \"expenseAccountId\": null,\n                \"description\": null,\n                \"stockLevel\": null,\n                \"cost\": \"0\",\n                \"price\": \"0\",\n                \"type\": \"Inventory\",\n                \"taxable\": true,\n                \"trackingType\": [],\n                \"active\": true,\n                \"businessId\": \"K5jrN7LSJ7\",\n                \"defaultLocationId\": 231,\n                \"notes\": [],\n                \"tags\": [],\n                \"uoms\": [\n                    {\n                        \"name\": \"EA\",\n                        \"conversion\": 1\n                    }\n                ],\n                \"createdAt\": \"2024-08-16T01:59:55.125Z\",\n                \"updatedAt\": \"2024-08-16T01:59:55.125Z\",\n                \"defaultLocation\": {\n                    \"id\": 231,\n                    \"name\": \"Summerville\",\n                    \"description\": \"Dorchester county warehouse\",\n                    \"address\": \"1234 Dorchester Road, Ladson SC\",\n                    \"active\": true,\n                    \"site\": null,\n                    \"readonly\": null,\n                    \"path\": \".231.\",\n                    \"businessId\": \"K5jrN7LSJ7\",\n                    \"notes\": [],\n                    \"tags\": [],\n                    \"createdAt\": \"2024-08-16T00:33:01.742Z\",\n                    \"updatedAt\": \"2024-08-16T00:33:52.696Z\",\n                    \"parentId\": null,\n                    \"parent\": null\n                },\n                \"expenseAccount\": null,\n                \"incomeAccount\": null,\n                \"inventoryAccount\": null\n            },\n            \"partId\": 67,\n            \"quantity\": \"15\",\n            \"locationId\": 231,\n            \"location\": {\n                \"id\": 231,\n                \"name\": \"Summerville\",\n                \"description\": \"Dorchester county warehouse\",\n                \"address\": \"1234 Dorchester Road, Ladson SC\",\n                \"active\": true,\n                \"site\": null,\n                \"readonly\": null,\n                \"path\": \".231.\",\n                \"businessId\": \"K5jrN7LSJ7\",\n                \"notes\": [],\n                \"tags\": [],\n                \"createdAt\": \"2024-08-16T00:33:01.742Z\",\n                \"updatedAt\": \"2024-08-16T00:33:52.696Z\",\n                \"parentId\": null,\n                \"parent\": null\n            },\n            \"complete\": false\n        }\n    ],\n    \"businessId\": \"{{businessId}}\"\n}","options":{"raw":{"language":"json"}}},"url":"{{base}}/release"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"32ee0a07-8aba-4590-abba-b7436232fcb3","name":"Full params","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"releaseItems\": [\n        {\n            \"price\": \"0\",\n            \"description\": null,\n            \"number\": \"56738\",\n            \"uom\": {\n                \"name\": \"EA\",\n                \"conversion\": 1\n            },\n            \"part\": {\n                \"id\": 67,\n                \"number\": \"56738\",\n                \"ref\": null,\n                \"hookRef\": null,\n                \"incomeAccountId\": null,\n                \"inventoryAccountId\": null,\n                \"expenseAccountId\": null,\n                \"description\": null,\n                \"stockLevel\": null,\n                \"cost\": \"0\",\n                \"price\": \"0\",\n                \"type\": \"Inventory\",\n                \"taxable\": true,\n                \"trackingType\": [],\n                \"active\": true,\n                \"businessId\": \"K5jrN7LSJ7\",\n                \"defaultLocationId\": 231,\n                \"notes\": [],\n                \"tags\": [],\n                \"uoms\": [\n                    {\n                        \"name\": \"EA\",\n                        \"conversion\": 1\n                    }\n                ],\n                \"createdAt\": \"2024-08-16T01:59:55.125Z\",\n                \"updatedAt\": \"2024-08-16T01:59:55.125Z\",\n                \"defaultLocation\": {\n                    \"id\": 231,\n                    \"name\": \"Summerville\",\n                    \"description\": \"Dorchester county warehouse\",\n                    \"address\": \"1234 Dorchester Road, Ladson SC\",\n                    \"active\": true,\n                    \"site\": null,\n                    \"readonly\": null,\n                    \"path\": \".231.\",\n                    \"businessId\": \"K5jrN7LSJ7\",\n                    \"notes\": [],\n                    \"tags\": [],\n                    \"createdAt\": \"2024-08-16T00:33:01.742Z\",\n                    \"updatedAt\": \"2024-08-16T00:33:52.696Z\",\n                    \"parentId\": null,\n                    \"parent\": null\n                },\n                \"expenseAccount\": null,\n                \"incomeAccount\": null,\n                \"inventoryAccount\": null\n            },\n            \"partId\": 67,\n            \"quantity\": \"15\",\n            \"locationId\": 231,\n            \"location\": {\n                \"id\": 231,\n                \"name\": \"Summerville\",\n                \"description\": \"Dorchester county warehouse\",\n                \"address\": \"1234 Dorchester Road, Ladson SC\",\n                \"active\": true,\n                \"site\": null,\n                \"readonly\": null,\n                \"path\": \".231.\",\n                \"businessId\": \"K5jrN7LSJ7\",\n                \"notes\": [],\n                \"tags\": [],\n                \"createdAt\": \"2024-08-16T00:33:01.742Z\",\n                \"updatedAt\": \"2024-08-16T00:33:52.696Z\",\n                \"parentId\": null,\n                \"parent\": null\n            },\n            \"complete\": false\n        }\n    ],\n    \"businessId\": \"{{businessId}}\"\n}","options":{"raw":{"language":"json"}}},"url":"{{base}}/release"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"06663ba3-d37b-4598-92fb-690da81802f3"},{"name":"Get Releases","event":[{"listen":"test","script":{"id":"fd198fa0-770e-4539-9d74-a2159d186fe4","exec":["pm.test('Status code is 200', function () {\r","    pm.response.to.have.status(200);\r","})"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"ce460b23-1838-4744-8f39-657e303e9a5f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"replaceWithFloPayUser"},{"key":"password","value":"replaceWithFloPayPassword"}]},"isInherited":false},"method":"GET","header":[],"url":"{{base}}/release?limit=2&offset=0\n","urlObject":{"path":["release"],"host":["{{base}}"],"query":[{"key":"limit","value":"2"},{"key":"offset","value":"0\n"}],"variable":[]}},"response":[{"id":"742442ba-85a3-4da6-ad66-4ff808beb3b8","name":"Get Releases","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://devapi.flopay.co/erp/release?limit=2&offset=0\n","protocol":"https","host":["devapi","flopay","co"],"path":["erp","release"],"query":[{"key":"limit","value":"2"},{"key":"offset","value":"0\n"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 16 Jan 2024 22:36:35 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"6929"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"4fbd9011-fb62-4bda-aeb3-abb4b6262175"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"x-amz-apigw-id","value":"Rp22HHkVoAMEoyg="},{"key":"X-Amzn-Trace-Id","value":"Root=1-65a704f3-042013eb5839ee542ca89123;Sampled=0;lineage=0d456325:0"},{"key":"Access-Control-Allow-Credentials","value":"true"}],"cookie":[],"responseTime":null,"body":"{\n    \"offset\": 0,\n    \"limit\": 2,\n    \"rows\": [\n        {\n            \"id\": 73,\n            \"businessId\": \"HRldk0Rjhj\",\n            \"status\": \"Released\",\n            \"orderNumber\": \"71\",\n            \"orderId\": 71,\n            \"hookRef\": null,\n            \"createdAt\": \"2023-12-28T05:07:13.094Z\",\n            \"updatedAt\": \"2023-12-28T05:07:23.940Z\",\n            \"releaseItems\": [\n                {\n                    \"id\": 110,\n                    \"quantity\": \"1\",\n                    \"uom\": \"EA\",\n                    \"trackingData\": null,\n                    \"businessId\": \"HRldk0Rjhj\",\n                    \"customerId\": null,\n                    \"locationId\": 43,\n                    \"partId\": 2649,\n                    \"vendorId\": null,\n                    \"releaseId\": 73,\n                    \"orderItemId\": 29,\n                    \"createdAt\": \"2023-12-28T05:07:13.120Z\",\n                    \"updatedAt\": \"2023-12-28T05:07:13.120Z\",\n                    \"location\": {\n                        \"id\": 43,\n                        \"name\": \"B1B2\",\n                        \"description\": null,\n                        \"address\": null,\n                        \"active\": true,\n                        \"site\": null,\n                        \"readonly\": null,\n                        \"path\": \".43.\",\n                        \"businessId\": \"HRldk0Rjhj\",\n                        \"notes\": [],\n                        \"tags\": [],\n                        \"createdAt\": \"2023-12-28T05:05:21.420Z\",\n                        \"updatedAt\": \"2023-12-28T05:05:21.505Z\",\n                        \"parentId\": null\n                    },\n                    \"part\": {\n                        \"id\": 2649,\n                        \"number\": \"IA100\",\n                        \"ref\": null,\n                        \"hookRef\": null,\n                        \"incomeAccountId\": null,\n                        \"inventoryAccountId\": null,\n                        \"expenseAccountId\": null,\n                        \"description\": \"Inventory Item\",\n                        \"stockLevel\": \"100\",\n                        \"cost\": \"300\",\n                        \"price\": \"200\",\n                        \"type\": \"Inventory\",\n                        \"taxable\": true,\n                        \"trackingType\": [],\n                        \"active\": true,\n                        \"businessId\": \"HRldk0Rjhj\",\n                        \"defaultLocationId\": 43,\n                        \"notes\": [],\n                        \"tags\": [],\n                        \"uoms\": [\n                            {\n                                \"name\": \"EA\",\n                                \"conversion\": 1\n                            }\n                        ],\n                        \"createdAt\": \"2023-12-28T05:05:57.059Z\",\n                        \"updatedAt\": \"2023-12-28T05:05:57.059Z\"\n                    },\n                    \"vendor\": null,\n                    \"customer\": null\n                }\n            ],\n            \"order\": {\n                \"id\": 71,\n                \"number\": \"71\",\n                \"total\": \"210\",\n                \"subTotal\": \"200\",\n                \"terms\": \"Card\",\n                \"status\": \"Invoiced\",\n                \"paymentStatus\": \"Paid\",\n                \"tax\": \"10\",\n                \"hookRef\": null,\n                \"businessId\": \"HRldk0Rjhj\",\n                \"taxRate\": {},\n                \"customerId\": 179,\n                \"assignedToUserId\": 84,\n                \"notes\": [],\n                \"tags\": [],\n                \"createdAt\": \"2023-12-28T05:07:04.780Z\",\n                \"updatedAt\": \"2023-12-28T23:58:35.361Z\",\n                \"orderItems\": [\n                    {\n                        \"id\": 32,\n                        \"businessId\": \"HRldk0Rjhj\",\n                        \"complete\": true,\n                        \"description\": \"\",\n                        \"number\": \"-\",\n                        \"price\": \"0\",\n                        \"partId\": 2649,\n                        \"locationId\": 43,\n                        \"vendorId\": null,\n                        \"customerId\": null,\n                        \"quantity\": \"1\",\n                        \"uom\": \"EA\",\n                        \"createdAt\": \"2023-12-28T05:07:04.866Z\",\n                        \"updatedAt\": \"2023-12-28T23:58:35.386Z\",\n                        \"orderId\": 71\n                    }\n                ],\n                \"assignedToUser\": {\n                    \"name\": \"Change Me Change Me\",\n                    \"id\": 84,\n                    \"username\": \"old800\",\n                    \"businessId\": \"HRldk0Rjhj\",\n                    \"module\": {\n                        \"part\": true,\n                        \"user\": true,\n                        \"order\": true,\n                        \"report\": true,\n                        \"vendor\": true,\n                        \"company\": true,\n                        \"payment\": true,\n                        \"release\": true,\n                        \"webhook\": true,\n                        \"customer\": true,\n                        \"location\": true,\n                        \"dashboard\": true,\n                        \"inventory\": true,\n                        \"receivable\": true,\n                        \"webhookLog\": true\n                    },\n                    \"nameFirst\": \"Change Me\",\n                    \"nameLast\": \"Change Me\",\n                    \"contacts\": [],\n                    \"notes\": [],\n                    \"tags\": [],\n                    \"createdAt\": \"2023-12-27T22:07:34.355Z\",\n                    \"updatedAt\": \"2023-12-27T22:07:34.355Z\"\n                },\n                \"customer\": {\n                    \"id\": 179,\n                    \"active\": true,\n                    \"hookRef\": null,\n                    \"optIn\": true,\n                    \"ref\": null,\n                    \"name\": \"Mark Moore\",\n                    \"terms\": null,\n                    \"companyName\": null,\n                    \"taxRate\": {\n                        \"ref\": \"\",\n                        \"name\": \"DEFAULT\",\n                        \"rate\": 0.05,\n                        \"agency\": \"Default Agency\",\n                        \"isDefault\": true\n                    },\n                    \"businessId\": \"HRldk0Rjhj\",\n                    \"contacts\": [\n                        {\n                            \"type\": \"phone\",\n                            \"number\": \"+18017229210\"\n                        },\n                        {\n                            \"type\": \"mobile\",\n                            \"number\": \"+8101111111\"\n                        },\n                        {\n                            \"type\": \"email\",\n                            \"address\": \"fakeemail@gmail.com\"\n                        },\n                        {\n                            \"city\": \"My Town\",\n                            \"type\": \"billToAddress\",\n                            \"state\": \"UT\",\n                            \"street\": \"123 North Main St\",\n                            \"postalCode\": \"99999\",\n                            \"countryCode\": \"US\"\n                        },\n                        {\n                            \"city\": \"My Town\",\n                            \"type\": \"shipToAddress\",\n                            \"state\": \"UT\",\n                            \"street\": \"123 North Main St\",\n                            \"postalCode\": \"99999\",\n                            \"countryCode\": \"US\"\n                        }\n                    ],\n                    \"notes\": [],\n                    \"tags\": [],\n                    \"createdAt\": \"2023-12-28T05:06:56.031Z\",\n                    \"updatedAt\": \"2023-12-28T05:13:27.746Z\"\n                },\n                \"release\": {\n                    \"id\": 73,\n                    \"businessId\": \"HRldk0Rjhj\",\n                    \"status\": \"Released\",\n                    \"orderNumber\": \"71\",\n                    \"orderId\": 71,\n                    \"hookRef\": null,\n                    \"createdAt\": \"2023-12-28T05:07:13.094Z\",\n                    \"updatedAt\": \"2023-12-28T05:07:23.940Z\"\n                }\n            }\n        },\n        {\n            \"id\": 72,\n            \"businessId\": \"FD8fkrKYSW\",\n            \"status\": \"Released\",\n            \"orderNumber\": \"70\",\n            \"orderId\": 70,\n            \"hookRef\": null,\n            \"createdAt\": \"2023-12-23T04:07:11.367Z\",\n            \"updatedAt\": \"2023-12-23T04:07:38.665Z\",\n            \"releaseItems\": [\n                {\n                    \"id\": 109,\n                    \"quantity\": \"1\",\n                    \"uom\": \"EA\",\n                    \"trackingData\": null,\n                    \"businessId\": \"FD8fkrKYSW\",\n                    \"customerId\": null,\n                    \"locationId\": 1,\n                    \"partId\": 2647,\n                    \"vendorId\": null,\n                    \"releaseId\": 72,\n                    \"orderItemId\": 25,\n                    \"createdAt\": \"2023-12-23T04:07:11.390Z\",\n                    \"updatedAt\": \"2023-12-23T04:07:11.390Z\",\n                    \"location\": {\n                        \"id\": 1,\n                        \"name\": \"Warehouse\",\n                        \"description\": \"Medium Warehouse \",\n                        \"address\": \"1010 East State Street, Orem, Ut, 84605\",\n                        \"active\": true,\n                        \"site\": true,\n                        \"readonly\": null,\n                        \"path\": \".20.\",\n                        \"businessId\": \"4tsYEMs7z3\",\n                        \"notes\": [],\n                        \"tags\": [],\n                        \"createdAt\": \"2023-10-04T23:15:48.137Z\",\n                        \"updatedAt\": \"2023-12-04T16:09:56.131Z\",\n                        \"parentId\": null\n                    },\n                    \"part\": {\n                        \"id\": 2647,\n                        \"number\": \"Bic Pen 1818\",\n                        \"ref\": \"19\",\n                        \"hookRef\": null,\n                        \"incomeAccountId\": 79,\n                        \"inventoryAccountId\": null,\n                        \"expenseAccountId\": 80,\n                        \"description\": \"Great Pen for Writing\",\n                        \"stockLevel\": \"200\",\n                        \"cost\": \"4\",\n                        \"price\": \"500\",\n                        \"type\": \"Inventory\",\n                        \"taxable\": true,\n                        \"trackingType\": [],\n                        \"active\": true,\n                        \"businessId\": \"FD8fkrKYSW\",\n                        \"defaultLocationId\": 1,\n                        \"notes\": [],\n                        \"tags\": [],\n                        \"uoms\": [\n                            {\n                                \"name\": \"EA\",\n                                \"conversion\": 1\n                            }\n                        ],\n                        \"createdAt\": \"2023-12-17T23:18:45.961Z\",\n                        \"updatedAt\": \"2023-12-17T23:18:45.961Z\"\n                    },\n                    \"vendor\": null,\n                    \"customer\": null\n                }\n            ],\n            \"order\": {\n                \"id\": 70,\n                \"number\": \"70\",\n                \"total\": \"533.69\",\n                \"subTotal\": \"523.23\",\n                \"terms\": \"Card\",\n                \"status\": \"Invoiced\",\n                \"paymentStatus\": \"Paid\",\n                \"tax\": \"10.46\",\n                \"hookRef\": null,\n                \"businessId\": \"FD8fkrKYSW\",\n                \"taxRate\": {},\n                \"customerId\": 131,\n                \"assignedToUserId\": 83,\n                \"notes\": [],\n                \"tags\": [],\n                \"createdAt\": \"2023-12-23T04:07:05.578Z\",\n                \"updatedAt\": \"2023-12-23T04:36:09.097Z\",\n                \"orderItems\": [\n                    {\n                        \"id\": 28,\n                        \"businessId\": \"FD8fkrKYSW\",\n                        \"complete\": true,\n                        \"description\": \"\",\n                        \"number\": \"-\",\n                        \"price\": \"0\",\n                        \"partId\": 2647,\n                        \"locationId\": 1,\n                        \"vendorId\": null,\n                        \"customerId\": null,\n                        \"quantity\": \"1\",\n                        \"uom\": \"EA\",\n                        \"createdAt\": \"2023-12-23T04:07:05.679Z\",\n                        \"updatedAt\": \"2023-12-23T04:36:09.147Z\",\n                        \"orderId\": 70\n                    },\n                    {\n                        \"id\": 27,\n                        \"businessId\": \"FD8fkrKYSW\",\n                        \"complete\": true,\n                        \"description\": \"\",\n                        \"number\": \"-\",\n                        \"price\": \"0\",\n                        \"partId\": 2641,\n                        \"locationId\": 1,\n                        \"vendorId\": null,\n                        \"customerId\": null,\n                        \"quantity\": \"1\",\n                        \"uom\": \"HR\",\n                        \"createdAt\": \"2023-12-23T04:07:05.679Z\",\n                        \"updatedAt\": \"2023-12-23T04:36:09.147Z\",\n                        \"orderId\": 70\n                    }\n                ],\n                \"assignedToUser\": {\n                    \"name\": \"Change Me Change Me\",\n                    \"id\": 83,\n                    \"username\": \"fakeemail@gmail.com\",\n                    \"businessId\": \"FD8fkrKYSW\",\n                    \"module\": {\n                        \"part\": true,\n                        \"user\": true,\n                        \"order\": true,\n                        \"report\": true,\n                        \"vendor\": true,\n                        \"company\": true,\n                        \"payment\": true,\n                        \"release\": true,\n                        \"webhook\": true,\n                        \"customer\": true,\n                        \"location\": true,\n                        \"dashboard\": true,\n                        \"inventory\": true,\n                        \"receivable\": true,\n                        \"webhookLog\": true\n                    },\n                    \"nameFirst\": \"Change Me\",\n                    \"nameLast\": \"Change Me\",\n                    \"contacts\": [],\n                    \"notes\": [],\n                    \"tags\": [],\n                    \"createdAt\": \"2023-12-17T02:55:38.630Z\",\n                    \"updatedAt\": \"2023-12-27T21:33:21.808Z\"\n                },\n                \"customer\": {\n                    \"id\": 131,\n                    \"active\": true,\n                    \"hookRef\": null,\n                    \"optIn\": true,\n                    \"ref\": \"12\",\n                    \"name\": \"Jeff's Jalopies\",\n                    \"terms\": null,\n                    \"companyName\": \"Jeff's Jalopies\",\n                    \"taxRate\": {\n                        \"name\": \"n\",\n                        \"rate\": 0.02,\n                        \"agency\": \"v\",\n                        \"isDefault\": true\n                    },\n                    \"businessId\": \"FD8fkrKYSW\",\n                    \"contacts\": [\n                        {\n                            \"type\": \"phone\",\n                            \"number\": \"(650) 555-8989\"\n                        },\n                        {\n                            \"type\": \"mobile\",\n                            \"number\": \"+8011111111\"\n                        },\n                        {\n                            \"type\": \"email\",\n                            \"address\": \"fakeemail@gmail.com\"\n                        },\n                        {\n                            \"city\": \"Menlo Park\",\n                            \"type\": \"billToAddress\",\n                            \"state\": \"CA\",\n                            \"street\": \"12 Willow Rd.\",\n                            \"postalCode\": \"94305\",\n                            \"countryCode\": \"US\"\n                        },\n                        {\n                            \"city\": \"My Town\",\n                            \"type\": \"shipToAddress\",\n                            \"state\": \"UT\",\n                            \"street\": \"123 North Main St\",\n                            \"postalCode\": \"84062\",\n                            \"countryCode\": \"US\"\n                        }\n                    ],\n                    \"notes\": [],\n                    \"tags\": [],\n                    \"createdAt\": \"2023-12-18T23:52:37.955Z\",\n                    \"updatedAt\": \"2023-12-23T04:19:04.340Z\"\n                },\n                \"release\": {\n                    \"id\": 72,\n                    \"businessId\": \"FD8fkrKYSW\",\n                    \"status\": \"Released\",\n                    \"orderNumber\": \"70\",\n                    \"orderId\": 70,\n                    \"hookRef\": null,\n                    \"createdAt\": \"2023-12-23T04:07:11.367Z\",\n                    \"updatedAt\": \"2023-12-23T04:07:38.665Z\"\n                }\n            }\n        }\n    ],\n    \"hasMore\": true\n}"}],"_postman_id":"ce460b23-1838-4744-8f39-657e303e9a5f"},{"name":"Get Release","id":"b9fefae4-cc28-41fc-b100-b0b9b8af6895","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"replaceWithFloPayUser"},{"key":"password","value":"replaceWithFloPayPassword"}]},"isInherited":false},"method":"GET","header":[],"url":"https://devapi.flopay.co/erp/release/audit/{{releaseId}}","urlObject":{"protocol":"https","path":["erp","release","audit","{{releaseId}}"],"host":["devapi","flopay","co"],"query":[],"variable":[]}},"response":[{"id":"1d5c31ef-341e-44d2-b17e-3826587f8a4d","name":"Get Release","originalRequest":{"method":"GET","header":[],"url":"https://devapi.flopay.co/erp/release/audit/{{releaseId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 16 Jan 2024 22:42:44 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"1709"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"04738643-1e8f-44ec-97fc-af926b56dff7"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"x-amz-apigw-id","value":"Rp3vzE5IoAMEjmg="},{"key":"X-Amzn-Trace-Id","value":"Root=1-65a70664-6cb9b94016200ffd35e5f147;Sampled=0;lineage=2a121c2a:0|243c1b6a:0"},{"key":"Access-Control-Allow-Credentials","value":"true"}],"cookie":[],"responseTime":null,"body":"{\n    \"offset\": 0,\n    \"limit\": 10,\n    \"rows\": [\n        {\n            \"id\": 193,\n            \"field\": \"businessId\",\n            \"type\": \"INSERT\",\n            \"valueOld\": \"\",\n            \"valueNew\": \"HRldk0Rjhj\",\n            \"changedByUser\": \"fakeemail.r@gmail.com\",\n            \"businessId\": \"HRldk0Rjhj\",\n            \"createdAt\": \"2023-12-28T05:07:13.101Z\",\n            \"releaseId\": 73,\n            \"ChangedByUserId\": 84,\n            \"release\": {\n                \"id\": 73,\n                \"businessId\": \"HRldk0Rjhj\",\n                \"status\": \"Released\",\n                \"orderNumber\": \"71\",\n                \"orderId\": 71,\n                \"hookRef\": null,\n                \"createdAt\": \"2023-12-28T05:07:13.094Z\",\n                \"updatedAt\": \"2023-12-28T05:07:23.940Z\"\n            }\n        },\n        {\n            \"id\": 194,\n            \"field\": \"status\",\n            \"type\": \"INSERT\",\n            \"valueOld\": \"\",\n            \"valueNew\": \"Open\",\n            \"changedByUser\": \"fakeemail.r@gmail.com\",\n            \"businessId\": \"HRldk0Rjhj\",\n            \"createdAt\": \"2023-12-28T05:07:13.101Z\",\n            \"releaseId\": 73,\n            \"ChangedByUserId\": 84,\n            \"release\": {\n                \"id\": 73,\n                \"businessId\": \"HRldk0Rjhj\",\n                \"status\": \"Released\",\n                \"orderNumber\": \"71\",\n                \"orderId\": 71,\n                \"hookRef\": null,\n                \"createdAt\": \"2023-12-28T05:07:13.094Z\",\n                \"updatedAt\": \"2023-12-28T05:07:23.940Z\"\n            }\n        },\n        {\n            \"id\": 191,\n            \"field\": \"orderNumber\",\n            \"type\": \"INSERT\",\n            \"valueOld\": \"\",\n            \"valueNew\": \"71\",\n            \"changedByUser\": \"fakeemail.r@gmail.com\",\n            \"businessId\": \"HRldk0Rjhj\",\n            \"createdAt\": \"2023-12-28T05:07:13.100Z\",\n            \"releaseId\": 73,\n            \"ChangedByUserId\": 84,\n            \"release\": {\n                \"id\": 73,\n                \"businessId\": \"HRldk0Rjhj\",\n                \"status\": \"Released\",\n                \"orderNumber\": \"71\",\n                \"orderId\": 71,\n                \"hookRef\": null,\n                \"createdAt\": \"2023-12-28T05:07:13.094Z\",\n                \"updatedAt\": \"2023-12-28T05:07:23.940Z\"\n            }\n        },\n        {\n            \"id\": 192,\n            \"field\": \"orderId\",\n            \"type\": \"INITIAL\",\n            \"valueOld\": \"\",\n            \"valueNew\": \"71\",\n            \"changedByUser\": \"fakeemail.r@gmail.com\",\n            \"businessId\": \"HRldk0Rjhj\",\n            \"createdAt\": \"2023-12-28T05:07:13.100Z\",\n            \"releaseId\": 73,\n            \"ChangedByUserId\": 84,\n            \"release\": {\n                \"id\": 73,\n                \"businessId\": \"HRldk0Rjhj\",\n                \"status\": \"Released\",\n                \"orderNumber\": \"71\",\n                \"orderId\": 71,\n                \"hookRef\": null,\n                \"createdAt\": \"2023-12-28T05:07:13.094Z\",\n                \"updatedAt\": \"2023-12-28T05:07:23.940Z\"\n            }\n        }\n    ],\n    \"hasMore\": false\n}"}],"_postman_id":"b9fefae4-cc28-41fc-b100-b0b9b8af6895"},{"name":"Update Release","event":[{"listen":"test","script":{"id":"41484e1d-e6ef-406e-a0ba-8048d12f71aa","exec":["pm.test('Status code is 200', function () {\r","    pm.response.to.have.status(200);\r","})"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"ec69dd07-4b4e-431e-838e-a3c072a3bd21","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"replaceWithFloPayUser"},{"key":"password","value":"replaceWithFloPayPassword"}]},"isInherited":false},"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"id\": 6,\n    \"businessId\": \"{{businessId}}\",\n    \"status\": \"Open\",\n    \"orderNumber\": null,\n    \"orderId\": null,\n    \"hookRef\": null,\n    \"createdAt\": \"2024-08-16T20:38:27.877Z\",\n    \"updatedAt\": \"2024-08-16T20:38:27.877Z\",\n    \"releaseItems\": [\n        {\n            \"id\": 3,\n            \"quantity\": \"15\",\n            \"uom\": {\n                \"name\": \"EA\",\n                \"conversion\": 1\n            },\n            \"trackingData\": null,\n            \"businessId\": \"K5jrN7LSJ7\",\n            \"customerId\": null,\n            \"locationId\": 231,\n            \"partId\": 67,\n            \"vendorId\": null,\n            \"releaseId\": 6,\n            \"orderItemId\": null,\n            \"createdAt\": \"2024-08-16T20:38:27.890Z\",\n            \"updatedAt\": \"2024-08-16T20:38:27.890Z\",\n            \"location\": {\n                \"id\": 231,\n                \"name\": \"Summerville\",\n                \"description\": \"Dorchester county warehouse\",\n                \"address\": \"1234 Dorchester Road, Ladson SC\",\n                \"active\": true,\n                \"site\": null,\n                \"readonly\": null,\n                \"path\": \".231.\",\n                \"businessId\": \"K5jrN7LSJ7\",\n                \"notes\": [],\n                \"tags\": [],\n                \"createdAt\": \"2024-08-16T00:33:01.742Z\",\n                \"updatedAt\": \"2024-08-16T00:33:52.696Z\",\n                \"parentId\": null\n            },\n            \"part\": {\n                \"id\": 67,\n                \"number\": \"56738\",\n                \"ref\": null,\n                \"hookRef\": null,\n                \"incomeAccountId\": null,\n                \"inventoryAccountId\": null,\n                \"expenseAccountId\": null,\n                \"description\": null,\n                \"stockLevel\": null,\n                \"cost\": \"0\",\n                \"price\": \"0\",\n                \"type\": \"Inventory\",\n                \"taxable\": true,\n                \"trackingType\": [],\n                \"active\": true,\n                \"businessId\": \"K5jrN7LSJ7\",\n                \"defaultLocationId\": 231,\n                \"notes\": [],\n                \"tags\": [],\n                \"uoms\": [\n                    {\n                        \"name\": \"EA\",\n                        \"conversion\": 1\n                    }\n                ],\n                \"createdAt\": \"2024-08-16T01:59:55.125Z\",\n                \"updatedAt\": \"2024-08-16T01:59:55.125Z\"\n            },\n            \"vendor\": null,\n            \"customer\": null\n        }\n    ],\n    \"order\": null\n}","options":{"raw":{"language":"json"}}},"url":"{{base}}/release/{{releaseId}}","urlObject":{"path":["release","{{releaseId}}"],"host":["{{base}}"],"query":[],"variable":[]}},"response":[{"id":"b0f45fac-a282-4810-915c-429fd82dc72b","name":"Update Release","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"id\": 6,\n    \"businessId\": \"K5jrN7LSJ7\",\n    \"status\": \"Open\",\n    \"orderNumber\": null,\n    \"orderId\": null,\n    \"hookRef\": null,\n    \"createdAt\": \"2024-08-16T20:38:27.877Z\",\n    \"updatedAt\": \"2024-08-16T20:38:27.877Z\",\n    \"releaseItems\": [\n        {\n            \"id\": 3,\n            \"quantity\": \"15\",\n            \"uom\": {\n                \"name\": \"EA\",\n                \"conversion\": 1\n            },\n            \"trackingData\": null,\n            \"businessId\": \"K5jrN7LSJ7\",\n            \"customerId\": null,\n            \"locationId\": 231,\n            \"partId\": 67,\n            \"vendorId\": null,\n            \"releaseId\": 6,\n            \"orderItemId\": null,\n            \"createdAt\": \"2024-08-16T20:38:27.890Z\",\n            \"updatedAt\": \"2024-08-16T20:38:27.890Z\",\n            \"location\": {\n                \"id\": 231,\n                \"name\": \"Summerville\",\n                \"description\": \"Dorchester county warehouse\",\n                \"address\": \"1234 Dorchester Road, Ladson SC\",\n                \"active\": true,\n                \"site\": null,\n                \"readonly\": null,\n                \"path\": \".231.\",\n                \"businessId\": \"K5jrN7LSJ7\",\n                \"notes\": [],\n                \"tags\": [],\n                \"createdAt\": \"2024-08-16T00:33:01.742Z\",\n                \"updatedAt\": \"2024-08-16T00:33:52.696Z\",\n                \"parentId\": null\n            },\n            \"part\": {\n                \"id\": 67,\n                \"number\": \"56738\",\n                \"ref\": null,\n                \"hookRef\": null,\n                \"incomeAccountId\": null,\n                \"inventoryAccountId\": null,\n                \"expenseAccountId\": null,\n                \"description\": null,\n                \"stockLevel\": null,\n                \"cost\": \"0\",\n                \"price\": \"0\",\n                \"type\": \"Inventory\",\n                \"taxable\": true,\n                \"trackingType\": [],\n                \"active\": true,\n                \"businessId\": \"K5jrN7LSJ7\",\n                \"defaultLocationId\": 231,\n                \"notes\": [],\n                \"tags\": [],\n                \"uoms\": [\n                    {\n                        \"name\": \"EA\",\n                        \"conversion\": 1\n                    }\n                ],\n                \"createdAt\": \"2024-08-16T01:59:55.125Z\",\n                \"updatedAt\": \"2024-08-16T01:59:55.125Z\"\n            },\n            \"vendor\": null,\n            \"customer\": null\n        }\n    ],\n    \"order\": null\n}","options":{"raw":{"language":"json"}}},"url":"{{base}}/release/{{releaseId}}"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"ec69dd07-4b4e-431e-838e-a3c072a3bd21"},{"name":"Delete Release","id":"04b22e0f-ee52-4b21-b88b-0b9e6451cacd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"replaceWithFloPayUser"},{"key":"password","value":"replaceWithFloPayPassword"}]},"isInherited":false},"method":"DELETE","header":[],"url":"{{base}}/release/{{releaseId}}","urlObject":{"path":["release","{{releaseId}}"],"host":["{{base}}"],"query":[],"variable":[]}},"response":[{"id":"c8ea755f-20d3-4aa8-bd92-84b12e61e93c","name":"Delete Release","originalRequest":{"method":"DELETE","header":[],"url":"{{base}}/release/{{releaseId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 16 Jan 2024 22:55:02 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"1"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"3529f5e5-a2e2-45e9-9f2f-96ab99ffd0df"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"x-amz-apigw-id","value":"Rp5iwFOnoAMEnFg="},{"key":"X-Amzn-Trace-Id","value":"Root=1-65a70944-776509982fd72d1f28ab8b28;Sampled=0;lineage=2a121c2a:0|4852ce6a:0"},{"key":"Access-Control-Allow-Credentials","value":"true"}],"cookie":[],"responseTime":null,"body":"1"}],"_postman_id":"04b22e0f-ee52-4b21-b88b-0b9e6451cacd"}],"id":"2d7546d9-94ad-4e10-a6e3-7df22c9205cc","_postman_id":"2d7546d9-94ad-4e10-a6e3-7df22c9205cc","description":""},{"name":"Orders","item":[{"name":"Create Order","event":[{"listen":"test","script":{"id":"eac39f87-747c-47be-a168-9cd505c22bdb","exec":["pm.test('Status code is 200', function () {\r","    pm.response.to.have.status(200);\r","})\r","var jsonData = pm.response.json();\r","pm.environment.set(\"orderId\", jsonData.id);"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"d73444ae-bc1b-4628-bc10-5d4741a501ef","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"replaceWithFloPayUser"},{"key":"password","value":"replaceWithFloPayPassword"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"assignedToUser\": \"qa@flopay.co\",\r\n  \"customerId\": 539,\r\n  \"taxRate\": {\r\n    \"name\": \"No Tax\",\r\n    \"rate\": 0,\r\n    \"agency\": \"Utah\",\r\n    \"isDefault\": true\r\n  },\r\n  \"orderItems\": [\r\n    {\r\n      \"price\": \"25\",\r\n      \"extendedPrice\": 0,\r\n      \"description\": \"Office Supplies\",\r\n      \"number\": \"OFSPLY\",\r\n      \"uom\": {\r\n        \"name\": \"EA\",\r\n        \"conversion\": 1\r\n      },\r\n      \"part\": {\r\n        \"id\": 794,\r\n        \"number\": \"OFSPLY\",\r\n        \"ref\": null,\r\n        \"hookRef\": null,\r\n        \"incomeAccountId\": null,\r\n        \"inventoryAccountId\": null,\r\n        \"expenseAccountId\": null,\r\n        \"description\": \"Office Supplies\",\r\n        \"stockLevel\": \"1000\",\r\n        \"cost\": \"15\",\r\n        \"price\": \"25\",\r\n        \"type\": \"Inventory\",\r\n        \"taxable\": true,\r\n        \"trackingType\": [],\r\n        \"active\": true,\r\n        \"businessId\": \"{{businessId}}\",\r\n        \"defaultLocationId\": 2,\r\n        \"contractType\": null,\r\n        \"partTypeData\": {},\r\n        \"notes\": [],\r\n        \"tags\": [],\r\n        \"uoms\": [\r\n          {\r\n            \"name\": \"EA\",\r\n            \"conversion\": 1\r\n          }\r\n        ],\r\n        \"createdAt\": \"2026-03-16T19:05:13.335Z\",\r\n        \"updatedAt\": \"2026-03-16T19:06:28.074Z\",\r\n        \"defaultLocation\": {\r\n          \"id\": 2,\r\n          \"name\": \"A1A1\",\r\n          \"description\": \"Default location create on initial setup.\",\r\n          \"address\": \"\",\r\n          \"active\": true,\r\n          \"site\": true,\r\n          \"readonly\": true,\r\n          \"path\": \"1\",\r\n          \"businessId\": \"IepQ1qQNeC\",\r\n          \"notes\": [],\r\n          \"tags\": [],\r\n          \"createdAt\": \"2024-03-29T19:27:31.271Z\",\r\n          \"updatedAt\": \"2024-03-29T19:27:31.271Z\",\r\n          \"parentId\": null,\r\n          \"parent\": null\r\n        },\r\n        \"expenseAccount\": null,\r\n        \"incomeAccount\": null,\r\n        \"inventoryAccount\": null\r\n      },\r\n      \"partId\": 794,\r\n      \"quantity\": 1,\r\n      \"locationId\": 2,\r\n      \"location\": {\r\n        \"id\": 2,\r\n        \"name\": \"A1A1\",\r\n        \"description\": \"Default location create on initial setup.\",\r\n        \"address\": \"\",\r\n        \"active\": true,\r\n        \"site\": true,\r\n        \"readonly\": true,\r\n        \"path\": \"1\",\r\n        \"businessId\": \"IepQ1qQNeC\",\r\n        \"notes\": [],\r\n        \"tags\": [],\r\n        \"createdAt\": \"2024-03-29T19:27:31.271Z\",\r\n        \"updatedAt\": \"2024-03-29T19:27:31.271Z\",\r\n        \"parentId\": null,\r\n        \"parent\": null\r\n      },\r\n      \"complete\": false\r\n    }\r\n  ],\r\n  \"businessId\": \"{{businessId}}\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base}}/order","urlObject":{"path":["order"],"host":["{{base}}"],"query":[],"variable":[]}},"response":[{"id":"6a4cccf7-7693-41a2-9ef8-50031001913c","name":"Required params only","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"eyJraWQiOiJza2dVenlFR2hHbTBkMVhSbzY2Mk4wNUR6S2Nwdmg5N2h6aXRuZGRGUWRnPSIsImFsZyI6IlJTMjU2In0.eyJzdWIiOiJiYjk4YWQ4NS1hMDJjLTRhZWItYWRiMi1jMmI0Yzg0M2UwY2YiLCJlbWFpbF92ZXJpZmllZCI6dHJ1ZSwiaXNzIjoiaHR0cHM6XC9cL2NvZ25pdG8taWRwLnVzLWVhc3QtMS5hbWF6b25hd3MuY29tXC91cy1lYXN0LTFfYkt5M0xaNThXIiwiY3VzdG9tOlVJRCI6IjgzIiwiY29nbml0bzp1c2VybmFtZSI6ImJiOThhZDg1LWEwMmMtNGFlYi1hZGIyLWMyYjRjODQzZTBjZiIsImN1c3RvbTpEQkkiOiJ7XCJkZWZhdWx0QmlkXCI6XCJGRDhma3JLWVNXXCJ9Iiwib3JpZ2luX2p0aSI6ImNiZDlmMThiLTMxZDYtNDdiNS1hOTg5LThiN2FiZmFkNzM3YSIsImF1ZCI6IjVvMnA0bzU0ZGVlOXZjb2phbWVldWFlaG0zIiwiZXZlbnRfaWQiOiJlM2M5ZTc5MS1mYmNhLTQyZTEtOWM4My0xZDE1OGUzMzlmM2EiLCJjdXN0b206TU9EIjoie1wibW9kdWxlXCI6e1wicGFydFwiOnRydWUsXCJ1c2VyXCI6dHJ1ZSxcIm9yZGVyXCI6dHJ1ZSxcInJlcG9ydFwiOnRydWUsXCJ2ZW5kb3JcIjp0cnVlLFwiY29tcGFueVwiOnRydWUsXCJwYXltZW50XCI6dHJ1ZSxcInJlbGVhc2VcIjp0cnVlLFwiY3VzdG9tZXJcIjp0cnVlLFwibG9jYXRpb25cIjp0cnVlLFwiZGFzaGJvYXJkXCI6dHJ1ZSxcImludmVudG9yeVwiOnRydWUsXCJyZWNlaXZhYmxlXCI6dHJ1ZX19IiwidG9rZW5fdXNlIjoiaWQiLCJjdXN0b206QVIiOiJ7XCJidXNpbmVzc0lkc1wiOntcIkZEOGZrcktZU1dcIjpcIkFcIixcIkhSbGRrMFJqaGpcIjpcIkFcIn19IiwiYXV0aF90aW1lIjoxNzAzODc3ODkzLCJleHAiOjE3MDM4ODY2MjUsImlhdCI6MTcwMzg4MzAyNSwianRpIjoiOTUxMTYyODgtM2YwZC00YTRiLTllOGMtOGQ5Y2JkNDI4MDhmIiwiZW1haWwiOiJrZXZpbmJhdGNoZWxvckBnbWFpbC5jb20ifQ.mf3NzLD_ZdQ7iZqa0ncaf5loB0SqcjkkK_5d1_O1JESY4Dkey6QSokzIpDB9a8xr96Cu8mfK1NpmAOF_iRIfVW9wOPqiTvCuLKhoiR73c4ARSUuiPykRHQN5vAmV00GJHnyDs5ZW3c4IcNYDBvWqD86FaGb3AoDlsMuhVeY1XYAW7dCmhZggJA8iq2JeTmojwUM3s-8b0Dbk8mFDWhHQIXz6qWrKvYSMsG1aNkLH3GHlOsgVKA3HLPawVggI2YJuPNYe3592cN3m81eR7eMJsB2xy74Ctf_WPzx-ZWhT8no1FCtlqZxbKTyAP8wxKrPc3d_73PBVJVCCABa8Q8dkiQ","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"businessId\": \"{{businessId}}\",\r\n    \"assignedToUser\": \"lindabrobledo@gmail.com\",\r\n    \"customerId\": 66,\r\n    \"orderItems\": [\r\n        {\r\n        \"price\": \"0\",\r\n        \"number\": \"MISC-SERVICE\",\r\n        \"uom\": {\r\n            \"name\": \"EA\",\r\n            \"conversion\": 1\r\n        },\r\n        \"partId\": 54,\r\n        \"quantity\": 1\r\n        }\r\n    ],\r\n    \"taxRate\": {\r\n        \"name\": \"Sales Tax\",\r\n        \"rate\": 0.05,\r\n        \"agency\": \"Tax Agency\",\r\n        \"isDefault\": true\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base}}/order"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"access-control-allow-credentials","value":"true"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"vary","value":"origin,accept-encoding"},{"key":"access-control-expose-headers","value":"WWW-Authenticate,Server-Authorization"},{"key":"cache-control","value":"no-cache"},{"key":"content-encoding","value":"gzip"},{"key":"Date","value":"Sat, 30 Dec 2023 01:13:02 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 156,\n    \"number\": \"156\",\n    \"total\": 0,\n    \"subTotal\": \"0\",\n    \"terms\": \"Card\",\n    \"status\": \"Estimate\",\n    \"paymentStatus\": null,\n    \"tax\": 0,\n    \"hookRef\": null,\n    \"businessId\": \"K5jrN7LSJ7\",\n    \"taxRate\": {\n        \"name\": \"Sales Tax\",\n        \"rate\": 0.05,\n        \"agency\": \"Tax Agency\",\n        \"isDefault\": true\n    },\n    \"customerId\": 66,\n    \"assignedToUserId\": 23,\n    \"notes\": [],\n    \"tags\": [],\n    \"createdAt\": \"2024-08-16T01:45:49.237Z\",\n    \"updatedAt\": \"2024-08-16T01:45:49.272Z\",\n    \"customer\": {\n        \"id\": 66,\n        \"active\": true,\n        \"hookRef\": null,\n        \"optIn\": true,\n        \"cards\": [],\n        \"ref\": null,\n        \"name\": \"Linda Robledo\",\n        \"terms\": null,\n        \"companyName\": \"rob\",\n        \"taxRate\": {\n            \"ref\": \"\",\n            \"name\": \"Sales Tax\",\n            \"rate\": 0.05,\n            \"agency\": \"Tax Agency\",\n            \"isDefault\": true\n        },\n        \"businessId\": \"K5jrN7LSJ7\",\n        \"contacts\": [\n            {\n                \"type\": \"phone\",\n                \"number\": \"+13852164401\"\n            },\n            {\n                \"type\": \"mobile\",\n                \"number\": \"+13852164401\"\n            },\n            {\n                \"type\": \"email\",\n                \"address\": \"linda@asdf.com\"\n            },\n            {\n                \"city\": \"American Fork\",\n                \"type\": \"billToAddress\",\n                \"state\": \"UT\",\n                \"street\": \"574 S 420 E\",\n                \"postalCode\": \"84003\",\n                \"countryCode\": \"US\"\n            },\n            {\n                \"city\": \"American Fork\",\n                \"type\": \"shipToAddress\",\n                \"state\": \"UT\",\n                \"street\": \"574 S 420 E\",\n                \"postalCode\": \"84003\",\n                \"countryCode\": \"US\"\n            }\n        ],\n        \"notes\": [],\n        \"tags\": [],\n        \"createdAt\": \"2024-08-15T23:57:38.872Z\",\n        \"updatedAt\": \"2024-08-16T00:35:31.118Z\"\n    },\n    \"orderItems\": [\n        {\n            \"complete\": false,\n            \"id\": 183,\n            \"price\": \"0\",\n            \"number\": \"MISC-SERVICE\",\n            \"uom\": {\n                \"name\": \"EA\",\n                \"conversion\": 1\n            },\n            \"partId\": 54,\n            \"quantity\": 1,\n            \"orderId\": 156,\n            \"businessId\": \"K5jrN7LSJ7\",\n            \"createdAt\": \"2024-08-16T01:45:49.309Z\",\n            \"updatedAt\": \"2024-08-16T01:45:49.309Z\",\n            \"description\": null,\n            \"locationId\": null,\n            \"vendorId\": null,\n            \"customerId\": null\n        }\n    ]\n}"},{"id":"9948c1d2-0597-4dc3-9c09-24717dbeabf8","name":"Full params","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"businessId\": \"{{businessId}}\",\r\n    \"assignedToUser\": \"lindabrobledo@gmail.com\",\r\n    \"customerId\": 66,\r\n    \"customer\": {\r\n        \"id\": 66,\r\n        \"active\": true,\r\n        \"hookRef\": null,\r\n        \"optIn\": true,\r\n        \"cards\": [],\r\n        \"ref\": null,\r\n        \"name\": \"Linda Robledo\",\r\n        \"terms\": null,\r\n        \"companyName\": \"rob\",\r\n        \"taxRate\": {\r\n            \"ref\": \"\",\r\n            \"name\": \"Sales Tax\",\r\n            \"rate\": 0.05,\r\n            \"agency\": \"Tax Agency\",\r\n            \"isDefault\": true\r\n        },\r\n        \"businessId\": \"K5jrN7LSJ7\",\r\n        \"contacts\": [\r\n            {\r\n                \"type\": \"phone\",\r\n                \"number\": \"+13852164401\"\r\n            },\r\n            {\r\n                \"type\": \"mobile\",\r\n                \"number\": \"+13852164401\"\r\n            },\r\n            {\r\n                \"type\": \"email\",\r\n                \"address\": \"linda@asdf.com\"\r\n            },\r\n            {\r\n                \"city\": \"American Fork\",\r\n                \"type\": \"billToAddress\",\r\n                \"state\": \"UT\",\r\n                \"street\": \"574 S 420 E\",\r\n                \"postalCode\": \"84003\",\r\n                \"countryCode\": \"US\"\r\n            },\r\n            {\r\n                \"city\": \"American Fork\",\r\n                \"type\": \"shipToAddress\",\r\n                \"state\": \"UT\",\r\n                \"street\": \"574 S 420 E\",\r\n                \"postalCode\": \"84003\",\r\n                \"countryCode\": \"US\"\r\n            }\r\n        ],\r\n        \"notes\": [],\r\n        \"tags\": [],\r\n        \"createdAt\": \"2024-08-15T23:57:38.872Z\",\r\n        \"updatedAt\": \"2024-08-16T00:35:31.118Z\"\r\n    },\r\n    \"taxRate\": {\r\n        \"ref\": \"\",\r\n        \"name\": \"Sales Tax\",\r\n        \"rate\": 0.05,\r\n        \"agency\": \"Tax Agency\",\r\n        \"isDefault\": true\r\n    },\r\n    \"orderItems\": [\r\n        {\r\n            \"price\": \"0\",\r\n            \"extendedPrice\": 0,\r\n            \"description\": \"Default service item created on initial setup.\",\r\n            \"number\": \"MISC-SERVICE\",\r\n            \"uom\": {\r\n                \"name\": \"EA\",\r\n                \"conversion\": 1\r\n            },\r\n            \"part\": {\r\n                \"id\": 54,\r\n                \"number\": \"MISC-SERVICE\",\r\n                \"ref\": null,\r\n                \"hookRef\": null,\r\n                \"incomeAccountId\": null,\r\n                \"inventoryAccountId\": null,\r\n                \"expenseAccountId\": null,\r\n                \"description\": \"Default service item created on initial setup.\",\r\n                \"stockLevel\": null,\r\n                \"cost\": \"0\",\r\n                \"price\": \"0\",\r\n                \"type\": \"Service\",\r\n                \"taxable\": true,\r\n                \"trackingType\": [],\r\n                \"active\": true,\r\n                \"businessId\": \"K5jrN7LSJ7\",\r\n                \"defaultLocationId\": null,\r\n                \"notes\": [],\r\n                \"tags\": [],\r\n                \"uoms\": [\r\n                    {\r\n                        \"name\": \"EA\",\r\n                        \"conversion\": 1\r\n                    }\r\n                ],\r\n                \"createdAt\": \"2024-08-12T02:11:49.215Z\",\r\n                \"updatedAt\": \"2024-08-12T02:11:49.215Z\",\r\n                \"defaultLocation\": null,\r\n                \"expenseAccount\": null,\r\n                \"incomeAccount\": null,\r\n                \"inventoryAccount\": null\r\n            },\r\n            \"partId\": 54,\r\n            \"quantity\": 1,\r\n            \"locationId\": null,\r\n            \"location\": null,\r\n            \"complete\": false\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base}}/order"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 18 Dec 2023 21:51:46 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"1246"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"a7ce1937-7912-4fa7-9040-81e1c58b592d"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"x-amz-apigw-id","value":"QKLFqHjsIAMEHQQ="},{"key":"X-Amzn-Trace-Id","value":"Root=1-6580bef0-4ea2206462785a49633dc535;Sampled=0;lineage=2a121c2a:0|3239fe84:0"},{"key":"Access-Control-Allow-Credentials","value":"true"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 148,\n    \"number\": \"148\",\n    \"total\": 0,\n    \"subTotal\": \"0\",\n    \"terms\": \"Card\",\n    \"status\": \"Estimate\",\n    \"paymentStatus\": null,\n    \"tax\": 0,\n    \"hookRef\": null,\n    \"businessId\": \"K5jrN7LSJ7\",\n    \"taxRate\": {\n        \"ref\": \"\",\n        \"name\": \"Sales Tax\",\n        \"rate\": 0.05,\n        \"agency\": \"Tax Agency\",\n        \"isDefault\": true\n    },\n    \"customerId\": 66,\n    \"assignedToUserId\": 23,\n    \"notes\": [],\n    \"tags\": [],\n    \"createdAt\": \"2024-08-16T01:35:45.904Z\",\n    \"updatedAt\": \"2024-08-16T01:35:45.936Z\",\n    \"customer\": {\n        \"id\": 66,\n        \"active\": true,\n        \"hookRef\": null,\n        \"optIn\": true,\n        \"cards\": [],\n        \"ref\": null,\n        \"name\": \"Linda Robledo\",\n        \"terms\": null,\n        \"companyName\": \"rob\",\n        \"taxRate\": {\n            \"ref\": \"\",\n            \"name\": \"Sales Tax\",\n            \"rate\": 0.05,\n            \"agency\": \"Tax Agency\",\n            \"isDefault\": true\n        },\n        \"businessId\": \"K5jrN7LSJ7\",\n        \"contacts\": [\n            {\n                \"type\": \"phone\",\n                \"number\": \"+13852164401\"\n            },\n            {\n                \"type\": \"mobile\",\n                \"number\": \"+13852164401\"\n            },\n            {\n                \"type\": \"email\",\n                \"address\": \"linda@asdf.com\"\n            },\n            {\n                \"city\": \"American Fork\",\n                \"type\": \"billToAddress\",\n                \"state\": \"UT\",\n                \"street\": \"574 S 420 E\",\n                \"postalCode\": \"84003\",\n                \"countryCode\": \"US\"\n            },\n            {\n                \"city\": \"American Fork\",\n                \"type\": \"shipToAddress\",\n                \"state\": \"UT\",\n                \"street\": \"574 S 420 E\",\n                \"postalCode\": \"84003\",\n                \"countryCode\": \"US\"\n            }\n        ],\n        \"notes\": [],\n        \"tags\": [],\n        \"createdAt\": \"2024-08-15T23:57:38.872Z\",\n        \"updatedAt\": \"2024-08-16T00:35:31.118Z\"\n    },\n    \"orderItems\": [\n        {\n            \"id\": 175,\n            \"price\": \"0\",\n            \"description\": \"Default service item created on initial setup.\",\n            \"number\": \"MISC-SERVICE\",\n            \"uom\": {\n                \"name\": \"EA\",\n                \"conversion\": 1\n            },\n            \"partId\": 54,\n            \"quantity\": 1,\n            \"locationId\": null,\n            \"complete\": false,\n            \"orderId\": 148,\n            \"businessId\": \"K5jrN7LSJ7\",\n            \"createdAt\": \"2024-08-16T01:35:45.983Z\",\n            \"updatedAt\": \"2024-08-16T01:35:45.983Z\",\n            \"vendorId\": null,\n            \"customerId\": null\n        }\n    ]\n}"}],"_postman_id":"d73444ae-bc1b-4628-bc10-5d4741a501ef"},{"name":"Get Orders","event":[{"listen":"test","script":{"id":"0c1478c4-9179-4224-9c05-2862b1f86154","exec":["pm.test('Status code is 200', function () {\r","    pm.response.to.have.status(200);\r","})"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"832c2ccf-796c-45fa-8772-ffbe92fee704","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"replaceWithFloPayUser"},{"key":"password","value":"replaceWithFloPayPassword"}]},"isInherited":false},"method":"GET","header":[],"url":"{{base}}/order?limit=2&offset=0\n","urlObject":{"path":["order"],"host":["{{base}}"],"query":[{"key":"limit","value":"2"},{"key":"offset","value":"0\n"}],"variable":[]}},"response":[{"id":"06e3f306-34c9-4818-a055-57528b7d3540","name":"Get Orders","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://devapi.flopay.co/erp/order?limit=2&offset=0\n","protocol":"https","host":["devapi","flopay","co"],"path":["erp","order"],"query":[{"key":"limit","value":"2"},{"key":"offset","value":"0\n"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 08 Dec 2023 20:18:43 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"14229"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"8f580bcb-a071-4ac6-aebe-2ff4d6ae1c6b"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"x-amz-apigw-id","value":"PpAFjEKLoAMEZJg="},{"key":"X-Amzn-Trace-Id","value":"Root=1-65737a23-7575311a6f0d6fea5481d948;Sampled=0;lineage=c1be2a7a:0"},{"key":"Access-Control-Allow-Credentials","value":"true"}],"cookie":[],"responseTime":null,"body":"{\n    \"offset\": 0,\n    \"limit\": 2,\n    \"rows\": [\n        {\n            \"id\": 156,\n            \"number\": \"156\",\n            \"total\": \"0\",\n            \"subTotal\": \"0\",\n            \"terms\": \"Card\",\n            \"status\": \"Estimate\",\n            \"paymentStatus\": null,\n            \"tax\": \"0\",\n            \"hookRef\": null,\n            \"businessId\": \"K5jrN7LSJ7\",\n            \"taxRate\": {\n                \"name\": \"Sales Tax\",\n                \"rate\": 0.05,\n                \"agency\": \"Tax Agency\",\n                \"isDefault\": true\n            },\n            \"customerId\": 66,\n            \"assignedToUserId\": 23,\n            \"notes\": [],\n            \"tags\": [],\n            \"createdAt\": \"2024-08-16T01:45:49.237Z\",\n            \"updatedAt\": \"2024-08-16T01:45:49.272Z\",\n            \"customer\": {\n                \"id\": 66,\n                \"active\": true,\n                \"hookRef\": null,\n                \"optIn\": true,\n                \"cards\": [],\n                \"ref\": null,\n                \"name\": \"Linda Robledo\",\n                \"terms\": null,\n                \"companyName\": \"rob\",\n                \"taxRate\": {\n                    \"ref\": \"\",\n                    \"name\": \"Sales Tax\",\n                    \"rate\": 0.05,\n                    \"agency\": \"Tax Agency\",\n                    \"isDefault\": true\n                },\n                \"businessId\": \"K5jrN7LSJ7\",\n                \"contacts\": [\n                    {\n                        \"type\": \"phone\",\n                        \"number\": \"+13852164401\"\n                    },\n                    {\n                        \"type\": \"mobile\",\n                        \"number\": \"+13852164401\"\n                    },\n                    {\n                        \"type\": \"email\",\n                        \"address\": \"linda@asdf.com\"\n                    },\n                    {\n                        \"city\": \"American Fork\",\n                        \"type\": \"billToAddress\",\n                        \"state\": \"UT\",\n                        \"street\": \"574 S 420 E\",\n                        \"postalCode\": \"84003\",\n                        \"countryCode\": \"US\"\n                    },\n                    {\n                        \"city\": \"American Fork\",\n                        \"type\": \"shipToAddress\",\n                        \"state\": \"UT\",\n                        \"street\": \"574 S 420 E\",\n                        \"postalCode\": \"84003\",\n                        \"countryCode\": \"US\"\n                    }\n                ],\n                \"notes\": [],\n                \"tags\": [],\n                \"createdAt\": \"2024-08-15T23:57:38.872Z\",\n                \"updatedAt\": \"2024-08-16T00:35:31.118Z\"\n            },\n            \"assignedToUser\": {\n                \"name\": \"Change Me Change Me\",\n                \"id\": 23,\n                \"username\": \"lindabrobledo@gmail.com\",\n                \"businessId\": \"K5jrN7LSJ7\",\n                \"module\": {\n                    \"part\": true,\n                    \"user\": true,\n                    \"order\": true,\n                    \"report\": true,\n                    \"vendor\": true,\n                    \"company\": true,\n                    \"payment\": true,\n                    \"release\": true,\n                    \"webhook\": true,\n                    \"customer\": true,\n                    \"location\": true,\n                    \"dashboard\": true,\n                    \"inventory\": true,\n                    \"receivable\": true,\n                    \"webhookLog\": true\n                },\n                \"nameFirst\": \"Change Me\",\n                \"nameLast\": \"Change Me\",\n                \"contacts\": [],\n                \"notes\": [],\n                \"tags\": [],\n                \"createdAt\": \"2024-08-12T02:11:48.900Z\",\n                \"updatedAt\": \"2024-08-12T02:11:48.900Z\"\n            },\n            \"payments\": [],\n            \"orderItems\": [\n                {\n                    \"id\": 183,\n                    \"businessId\": \"K5jrN7LSJ7\",\n                    \"complete\": false,\n                    \"description\": null,\n                    \"number\": \"MISC-SERVICE\",\n                    \"price\": \"0\",\n                    \"partId\": 54,\n                    \"locationId\": null,\n                    \"vendorId\": null,\n                    \"customerId\": null,\n                    \"quantity\": \"1\",\n                    \"uom\": {\n                        \"name\": \"EA\",\n                        \"conversion\": 1\n                    },\n                    \"createdAt\": \"2024-08-16T01:45:49.309Z\",\n                    \"updatedAt\": \"2024-08-16T01:45:49.309Z\",\n                    \"orderId\": 156,\n                    \"part\": {\n                        \"id\": 54,\n                        \"number\": \"MISC-SERVICE\",\n                        \"ref\": null,\n                        \"hookRef\": null,\n                        \"incomeAccountId\": null,\n                        \"inventoryAccountId\": null,\n                        \"expenseAccountId\": null,\n                        \"description\": \"Default service item created on initial setup.\",\n                        \"stockLevel\": null,\n                        \"cost\": \"0\",\n                        \"price\": \"0\",\n                        \"type\": \"Service\",\n                        \"taxable\": true,\n                        \"trackingType\": [],\n                        \"active\": true,\n                        \"businessId\": \"K5jrN7LSJ7\",\n                        \"defaultLocationId\": null,\n                        \"notes\": [],\n                        \"tags\": [],\n                        \"uoms\": [\n                            {\n                                \"name\": \"EA\",\n                                \"conversion\": 1\n                            }\n                        ],\n                        \"createdAt\": \"2024-08-12T02:11:49.215Z\",\n                        \"updatedAt\": \"2024-08-12T02:11:49.215Z\"\n                    }\n                }\n            ],\n            \"release\": null\n        },\n        {\n            \"id\": 155,\n            \"number\": \"155\",\n            \"total\": \"0\",\n            \"subTotal\": \"0\",\n            \"terms\": \"Card\",\n            \"status\": \"Estimate\",\n            \"paymentStatus\": null,\n            \"tax\": \"0\",\n            \"hookRef\": null,\n            \"businessId\": \"K5jrN7LSJ7\",\n            \"taxRate\": {\n                \"name\": \"Sales Tax\",\n                \"rate\": 0.05,\n                \"agency\": \"Tax Agency\",\n                \"isDefault\": true\n            },\n            \"customerId\": 66,\n            \"assignedToUserId\": 23,\n            \"notes\": [],\n            \"tags\": [],\n            \"createdAt\": \"2024-08-16T01:45:10.554Z\",\n            \"updatedAt\": \"2024-08-16T01:45:10.606Z\",\n            \"customer\": {\n                \"id\": 66,\n                \"active\": true,\n                \"hookRef\": null,\n                \"optIn\": true,\n                \"cards\": [],\n                \"ref\": null,\n                \"name\": \"Linda Robledo\",\n                \"terms\": null,\n                \"companyName\": \"rob\",\n                \"taxRate\": {\n                    \"ref\": \"\",\n                    \"name\": \"Sales Tax\",\n                    \"rate\": 0.05,\n                    \"agency\": \"Tax Agency\",\n                    \"isDefault\": true\n                },\n                \"businessId\": \"K5jrN7LSJ7\",\n                \"contacts\": [\n                    {\n                        \"type\": \"phone\",\n                        \"number\": \"+13852164401\"\n                    },\n                    {\n                        \"type\": \"mobile\",\n                        \"number\": \"+13852164401\"\n                    },\n                    {\n                        \"type\": \"email\",\n                        \"address\": \"linda@asdf.com\"\n                    },\n                    {\n                        \"city\": \"American Fork\",\n                        \"type\": \"billToAddress\",\n                        \"state\": \"UT\",\n                        \"street\": \"574 S 420 E\",\n                        \"postalCode\": \"84003\",\n                        \"countryCode\": \"US\"\n                    },\n                    {\n                        \"city\": \"American Fork\",\n                        \"type\": \"shipToAddress\",\n                        \"state\": \"UT\",\n                        \"street\": \"574 S 420 E\",\n                        \"postalCode\": \"84003\",\n                        \"countryCode\": \"US\"\n                    }\n                ],\n                \"notes\": [],\n                \"tags\": [],\n                \"createdAt\": \"2024-08-15T23:57:38.872Z\",\n                \"updatedAt\": \"2024-08-16T00:35:31.118Z\"\n            },\n            \"assignedToUser\": {\n                \"name\": \"Change Me Change Me\",\n                \"id\": 23,\n                \"username\": \"lindabrobledo@gmail.com\",\n                \"businessId\": \"K5jrN7LSJ7\",\n                \"module\": {\n                    \"part\": true,\n                    \"user\": true,\n                    \"order\": true,\n                    \"report\": true,\n                    \"vendor\": true,\n                    \"company\": true,\n                    \"payment\": true,\n                    \"release\": true,\n                    \"webhook\": true,\n                    \"customer\": true,\n                    \"location\": true,\n                    \"dashboard\": true,\n                    \"inventory\": true,\n                    \"receivable\": true,\n                    \"webhookLog\": true\n                },\n                \"nameFirst\": \"Change Me\",\n                \"nameLast\": \"Change Me\",\n                \"contacts\": [],\n                \"notes\": [],\n                \"tags\": [],\n                \"createdAt\": \"2024-08-12T02:11:48.900Z\",\n                \"updatedAt\": \"2024-08-12T02:11:48.900Z\"\n            },\n            \"payments\": [],\n            \"orderItems\": [\n                {\n                    \"id\": 182,\n                    \"businessId\": \"K5jrN7LSJ7\",\n                    \"complete\": false,\n                    \"description\": null,\n                    \"number\": \"MISC-SERVICE\",\n                    \"price\": \"0\",\n                    \"partId\": 54,\n                    \"locationId\": null,\n                    \"vendorId\": null,\n                    \"customerId\": null,\n                    \"quantity\": \"1\",\n                    \"uom\": {\n                        \"name\": \"EA\",\n                        \"conversion\": 1\n                    },\n                    \"createdAt\": \"2024-08-16T01:45:10.648Z\",\n                    \"updatedAt\": \"2024-08-16T01:45:10.648Z\",\n                    \"orderId\": 155,\n                    \"part\": {\n                        \"id\": 54,\n                        \"number\": \"MISC-SERVICE\",\n                        \"ref\": null,\n                        \"hookRef\": null,\n                        \"incomeAccountId\": null,\n                        \"inventoryAccountId\": null,\n                        \"expenseAccountId\": null,\n                        \"description\": \"Default service item created on initial setup.\",\n                        \"stockLevel\": null,\n                        \"cost\": \"0\",\n                        \"price\": \"0\",\n                        \"type\": \"Service\",\n                        \"taxable\": true,\n                        \"trackingType\": [],\n                        \"active\": true,\n                        \"businessId\": \"K5jrN7LSJ7\",\n                        \"defaultLocationId\": null,\n                        \"notes\": [],\n                        \"tags\": [],\n                        \"uoms\": [\n                            {\n                                \"name\": \"EA\",\n                                \"conversion\": 1\n                            }\n                        ],\n                        \"createdAt\": \"2024-08-12T02:11:49.215Z\",\n                        \"updatedAt\": \"2024-08-12T02:11:49.215Z\"\n                    }\n                }\n            ],\n            \"release\": null\n        }\n    ],\n    \"hasMore\": true\n}"}],"_postman_id":"832c2ccf-796c-45fa-8772-ffbe92fee704"},{"name":"Get Order","event":[{"listen":"test","script":{"id":"ab2066db-7a06-4782-accc-6a5cf1080dbc","exec":["pm.test('Status code is 200', function () {\r","    pm.response.to.have.status(200);\r","})"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"d3e3160a-6036-4aa5-a9f0-e224786130bf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"replaceWithFloPayUser"},{"key":"password","value":"replaceWithFloPayPassword"}]},"isInherited":false},"method":"GET","header":[],"url":"{{base}}/order/","urlObject":{"path":["order",""],"host":["{{base}}"],"query":[],"variable":[]}},"response":[{"id":"94cd669e-115f-4e7d-b311-b38770cec226","name":"Get Order","originalRequest":{"method":"GET","header":[],"url":"{{base}}/order/59"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 18 Dec 2023 20:36:47 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"3109"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"39f669d8-868e-42b7-b91a-658c346588f2"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"x-amz-apigw-id","value":"QKAGkGgUIAMEAPA="},{"key":"X-Amzn-Trace-Id","value":"Root=1-6580ad5c-2ed4b6517964291376f43584;Sampled=0;lineage=7f5f4d0b:0"},{"key":"Access-Control-Allow-Credentials","value":"true"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 156,\n    \"number\": \"156\",\n    \"total\": \"0\",\n    \"subTotal\": \"0\",\n    \"terms\": \"Card\",\n    \"status\": \"Estimate\",\n    \"paymentStatus\": null,\n    \"tax\": \"0\",\n    \"hookRef\": null,\n    \"businessId\": \"K5jrN7LSJ7\",\n    \"taxRate\": {\n        \"name\": \"Sales Tax\",\n        \"rate\": 0.05,\n        \"agency\": \"Tax Agency\",\n        \"isDefault\": true\n    },\n    \"customerId\": 66,\n    \"assignedToUserId\": 23,\n    \"notes\": [],\n    \"tags\": [],\n    \"createdAt\": \"2024-08-16T01:45:49.237Z\",\n    \"updatedAt\": \"2024-08-16T01:45:49.272Z\",\n    \"orderItems\": [\n        {\n            \"id\": 183,\n            \"businessId\": \"K5jrN7LSJ7\",\n            \"complete\": false,\n            \"description\": null,\n            \"number\": \"MISC-SERVICE\",\n            \"price\": \"0\",\n            \"partId\": 54,\n            \"locationId\": null,\n            \"vendorId\": null,\n            \"customerId\": null,\n            \"quantity\": \"1\",\n            \"uom\": {\n                \"name\": \"EA\",\n                \"conversion\": 1\n            },\n            \"createdAt\": \"2024-08-16T01:45:49.309Z\",\n            \"updatedAt\": \"2024-08-16T01:45:49.309Z\",\n            \"orderId\": 156,\n            \"part\": {\n                \"id\": 54,\n                \"number\": \"MISC-SERVICE\",\n                \"ref\": null,\n                \"hookRef\": null,\n                \"incomeAccountId\": null,\n                \"inventoryAccountId\": null,\n                \"expenseAccountId\": null,\n                \"description\": \"Default service item created on initial setup.\",\n                \"stockLevel\": null,\n                \"cost\": \"0\",\n                \"price\": \"0\",\n                \"type\": \"Service\",\n                \"taxable\": true,\n                \"trackingType\": [],\n                \"active\": true,\n                \"businessId\": \"K5jrN7LSJ7\",\n                \"defaultLocationId\": null,\n                \"notes\": [],\n                \"tags\": [],\n                \"uoms\": [\n                    {\n                        \"name\": \"EA\",\n                        \"conversion\": 1\n                    }\n                ],\n                \"createdAt\": \"2024-08-12T02:11:49.215Z\",\n                \"updatedAt\": \"2024-08-12T02:11:49.215Z\",\n                \"defaultLocation\": null,\n                \"expenseAccount\": null,\n                \"incomeAccount\": null,\n                \"inventoryAccount\": null\n            }\n        }\n    ],\n    \"assignedToUser\": {\n        \"name\": \"Change Me Change Me\",\n        \"id\": 23,\n        \"username\": \"lindabrobledo@gmail.com\",\n        \"businessId\": \"K5jrN7LSJ7\",\n        \"module\": {\n            \"part\": true,\n            \"user\": true,\n            \"order\": true,\n            \"report\": true,\n            \"vendor\": true,\n            \"company\": true,\n            \"payment\": true,\n            \"release\": true,\n            \"webhook\": true,\n            \"customer\": true,\n            \"location\": true,\n            \"dashboard\": true,\n            \"inventory\": true,\n            \"receivable\": true,\n            \"webhookLog\": true\n        },\n        \"nameFirst\": \"Change Me\",\n        \"nameLast\": \"Change Me\",\n        \"contacts\": [],\n        \"notes\": [],\n        \"tags\": [],\n        \"createdAt\": \"2024-08-12T02:11:48.900Z\",\n        \"updatedAt\": \"2024-08-12T02:11:48.900Z\"\n    },\n    \"customer\": {\n        \"id\": 66,\n        \"active\": true,\n        \"hookRef\": null,\n        \"optIn\": true,\n        \"cards\": [],\n        \"ref\": null,\n        \"name\": \"Linda Robledo\",\n        \"terms\": null,\n        \"companyName\": \"rob\",\n        \"taxRate\": {\n            \"ref\": \"\",\n            \"name\": \"Sales Tax\",\n            \"rate\": 0.05,\n            \"agency\": \"Tax Agency\",\n            \"isDefault\": true\n        },\n        \"businessId\": \"K5jrN7LSJ7\",\n        \"contacts\": [\n            {\n                \"type\": \"phone\",\n                \"number\": \"+13852164401\"\n            },\n            {\n                \"type\": \"mobile\",\n                \"number\": \"+13852164401\"\n            },\n            {\n                \"type\": \"email\",\n                \"address\": \"linda@asdf.com\"\n            },\n            {\n                \"city\": \"American Fork\",\n                \"type\": \"billToAddress\",\n                \"state\": \"UT\",\n                \"street\": \"574 S 420 E\",\n                \"postalCode\": \"84003\",\n                \"countryCode\": \"US\"\n            },\n            {\n                \"city\": \"American Fork\",\n                \"type\": \"shipToAddress\",\n                \"state\": \"UT\",\n                \"street\": \"574 S 420 E\",\n                \"postalCode\": \"84003\",\n                \"countryCode\": \"US\"\n            }\n        ],\n        \"notes\": [],\n        \"tags\": [],\n        \"createdAt\": \"2024-08-15T23:57:38.872Z\",\n        \"updatedAt\": \"2024-08-16T00:35:31.118Z\"\n    },\n    \"release\": null,\n    \"payments\": []\n}"}],"_postman_id":"d3e3160a-6036-4aa5-a9f0-e224786130bf"},{"name":"Update Order","id":"5b269719-7138-4897-a4fb-130acc83444b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"replaceWithFloPayUser"},{"key":"password","value":"replaceWithFloPayPassword"}]},"isInherited":false},"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"id\": 66,\r\n    \"number\": \"66\",\r\n    \"total\": \"0\",\r\n    \"subTotal\": \"0\",\r\n    \"terms\": \"Card\",\r\n    \"status\": \"Estimate\",\r\n    \"paymentStatus\": null,\r\n    \"tax\": \"0\",\r\n    \"businessId\": \"{{businessId}}\",\r\n    \"customerId\": 91,\r\n    \"assignedToUserId\": 83,\r\n    \"notes\": [],\r\n    \"tags\": [],\r\n    \"createdAt\": \"2023-12-18T21:08:18.368Z\",\r\n    \"updatedAt\": \"2023-12-18T21:08:18.401Z\",\r\n    \"orderItems\": [\r\n        {\r\n            \"id\": 17,\r\n            \"businessId\": \"{{businessId}}\",\r\n            \"complete\": false,\r\n            \"partId\": 2643,\r\n            \"locationId\": 1,\r\n            \"vendorId\": null,\r\n            \"customerId\": null,\r\n            \"quantity\": \"1\",\r\n            \"uom\": \"HR\",\r\n            \"createdAt\": \"2023-12-18T21:08:18.437Z\",\r\n            \"updatedAt\": \"2023-12-18T21:08:18.437Z\",\r\n            \"orderId\": 66,\r\n            \"part\": {\r\n                \"id\": 2643,\r\n                \"number\": \"Sod0000\",\r\n                \"ref\": \"14\",\r\n                \"incomeAccountId\": 49,\r\n                \"inventoryAccountId\": null,\r\n                \"expenseAccountId\": null,\r\n                \"description\": \"Sod\",\r\n                \"stockLevel\": null,\r\n                \"cost\": \"0\",\r\n                \"price\": \"0\",\r\n                \"type\": \"Service\",\r\n                \"taxable\": true,\r\n                \"trackingType\": [],\r\n                \"active\": true,\r\n                \"businessId\": \"{{businessId}}\",\r\n                \"defaultLocationId\": 1,\r\n                \"notes\": [],\r\n                \"tags\": [],\r\n                \"uoms\": [\r\n                    {\r\n                        \"name\": \"HR\",\r\n                        \"conversion\": 1\r\n                    }\r\n                ],\r\n                \"createdAt\": \"2023-12-17T23:17:47.657Z\",\r\n                \"updatedAt\": \"2023-12-17T23:17:47.657Z\",\r\n                \"defaultLocation\": {\r\n                    \"id\": 1,\r\n                    \"name\": \"Warehouse\",\r\n                    \"description\": \"Medium Warehouse \",\r\n                    \"address\": \"1010 East State Street, Orem, Ut, 84605\",\r\n                    \"active\": true,\r\n                    \"site\": true,\r\n                    \"readonly\": null,\r\n                    \"path\": \".20.\",\r\n                    \"businessId\": \"4tsYEMs7z3\",\r\n                    \"notes\": [],\r\n                    \"tags\": [],\r\n                    \"createdAt\": \"2023-10-04T23:15:48.137Z\",\r\n                    \"updatedAt\": \"2023-12-04T16:09:56.131Z\",\r\n                    \"parentId\": null,\r\n                    \"parent\": null\r\n                },\r\n                \"expenseAccount\": null,\r\n                \"incomeAccount\": {\r\n                    \"id\": 49,\r\n                    \"name\": \"Telephone\",\r\n                    \"businessId\": \"4tsYEMs7z3\",\r\n                    \"subAccount\": true,\r\n                    \"accountType\": \"Expense\",\r\n                    \"active\": true,\r\n                    \"ref\": \"77\",\r\n                    \"createdAt\": \"2023-11-30T06:12:44.318Z\",\r\n                    \"updatedAt\": \"2023-11-30T06:12:44.318Z\"\r\n                },\r\n                \"inventoryAccount\": null\r\n            }\r\n        },\r\n        {\r\n            \"uom\": \"EA\",\r\n            \"part\": {\r\n                \"id\": 2647,\r\n                \"number\": \"Bic Pen 1818\",\r\n                \"ref\": \"19\",\r\n                \"incomeAccountId\": 79,\r\n                \"inventoryAccountId\": null,\r\n                \"expenseAccountId\": 80,\r\n                \"description\": \"Great Pen for Writing\",\r\n                \"stockLevel\": \"200\",\r\n                \"cost\": \"4\",\r\n                \"price\": \"500\",\r\n                \"type\": \"Inventory\",\r\n                \"taxable\": true,\r\n                \"trackingType\": [],\r\n                \"active\": true,\r\n                \"businessId\": \"FD8fkrKYSW\",\r\n                \"defaultLocationId\": 1,\r\n                \"notes\": [],\r\n                \"tags\": [],\r\n                \"uoms\": [\r\n                    {\r\n                        \"name\": \"EA\",\r\n                        \"conversion\": 1\r\n                    }\r\n                ],\r\n                \"createdAt\": \"2023-12-17T23:18:45.961Z\",\r\n                \"updatedAt\": \"2023-12-17T23:18:45.961Z\",\r\n                \"defaultLocation\": {\r\n                    \"id\": 1,\r\n                    \"name\": \"Warehouse\",\r\n                    \"description\": \"Medium Warehouse \",\r\n                    \"address\": \"1010 East State Street, Orem, Ut, 84605\",\r\n                    \"active\": true,\r\n                    \"site\": true,\r\n                    \"readonly\": null,\r\n                    \"path\": \".20.\",\r\n                    \"businessId\": \"4tsYEMs7z3\",\r\n                    \"notes\": [],\r\n                    \"tags\": [],\r\n                    \"createdAt\": \"2023-10-04T23:15:48.137Z\",\r\n                    \"updatedAt\": \"2023-12-04T16:09:56.131Z\",\r\n                    \"parentId\": null,\r\n                    \"parent\": null\r\n                },\r\n                \"expenseAccount\": {\r\n                    \"id\": 80,\r\n                    \"name\": \"Arizona Dept. of Revenue Payable\",\r\n                    \"businessId\": \"4tsYEMs7z3\",\r\n                    \"subAccount\": false,\r\n                    \"accountType\": \"Other Current Liability\",\r\n                    \"active\": true,\r\n                    \"ref\": \"89\",\r\n                    \"createdAt\": \"2023-11-30T07:37:46.214Z\",\r\n                    \"updatedAt\": \"2023-11-30T07:37:46.214Z\"\r\n                },\r\n                \"incomeAccount\": {\r\n                    \"id\": 79,\r\n                    \"name\": \"Commissions & fees\",\r\n                    \"businessId\": \"4tsYEMs7z3\",\r\n                    \"subAccount\": false,\r\n                    \"accountType\": \"Expense\",\r\n                    \"active\": true,\r\n                    \"ref\": \"9\",\r\n                    \"createdAt\": \"2023-11-30T07:37:46.208Z\",\r\n                    \"updatedAt\": \"2023-11-30T07:37:46.208Z\"\r\n                },\r\n                \"inventoryAccount\": null\r\n            },\r\n            \"partId\": 2647,\r\n            \"quantity\": \"2\",\r\n            \"locationId\": 1,\r\n            \"location\": {\r\n                \"id\": 1,\r\n                \"name\": \"Warehouse\",\r\n                \"description\": \"Medium Warehouse \",\r\n                \"address\": \"1010 East State Street, Orem, Ut, 84605\",\r\n                \"active\": true,\r\n                \"site\": true,\r\n                \"readonly\": null,\r\n                \"path\": \".20.\",\r\n                \"businessId\": \"4tsYEMs7z3\",\r\n                \"notes\": [],\r\n                \"tags\": [],\r\n                \"createdAt\": \"2023-10-04T23:15:48.137Z\",\r\n                \"updatedAt\": \"2023-12-04T16:09:56.131Z\",\r\n                \"parentId\": null,\r\n                \"parent\": null\r\n            },\r\n            \"complete\": false\r\n        }\r\n    ],\r\n    \"assignedToUser\": {\r\n        \"name\": \"Change Me Change Me\",\r\n        \"id\": 83,\r\n        \"username\": \"kevinbatchelor@gmail.com\",\r\n        \"businessId\": \"FD8fkrKYSW\",\r\n        \"module\": {\r\n            \"part\": true,\r\n            \"user\": true,\r\n            \"order\": true,\r\n            \"report\": true,\r\n            \"vendor\": true,\r\n            \"company\": true,\r\n            \"payment\": true,\r\n            \"release\": true,\r\n            \"webhook\": true,\r\n            \"customer\": true,\r\n            \"location\": true,\r\n            \"dashboard\": true,\r\n            \"inventory\": true,\r\n            \"receivable\": true,\r\n            \"webhookLog\": true\r\n        },\r\n        \"nameFirst\": \"Change Me\",\r\n        \"nameLast\": \"Change Me\",\r\n        \"contacts\": [],\r\n        \"notes\": [],\r\n        \"tags\": [],\r\n        \"createdAt\": \"2023-12-17T02:55:38.630Z\",\r\n        \"updatedAt\": \"2023-12-17T02:55:38.630Z\"\r\n    },\r\n    \"customer\": {\r\n        \"id\": 91,\r\n        \"active\": true,\r\n        \"optIn\": true,\r\n        \"ref\": null,\r\n        \"name\": \"Jackie Lor\",\r\n        \"terms\": null,\r\n        \"companyName\": null,\r\n        \"taxRate\": {\r\n            \"ref\": \"\",\r\n            \"name\": \"DEFAULT\",\r\n            \"rate\": 0.05,\r\n            \"agency\": \"Default Agency\",\r\n            \"isDefault\": true\r\n        },\r\n        \"businessId\": \"FD8fkrKYSW\",\r\n        \"contacts\": [\r\n            {\r\n                \"type\": \"phone\",\r\n                \"number\": \"+14567824564\"\r\n            },\r\n            {\r\n                \"type\": \"mobile\",\r\n                \"number\": \"+14567824564\"\r\n            },\r\n            {\r\n                \"type\": \"email\",\r\n                \"address\": \"hunterlor@gmail.com\"\r\n            },\r\n            {\r\n                \"city\": \"Sin City \",\r\n                \"type\": \"billToAddress\",\r\n                \"state\": \"NV\",\r\n                \"street\": \"124 Capaculli Way\",\r\n                \"postalCode\": \"89004\",\r\n                \"countryCode\": \"US\"\r\n            },\r\n            {\r\n                \"city\": \"Sin City\",\r\n                \"type\": \"shipToAddress\",\r\n                \"state\": \"NV\",\r\n                \"street\": \"124 Capaculli Way\",\r\n                \"postalCode\": \"89004\",\r\n                \"countryCode\": \"US\"\r\n            }\r\n        ],\r\n        \"notes\": [],\r\n        \"tags\": [],\r\n        \"createdAt\": \"2023-12-18T20:32:13.538Z\",\r\n        \"updatedAt\": \"2023-12-18T20:32:13.538Z\"\r\n    },\r\n    \"release\": null,\r\n    \"payments\": []\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base}}/order/","urlObject":{"path":["order",""],"host":["{{base}}"],"query":[],"variable":[]}},"response":[{"id":"5c85e6c5-0c74-400d-bcb0-eb5c069685e2","name":"Required params only","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"businessId\": \"{{businessId}}\",\r\n    \"status\": \"Estimate\",\r\n    \"assignedToUser\": \"lindabrobledo@gmail.com\",\r\n    \"customerId\": 66,\r\n    \"orderItems\": [\r\n    {\r\n      \"price\": \"0\",\r\n      \"extendedPrice\": 0,\r\n      \"number\": \"MISC-SERVICE\",\r\n      \"uom\": {\r\n        \"name\": \"EA\",\r\n        \"conversion\": 1\r\n      },\r\n      \"partId\": 54,\r\n      \"quantity\": 1\r\n    }\r\n    ],\r\n    \"taxRate\": {\r\n        \"name\": \"Sales Tax\",\r\n        \"rate\": 0.05,\r\n        \"agency\": \"Tax Agency\",\r\n        \"isDefault\": true\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base}}/order/66"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 18 Dec 2023 21:44:20 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"4051"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"57aef639-d6d5-4ef0-b194-ed4935746f25"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"x-amz-apigw-id","value":"QKKAJHF_IAMEdPg="},{"key":"X-Amzn-Trace-Id","value":"Root=1-6580bd33-4fc2e73d75b0c5f57184536f;Sampled=0;lineage=132e5424:0"},{"key":"Access-Control-Allow-Credentials","value":"true"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 66,\n    \"number\": \"66\",\n    \"terms\": \"Card\",\n    \"status\": \"Estimate\",\n    \"paymentStatus\": null,\n    \"businessId\": \"FD8fkrKYSW\",\n    \"customerId\": 91,\n    \"assignedToUserId\": 83,\n    \"notes\": [],\n    \"tags\": [],\n    \"createdAt\": \"2023-12-18T21:08:18.368Z\",\n    \"updatedAt\": \"2023-12-18T21:08:18.401Z\",\n    \"orderItems\": [\n        {\n            \"businessId\": \"FD8fkrKYSW\",\n            \"complete\": false,\n            \"partId\": 2643,\n            \"locationId\": 1,\n            \"vendorId\": null,\n            \"customerId\": null,\n            \"quantity\": 1,\n            \"uom\": \"HR\",\n            \"createdAt\": \"2023-12-18T21:08:18.437Z\",\n            \"updatedAt\": \"2023-12-18T21:08:18.437Z\",\n            \"orderId\": 66,\n            \"part\": {\n                \"id\": 2643,\n                \"number\": \"Sod0000\",\n                \"ref\": \"14\",\n                \"incomeAccountId\": 49,\n                \"inventoryAccountId\": null,\n                \"expenseAccountId\": null,\n                \"description\": \"Sod\",\n                \"stockLevel\": null,\n                \"cost\": 0,\n                \"price\": 0,\n                \"type\": \"Service\",\n                \"taxable\": true,\n                \"trackingType\": [],\n                \"active\": true,\n                \"businessId\": \"FD8fkrKYSW\",\n                \"defaultLocationId\": 1,\n                \"notes\": [],\n                \"tags\": [],\n                \"uoms\": [\n                    {\n                        \"name\": \"HR\",\n                        \"conversion\": 1\n                    }\n                ],\n                \"createdAt\": \"2023-12-17T23:17:47.657Z\",\n                \"updatedAt\": \"2023-12-17T23:17:47.657Z\",\n                \"defaultLocation\": {\n                    \"id\": 1,\n                    \"name\": \"Warehouse\",\n                    \"description\": \"Medium Warehouse \",\n                    \"address\": \"1010 East State Street, Orem, Ut, 84605\",\n                    \"active\": true,\n                    \"site\": true,\n                    \"readonly\": null,\n                    \"path\": \".20.\",\n                    \"businessId\": \"4tsYEMs7z3\",\n                    \"notes\": [],\n                    \"tags\": [],\n                    \"createdAt\": \"2023-10-04T23:15:48.137Z\",\n                    \"updatedAt\": \"2023-12-04T16:09:56.131Z\",\n                    \"parentId\": null,\n                    \"parent\": null\n                },\n                \"expenseAccount\": null,\n                \"incomeAccount\": {\n                    \"id\": 49,\n                    \"name\": \"Telephone\",\n                    \"businessId\": \"4tsYEMs7z3\",\n                    \"subAccount\": true,\n                    \"accountType\": \"Expense\",\n                    \"active\": true,\n                    \"ref\": \"77\",\n                    \"createdAt\": \"2023-11-30T06:12:44.318Z\",\n                    \"updatedAt\": \"2023-11-30T06:12:44.318Z\"\n                },\n                \"inventoryAccount\": null\n            }\n        },\n        {\n            \"uom\": \"EA\",\n            \"part\": {\n                \"id\": 2647,\n                \"number\": \"Bic Pen 1818\",\n                \"ref\": \"19\",\n                \"incomeAccountId\": 79,\n                \"inventoryAccountId\": null,\n                \"expenseAccountId\": 80,\n                \"description\": \"Great Pen for Writing\",\n                \"stockLevel\": \"200\",\n                \"cost\": 4,\n                \"price\": 500,\n                \"type\": \"Inventory\",\n                \"taxable\": true,\n                \"trackingType\": [],\n                \"active\": true,\n                \"businessId\": \"FD8fkrKYSW\",\n                \"defaultLocationId\": 1,\n                \"notes\": [],\n                \"tags\": [],\n                \"uoms\": [\n                    {\n                        \"name\": \"EA\",\n                        \"conversion\": 1\n                    }\n                ],\n                \"createdAt\": \"2023-12-17T23:18:45.961Z\",\n                \"updatedAt\": \"2023-12-17T23:18:45.961Z\",\n                \"defaultLocation\": {\n                    \"id\": 1,\n                    \"name\": \"Warehouse\",\n                    \"description\": \"Medium Warehouse \",\n                    \"address\": \"1010 East State Street, Orem, Ut, 84605\",\n                    \"active\": true,\n                    \"site\": true,\n                    \"readonly\": null,\n                    \"path\": \".20.\",\n                    \"businessId\": \"4tsYEMs7z3\",\n                    \"notes\": [],\n                    \"tags\": [],\n                    \"createdAt\": \"2023-10-04T23:15:48.137Z\",\n                    \"updatedAt\": \"2023-12-04T16:09:56.131Z\",\n                    \"parentId\": null,\n                    \"parent\": null\n                },\n                \"expenseAccount\": {\n                    \"id\": 80,\n                    \"name\": \"Arizona Dept. of Revenue Payable\",\n                    \"businessId\": \"4tsYEMs7z3\",\n                    \"subAccount\": false,\n                    \"accountType\": \"Other Current Liability\",\n                    \"active\": true,\n                    \"ref\": \"89\",\n                    \"createdAt\": \"2023-11-30T07:37:46.214Z\",\n                    \"updatedAt\": \"2023-11-30T07:37:46.214Z\"\n                },\n                \"incomeAccount\": {\n                    \"id\": 79,\n                    \"name\": \"Commissions & fees\",\n                    \"businessId\": \"4tsYEMs7z3\",\n                    \"subAccount\": false,\n                    \"accountType\": \"Expense\",\n                    \"active\": true,\n                    \"ref\": \"9\",\n                    \"createdAt\": \"2023-11-30T07:37:46.208Z\",\n                    \"updatedAt\": \"2023-11-30T07:37:46.208Z\"\n                },\n                \"inventoryAccount\": null\n            },\n            \"partId\": 2647,\n            \"quantity\": 2,\n            \"locationId\": 1,\n            \"location\": {\n                \"id\": 1,\n                \"name\": \"Warehouse\",\n                \"description\": \"Medium Warehouse \",\n                \"address\": \"1010 East State Street, Orem, Ut, 84605\",\n                \"active\": true,\n                \"site\": true,\n                \"readonly\": null,\n                \"path\": \".20.\",\n                \"businessId\": \"4tsYEMs7z3\",\n                \"notes\": [],\n                \"tags\": [],\n                \"createdAt\": \"2023-10-04T23:15:48.137Z\",\n                \"updatedAt\": \"2023-12-04T16:09:56.131Z\",\n                \"parentId\": null,\n                \"parent\": null\n            },\n            \"complete\": false,\n            \"orderId\": 66,\n            \"businessId\": \"FD8fkrKYSW\"\n        }\n    ],\n    \"customer\": {\n        \"id\": 91,\n        \"active\": true,\n        \"optIn\": true,\n        \"ref\": null,\n        \"name\": \"Jackie Lor\",\n        \"terms\": null,\n        \"companyName\": null,\n        \"taxRate\": {\n            \"ref\": \"\",\n            \"name\": \"DEFAULT\",\n            \"rate\": 0.05,\n            \"agency\": \"Default Agency\",\n            \"isDefault\": true\n        },\n        \"businessId\": \"FD8fkrKYSW\",\n        \"contacts\": [\n            {\n                \"type\": \"phone\",\n                \"number\": \"+14567824564\"\n            },\n            {\n                \"type\": \"mobile\",\n                \"number\": \"+14567824564\"\n            },\n            {\n                \"type\": \"email\",\n                \"address\": \"hunterlor@gmail.com\"\n            },\n            {\n                \"city\": \"Sin City \",\n                \"type\": \"billToAddress\",\n                \"state\": \"NV\",\n                \"street\": \"124 Capaculli Way\",\n                \"postalCode\": \"89004\",\n                \"countryCode\": \"US\"\n            },\n            {\n                \"city\": \"Sin City\",\n                \"type\": \"shipToAddress\",\n                \"state\": \"NV\",\n                \"street\": \"124 Capaculli Way\",\n                \"postalCode\": \"89004\",\n                \"countryCode\": \"US\"\n            }\n        ],\n        \"notes\": [],\n        \"tags\": [],\n        \"createdAt\": \"2023-12-18T20:32:13.538Z\",\n        \"updatedAt\": \"2023-12-18T20:32:13.538Z\"\n    },\n    \"release\": null,\n    \"payments\": [],\n    \"total\": 1050,\n    \"tax\": 50,\n    \"subTotal\": 1000\n}"},{"id":"cd23c282-6103-4b8a-ba50-a1a819fdd9d1","name":"Full params","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"businessId\": \"{{businessId}}\",\r\n    \"status\": \"Estimate\",\r\n    \"assignedToUser\": \"lindabrobledo@gmail.com\",\r\n    \"customerId\": 66,\r\n    \"customer\": {\r\n        \"id\": 66,\r\n        \"active\": true,\r\n        \"hookRef\": null,\r\n        \"optIn\": true,\r\n        \"cards\": [],\r\n        \"ref\": null,\r\n        \"name\": \"Linda Robledo\",\r\n        \"terms\": null,\r\n        \"companyName\": \"rob\",\r\n        \"taxRate\": {\r\n            \"ref\": \"\",\r\n            \"name\": \"Sales Tax\",\r\n            \"rate\": 0.05,\r\n            \"agency\": \"Tax Agency\",\r\n            \"isDefault\": true\r\n        },\r\n        \"businessId\": \"K5jrN7LSJ7\",\r\n        \"contacts\": [\r\n            {\r\n                \"type\": \"phone\",\r\n                \"number\": \"+13852164401\"\r\n            },\r\n            {\r\n                \"type\": \"mobile\",\r\n                \"number\": \"+13852164401\"\r\n            },\r\n            {\r\n                \"type\": \"email\",\r\n                \"address\": \"linda@asdf.com\"\r\n            },\r\n            {\r\n                \"city\": \"American Fork\",\r\n                \"type\": \"billToAddress\",\r\n                \"state\": \"UT\",\r\n                \"street\": \"574 S 420 E\",\r\n                \"postalCode\": \"84003\",\r\n                \"countryCode\": \"US\"\r\n            },\r\n            {\r\n                \"city\": \"American Fork\",\r\n                \"type\": \"shipToAddress\",\r\n                \"state\": \"UT\",\r\n                \"street\": \"574 S 420 E\",\r\n                \"postalCode\": \"84003\",\r\n                \"countryCode\": \"US\"\r\n            }\r\n        ],\r\n        \"notes\": [],\r\n        \"tags\": [],\r\n        \"createdAt\": \"2024-08-15T23:57:38.872Z\",\r\n        \"updatedAt\": \"2024-08-16T00:35:31.118Z\"\r\n    },\r\n    \"taxRate\": {\r\n        \"ref\": \"\",\r\n        \"name\": \"Sales Tax\",\r\n        \"rate\": 0.05,\r\n        \"agency\": \"Tax Agency\",\r\n        \"isDefault\": true\r\n    },\r\n    \"orderItems\": [\r\n        {\r\n            \"price\": \"0\",\r\n            \"extendedPrice\": 0,\r\n            \"description\": \"Default service item created on initial setup.\",\r\n            \"number\": \"MISC-SERVICE\",\r\n            \"uom\": {\r\n                \"name\": \"EA\",\r\n                \"conversion\": 1\r\n            },\r\n            \"part\": {\r\n                \"id\": 54,\r\n                \"number\": \"MISC-SERVICE\",\r\n                \"ref\": null,\r\n                \"hookRef\": null,\r\n                \"incomeAccountId\": null,\r\n                \"inventoryAccountId\": null,\r\n                \"expenseAccountId\": null,\r\n                \"description\": \"Default service item created on initial setup.\",\r\n                \"stockLevel\": null,\r\n                \"cost\": \"0\",\r\n                \"price\": \"0\",\r\n                \"type\": \"Service\",\r\n                \"taxable\": true,\r\n                \"trackingType\": [],\r\n                \"active\": true,\r\n                \"businessId\": \"K5jrN7LSJ7\",\r\n                \"defaultLocationId\": null,\r\n                \"notes\": [],\r\n                \"tags\": [],\r\n                \"uoms\": [\r\n                    {\r\n                        \"name\": \"EA\",\r\n                        \"conversion\": 1\r\n                    }\r\n                ],\r\n                \"createdAt\": \"2024-08-12T02:11:49.215Z\",\r\n                \"updatedAt\": \"2024-08-12T02:11:49.215Z\",\r\n                \"defaultLocation\": null,\r\n                \"expenseAccount\": null,\r\n                \"incomeAccount\": null,\r\n                \"inventoryAccount\": null\r\n            },\r\n            \"partId\": 54,\r\n            \"quantity\": 1,\r\n            \"locationId\": null,\r\n            \"location\": null,\r\n            \"complete\": false\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base}}/order/157"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 18 Dec 2023 21:44:20 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"4051"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"57aef639-d6d5-4ef0-b194-ed4935746f25"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"x-amz-apigw-id","value":"QKKAJHF_IAMEdPg="},{"key":"X-Amzn-Trace-Id","value":"Root=1-6580bd33-4fc2e73d75b0c5f57184536f;Sampled=0;lineage=132e5424:0"},{"key":"Access-Control-Allow-Credentials","value":"true"}],"cookie":[],"responseTime":null,"body":"{\n    \"businessId\": \"K5jrN7LSJ7\",\n    \"status\": \"Estimate\",\n    \"customerId\": 66,\n    \"customer\": {\n        \"id\": 66,\n        \"active\": true,\n        \"hookRef\": null,\n        \"optIn\": true,\n        \"cards\": [],\n        \"ref\": null,\n        \"name\": \"Linda Robledo\",\n        \"terms\": null,\n        \"companyName\": \"rob\",\n        \"taxRate\": {\n            \"ref\": \"\",\n            \"name\": \"Sales Tax\",\n            \"rate\": 0.05,\n            \"agency\": \"Tax Agency\",\n            \"isDefault\": true\n        },\n        \"businessId\": \"K5jrN7LSJ7\",\n        \"contacts\": [\n            {\n                \"type\": \"phone\",\n                \"number\": \"+13852164401\"\n            },\n            {\n                \"type\": \"mobile\",\n                \"number\": \"+13852164401\"\n            },\n            {\n                \"type\": \"email\",\n                \"address\": \"linda@asdf.com\"\n            },\n            {\n                \"city\": \"American Fork\",\n                \"type\": \"billToAddress\",\n                \"state\": \"UT\",\n                \"street\": \"574 S 420 E\",\n                \"postalCode\": \"84003\",\n                \"countryCode\": \"US\"\n            },\n            {\n                \"city\": \"American Fork\",\n                \"type\": \"shipToAddress\",\n                \"state\": \"UT\",\n                \"street\": \"574 S 420 E\",\n                \"postalCode\": \"84003\",\n                \"countryCode\": \"US\"\n            }\n        ],\n        \"notes\": [],\n        \"tags\": [],\n        \"createdAt\": \"2024-08-15T23:57:38.872Z\",\n        \"updatedAt\": \"2024-08-16T00:35:31.118Z\"\n    },\n    \"taxRate\": {\n        \"ref\": \"\",\n        \"name\": \"Sales Tax\",\n        \"rate\": 0.05,\n        \"agency\": \"Tax Agency\",\n        \"isDefault\": true\n    },\n    \"orderItems\": [\n        {\n            \"price\": 0,\n            \"extendedPrice\": 0,\n            \"description\": \"Default service item created on initial setup.\",\n            \"number\": \"MISC-SERVICE\",\n            \"uom\": {\n                \"name\": \"EA\",\n                \"conversion\": 1\n            },\n            \"part\": {\n                \"id\": 54,\n                \"number\": \"MISC-SERVICE\",\n                \"ref\": null,\n                \"hookRef\": null,\n                \"incomeAccountId\": null,\n                \"inventoryAccountId\": null,\n                \"expenseAccountId\": null,\n                \"description\": \"Default service item created on initial setup.\",\n                \"stockLevel\": null,\n                \"cost\": \"0\",\n                \"price\": \"0\",\n                \"type\": \"Service\",\n                \"taxable\": true,\n                \"trackingType\": [],\n                \"active\": true,\n                \"businessId\": \"K5jrN7LSJ7\",\n                \"defaultLocationId\": null,\n                \"notes\": [],\n                \"tags\": [],\n                \"uoms\": [\n                    {\n                        \"name\": \"EA\",\n                        \"conversion\": 1\n                    }\n                ],\n                \"createdAt\": \"2024-08-12T02:11:49.215Z\",\n                \"updatedAt\": \"2024-08-12T02:11:49.215Z\",\n                \"defaultLocation\": null,\n                \"expenseAccount\": null,\n                \"incomeAccount\": null,\n                \"inventoryAccount\": null\n            },\n            \"partId\": 54,\n            \"quantity\": 1,\n            \"locationId\": null,\n            \"location\": null,\n            \"complete\": false,\n            \"orderId\": 157,\n            \"businessId\": \"K5jrN7LSJ7\"\n        }\n    ],\n    \"total\": 0,\n    \"tax\": 0,\n    \"subTotal\": 0,\n    \"assignedToUserId\": 23\n}"}],"_postman_id":"5b269719-7138-4897-a4fb-130acc83444b"},{"name":"Delete Order","event":[{"listen":"test","script":{"id":"4bb95e89-b771-4d4e-9798-0fdf0e758969","exec":["pm.test('Status code is 200', function () {\r","    pm.response.to.have.status(200);\r","})"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"20fa6310-b827-465f-9fa1-350b60b6fabe","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"replaceWithFloPayUser"},{"key":"password","value":"replaceWithFloPayPassword"}]},"isInherited":false},"method":"DELETE","header":[],"url":"{{base}}/order/","urlObject":{"path":["order",""],"host":["{{base}}"],"query":[],"variable":[]}},"response":[{"id":"aa13458f-8ab2-4966-974e-fc18443a5543","name":"Delete Order","originalRequest":{"method":"DELETE","header":[],"url":"{{base}}/order/157"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 18 Dec 2023 21:52:33 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"1"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"037d6194-f182-4770-931b-7cf6b3d8a668"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"x-amz-apigw-id","value":"QKLM7ElOoAMEAMw="},{"key":"X-Amzn-Trace-Id","value":"Root=1-6580bf1f-2fd65f422c088ea0526a7e4a;Sampled=0;lineage=f4b87aaa:0"},{"key":"Access-Control-Allow-Credentials","value":"true"}],"cookie":[],"responseTime":null,"body":"1"}],"_postman_id":"20fa6310-b827-465f-9fa1-350b60b6fabe"}],"id":"576f232d-36e8-4ea9-8897-d092d44ea667","_postman_id":"576f232d-36e8-4ea9-8897-d092d44ea667","description":""}],"id":"0d79265b-6491-467e-9d91-eb3d7ff49a30","description":"<p><strong>Prerequisites</strong></p>\n<p>Your business account must have the following before you can create an order:</p>\n<ul>\n<li><p>A valid <a href=\"https://flopayapi.postman.co/workspace/FloPay-Workspace~caffb562-a30f-4d12-80ed-48c68c08ce52/folder/31217055-112ca271-53f1-42ca-8ba0-1ff899edcad0?action=share&amp;source=copy-link&amp;creator=16754022&amp;ctx=documentation\">customer</a></p>\n</li>\n<li><p>A valid <a href=\"https://flopayapi.postman.co/workspace/FloPay-Workspace~caffb562-a30f-4d12-80ed-48c68c08ce52/folder/31217055-866aaf5b-94ad-42c6-bd19-72dbc9f30972?action=share&amp;source=copy-link&amp;creator=16754022&amp;ctx=documentation\">item</a></p>\n</li>\n<li><p>Full company details:</p>\n<ul>\n<li><p>Default tax rates</p>\n</li>\n<li><p>Company contact info</p>\n</li>\n</ul>\n</li>\n</ul>\n<p><strong>Create an Order</strong></p>\n<p><code>POST https://api.flopay.co/erp/order</code></p>\n<p>Create orders and invoices from tracked items. New orders are created with a status of <code>estimate</code>. Once an order is opened its status will change to <code>open</code>. When a payment has been received, the status will change to <code>invoice</code>. An order must be created before a payment link can be generated. The payment link can then be sent via email or text message.</p>\n<p><strong>Issue Order (Send a Payment Link)</strong></p>\n<p><code>PUT https://api.flopay.co/erp/order/issue/27</code></p>\n<p>Once an order has been created you may update it using the order ID and the <a href=\"https://flopayapi.postman.co/workspace/FloPay-Workspace~caffb562-a30f-4d12-80ed-48c68c08ce52/request/31217055-5b269719-7138-4897-a4fb-130acc83444b?action=share&amp;source=copy-link&amp;creator=16754022&amp;ctx=documentation\">Update Order</a> endpoint.</p>\n<p>The issue request will create two objects:</p>\n<ul>\n<li><p>A release record: Used to remove inventory from the <a href=\"https://flopayapi.postman.co/workspace/FloPay-Workspace~caffb562-a30f-4d12-80ed-48c68c08ce52/folder/31217055-c5531acc-d57c-43fe-baa2-fe0a388084ba?action=share&amp;source=copy-link&amp;creator=16754022&amp;ctx=documentation\">Inventory API</a></p>\n</li>\n<li><p>A payment record, used to:</p>\n<ul>\n<li><p>Send an email invoice with a secure payment link</p>\n</li>\n<li><p>Send a text message with a seucre payment link</p>\n</li>\n</ul>\n</li>\n</ul>\n<p>The response to the order/issue API call contains the ID of the payment record associated with the order. Multiple payments can be associated with a single order. Use this payment ID to proceed with managing payment links using the Payment API.</p>\n<p><strong>Complete Order</strong></p>\n<p><code>PUT https://api.flopay.co/erp/order/complete/27</code></p>\n<p>A call to the Complete Order endpoint will mark the order as completed and will have multiple effects:</p>\n<ul>\n<li><p>The order cannot be reopened</p>\n</li>\n<li><p>Items not released from inventory will be closed</p>\n</li>\n</ul>\n<p><strong>Prepare</strong></p>\n<p>The Prepare API is designed to reduce complexity. It preforms all the required steps to set up and send payment links: creates a customer, item and order in a single POST request. After a call to the Prepare API you can send a payment link in an <a href=\"https://flopayapi.postman.co/workspace/FloPay-Workspace~caffb562-a30f-4d12-80ed-48c68c08ce52/request/31217055-e41355da-bfeb-4447-b8a8-29f3e79df468?action=share&amp;source=copy-link&amp;creator=31217055&amp;ctx=documentation\">email </a> or a <a href=\"https://flopayapi.postman.co/workspace/FloPay-Workspace~caffb562-a30f-4d12-80ed-48c68c08ce52/request/31217055-9238303f-45f4-4832-87e3-63d47bfe2085?action=share&amp;source=copy-link&amp;creator=31217055&amp;ctx=documentation\">text. </a> To do so, you must include the payment ID returned in the payments section of the Prepare response.</p>\n","_postman_id":"0d79265b-6491-467e-9d91-eb3d7ff49a30"},{"name":"User","item":[{"name":"Create User","event":[{"listen":"test","script":{"id":"34a14106-cace-4446-a6df-d0ce3964c7d4","exec":["pm.test('Status code is 200', function () {\r","    pm.response.to.have.status(200);\r","})\r","\r","var jsonData = pm.response.json();\r","pm.environment.set(\"userId\", jsonData.id);"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"b67463a4-4309-49a7-9f39-a2594ab8d5eb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"username\": \"qa+test@flopay.co\",\n    \"nameFirst\": \"Test\",\n    \"nameLast\": \"Email\",\n    \"businessId\": \"{{businessId}}\"\n}","options":{"raw":{"language":"json"}}},"url":"{{base}}/user/","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"replaceWithFloPayUser"},{"key":"password","value":"replaceWithFloPayPassword"}]},"isInherited":true,"source":{"_postman_id":"79d3aa81-205f-403e-88b3-bd3ef716a01d","id":"79d3aa81-205f-403e-88b3-bd3ef716a01d","name":"User","type":"folder"}},"urlObject":{"path":["user",""],"host":["{{base}}"],"query":[],"variable":[]}},"response":[{"id":"644e4052-e4e8-4315-91ce-72defbeb0ef1","name":"Required params only","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"username\": \"linda@lmnop.com\",\n    \"nameFirst\": \"Linda\",\n    \"nameLast\": \"Breanne\",\n    \"businessId\": \"{{businessId}}\"\n}","options":{"raw":{"language":"json"}}},"url":"{{base}}/user/"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"0309858a-eca1-4854-977f-bd6a0a1d3226","name":"Create User","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"username\": \"linda@lmnop.com\",\n    \"nameFirst\": \"Linda\",\n    \"nameLast\": \"Breanne\",\n    \"businessId\": \"{{businessId}}\"\n}","options":{"raw":{"language":"json"}}},"url":"{{base}}/user"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"name\": \"Linda Breanne\",\n    \"module\": {\n        \"part\": true,\n        \"user\": true,\n        \"order\": true,\n        \"report\": true,\n        \"vendor\": true,\n        \"company\": true,\n        \"payment\": true,\n        \"release\": true,\n        \"webhook\": true,\n        \"customer\": true,\n        \"location\": true,\n        \"dashboard\": true,\n        \"inventory\": true,\n        \"receivable\": true,\n        \"webhookLog\": true\n    },\n    \"contacts\": [],\n    \"notes\": [],\n    \"tags\": [],\n    \"id\": 29,\n    \"username\": \"linda@lmnop.com\",\n    \"nameFirst\": \"Linda\",\n    \"nameLast\": \"Breanne\",\n    \"businessId\": \"K5jrN7LSJ7\",\n    \"updatedAt\": \"2024-08-16T20:53:56.440Z\",\n    \"createdAt\": \"2024-08-16T20:53:56.440Z\"\n}"}],"_postman_id":"b67463a4-4309-49a7-9f39-a2594ab8d5eb"},{"name":"Get Users","event":[{"listen":"test","script":{"id":"494d935d-df2b-4792-8c01-adbeed927800","exec":["pm.test('Status code is 200', function () {\r","    pm.response.to.have.status(200);\r","})"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"658bbc2a-debe-4013-9f3b-28d4b71980fe","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{}","options":{"raw":{"language":"json"}}},"url":"{{base}}/user","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"replaceWithFloPayUser"},{"key":"password","value":"replaceWithFloPayPassword"}]},"isInherited":true,"source":{"_postman_id":"79d3aa81-205f-403e-88b3-bd3ef716a01d","id":"79d3aa81-205f-403e-88b3-bd3ef716a01d","name":"User","type":"folder"}},"urlObject":{"path":["user"],"host":["{{base}}"],"query":[],"variable":[]}},"response":[{"id":"b4f3b0ad-1a9c-40ea-89c4-1f0499e490fa","name":"Get Users","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{}","options":{"raw":{"language":"json"}}},"url":"{{base}}/user"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"offset\": 0,\n    \"limit\": 10,\n    \"rows\": [\n        {\n            \"name\": \"Linda Breanne\",\n            \"id\": 27,\n            \"username\": \"linda@1234.com\",\n            \"businessId\": \"K5jrN7LSJ7\",\n            \"module\": {\n                \"part\": true,\n                \"user\": true,\n                \"order\": true,\n                \"report\": true,\n                \"vendor\": true,\n                \"company\": true,\n                \"payment\": true,\n                \"release\": true,\n                \"webhook\": true,\n                \"customer\": true,\n                \"location\": true,\n                \"dashboard\": true,\n                \"inventory\": true,\n                \"receivable\": true,\n                \"webhookLog\": true\n            },\n            \"nameFirst\": \"Linda\",\n            \"nameLast\": \"Breanne\",\n            \"contacts\": [],\n            \"notes\": [],\n            \"tags\": [],\n            \"createdAt\": \"2024-08-16T20:48:48.679Z\",\n            \"updatedAt\": \"2024-08-16T20:48:48.679Z\"\n        },\n        {\n            \"name\": \"Change Me Change Me\",\n            \"id\": 23,\n            \"username\": \"lindabrobledo@gmail.com\",\n            \"businessId\": \"K5jrN7LSJ7\",\n            \"module\": {\n                \"part\": true,\n                \"user\": true,\n                \"order\": true,\n                \"report\": true,\n                \"vendor\": true,\n                \"company\": true,\n                \"payment\": true,\n                \"release\": true,\n                \"webhook\": true,\n                \"customer\": true,\n                \"location\": true,\n                \"dashboard\": true,\n                \"inventory\": true,\n                \"receivable\": true,\n                \"webhookLog\": true\n            },\n            \"nameFirst\": \"Change Me\",\n            \"nameLast\": \"Change Me\",\n            \"contacts\": [],\n            \"notes\": [],\n            \"tags\": [],\n            \"createdAt\": \"2024-08-12T02:11:48.900Z\",\n            \"updatedAt\": \"2024-08-12T02:11:48.900Z\"\n        }\n    ],\n    \"hasMore\": false\n}"}],"_postman_id":"658bbc2a-debe-4013-9f3b-28d4b71980fe"},{"name":"Get User","id":"4e97a523-9169-4144-a557-f32ac40876bd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{}","options":{"raw":{"language":"json"}}},"url":"{{base}}/user/","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"replaceWithFloPayUser"},{"key":"password","value":"replaceWithFloPayPassword"}]},"isInherited":true,"source":{"_postman_id":"79d3aa81-205f-403e-88b3-bd3ef716a01d","id":"79d3aa81-205f-403e-88b3-bd3ef716a01d","name":"User","type":"folder"}},"urlObject":{"path":["user",""],"host":["{{base}}"],"query":[],"variable":[]}},"response":[{"id":"ff4b511c-8521-4b85-9e14-706859fae282","name":"Get User","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{}","options":{"raw":{"language":"json"}}},"url":"{{base}}/user/"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"name\": \"Linda Breanne\",\n    \"id\": 27,\n    \"username\": \"linda@1234.com\",\n    \"businessId\": \"K5jrN7LSJ7\",\n    \"module\": {\n        \"part\": true,\n        \"user\": true,\n        \"order\": true,\n        \"report\": true,\n        \"vendor\": true,\n        \"company\": true,\n        \"payment\": true,\n        \"release\": true,\n        \"webhook\": true,\n        \"customer\": true,\n        \"location\": true,\n        \"dashboard\": true,\n        \"inventory\": true,\n        \"receivable\": true,\n        \"webhookLog\": true\n    },\n    \"nameFirst\": \"Linda\",\n    \"nameLast\": \"Breanne\",\n    \"contacts\": [],\n    \"notes\": [],\n    \"tags\": [],\n    \"createdAt\": \"2024-08-16T20:48:48.679Z\",\n    \"updatedAt\": \"2024-08-16T20:48:48.679Z\"\n}"}],"_postman_id":"4e97a523-9169-4144-a557-f32ac40876bd"},{"name":"Update User","event":[{"listen":"test","script":{"id":"db1b2ab8-5438-4396-a8fd-5c73d0857aa9","exec":["pm.test('Status code is 200', function () {\r","    pm.response.to.have.status(200);\r","})"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"8c7d8cab-af1d-47cf-885e-6bd7fff5fb71","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"replaceWithFloPayUser"},{"key":"password","value":"replaceWithFloPayPassword"}]},"isInherited":false},"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"Test Name\",\n    \"id\": 27,\n    \"username\": \"qa+test@flopay.co\",\n    \"businessId\": \"{{businessId}}\",\n    \"module\": {\n        \"part\": true,\n        \"user\": true,\n        \"order\": true,\n        \"report\": true,\n        \"vendor\": true,\n        \"company\": true,\n        \"payment\": true,\n        \"release\": true,\n        \"webhook\": true,\n        \"customer\": true,\n        \"location\": true,\n        \"dashboard\": true,\n        \"inventory\": true,\n        \"receivable\": true,\n        \"webhookLog\": true\n    },\n    \"nameFirst\": \"Mary\",\n    \"nameLast\": \"Breanne\",\n    \"contacts\": [],\n    \"notes\": [],\n    \"tags\": [],\n    \"createdAt\": \"2024-08-16T20:48:48.679Z\",\n    \"updatedAt\": \"2024-08-16T20:48:48.679Z\"\n}","options":{"raw":{"language":"json"}}},"url":"{{base}}/user/","urlObject":{"path":["user",""],"host":["{{base}}"],"query":[],"variable":[]}},"response":[{"id":"8877f86b-cf01-4478-b914-89d47e9e2a5e","name":"Update User","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"Linda Breanne\",\n    \"id\": 27,\n    \"username\": \"linda@1234.com\",\n    \"businessId\": \"{{businessId}}\",\n    \"module\": {\n        \"part\": true,\n        \"user\": true,\n        \"order\": true,\n        \"report\": true,\n        \"vendor\": true,\n        \"company\": true,\n        \"payment\": true,\n        \"release\": true,\n        \"webhook\": true,\n        \"customer\": true,\n        \"location\": true,\n        \"dashboard\": true,\n        \"inventory\": true,\n        \"receivable\": true,\n        \"webhookLog\": true\n    },\n    \"nameFirst\": \"Mary\",\n    \"nameLast\": \"Breanne\",\n    \"contacts\": [],\n    \"notes\": [],\n    \"tags\": [],\n    \"createdAt\": \"2024-08-16T20:48:48.679Z\",\n    \"updatedAt\": \"2024-08-16T20:48:48.679Z\"\n}","options":{"raw":{"language":"json"}}},"url":"{{base}}/user/"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"name\": \"Linda Breanne\",\n    \"id\": 27,\n    \"businessId\": \"K5jrN7LSJ7\",\n    \"module\": {\n        \"part\": true,\n        \"user\": true,\n        \"order\": true,\n        \"report\": true,\n        \"vendor\": true,\n        \"company\": true,\n        \"payment\": true,\n        \"release\": true,\n        \"webhook\": true,\n        \"customer\": true,\n        \"location\": true,\n        \"dashboard\": true,\n        \"inventory\": true,\n        \"receivable\": true,\n        \"webhookLog\": true\n    },\n    \"nameFirst\": \"Mary\",\n    \"nameLast\": \"Breanne\",\n    \"contacts\": [],\n    \"notes\": [],\n    \"tags\": [],\n    \"createdAt\": \"2024-08-16T20:48:48.679Z\",\n    \"updatedAt\": \"2024-08-16T20:48:48.679Z\"\n}"}],"_postman_id":"8c7d8cab-af1d-47cf-885e-6bd7fff5fb71"},{"name":"Delete User","event":[{"listen":"test","script":{"id":"9aff75f3-6f91-4f53-9b09-cb33bcb23f0b","exec":["pm.test('Status code is 200', function () {\r","    pm.response.to.have.status(200);\r","})"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"6993d957-8b1f-48ee-bc64-198d80d9ec5c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"replaceWithFloPayUser"},{"key":"password","value":"replaceWithFloPayPassword"}]},"isInherited":false},"method":"DELETE","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{base}}/user/","urlObject":{"path":["user",""],"host":["{{base}}"],"query":[],"variable":[]}},"response":[{"id":"ecc41cc5-49fd-4b60-801b-912056d28d2e","name":"Delete User","originalRequest":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{base}}/user/"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"6993d957-8b1f-48ee-bc64-198d80d9ec5c"},{"name":"Who Am I","event":[{"listen":"test","script":{"id":"b6a0fb11-bb3e-4539-8994-4f9af55d2a65","exec":["pm.test('Status code is 200', function () {\r","    pm.response.to.have.status(200);\r","})"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"5351f5ea-fb1e-41a7-9693-4ddf3233ed43","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{base}}/user/whoAmI","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"replaceWithFloPayUser"},{"key":"password","value":"replaceWithFloPayPassword"}]},"isInherited":true,"source":{"_postman_id":"79d3aa81-205f-403e-88b3-bd3ef716a01d","id":"79d3aa81-205f-403e-88b3-bd3ef716a01d","name":"User","type":"folder"}},"urlObject":{"path":["user","whoAmI"],"host":["{{base}}"],"query":[],"variable":[]}},"response":[{"id":"ad835802-0b22-4584-9179-e9204e367c31","name":"Who Am I","originalRequest":{"method":"GET","header":[],"url":"{{base}}/user/whoAmI"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 15 Aug 2024 16:01:29 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"347"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"9175c34d-1f79-4bff-8520-f4b31a2eab7a"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"x-amz-apigw-id","value":"cjrtpF7XoAMEt0A="},{"key":"X-Amzn-Trace-Id","value":"Root=1-66be2657-339ccc093bc47b632ddb9f65;Parent=4db0b80d82d4ddff;Sampled=0;lineage=314c5406:0"},{"key":"Access-Control-Allow-Credentials","value":"true"}],"cookie":[],"responseTime":null,"body":"{\n    \"user\": {\n        \"username\": \"lindabrobledo@gmail.com\",\n        \"id\": 23,\n        \"businessId\": \"K5jrN7LSJ7\"\n    },\n    \"access\": {\n        \"K5jrN7LSJ7\": \"A\"\n    },\n    \"module\": {\n        \"part\": true,\n        \"user\": true,\n        \"order\": true,\n        \"report\": true,\n        \"vendor\": true,\n        \"company\": true,\n        \"payment\": true,\n        \"release\": true,\n        \"webhook\": true,\n        \"customer\": true,\n        \"location\": true,\n        \"dashboard\": true,\n        \"inventory\": true,\n        \"receivable\": true,\n        \"webhookLog\": true\n    }\n}"}],"_postman_id":"5351f5ea-fb1e-41a7-9693-4ddf3233ed43"}],"id":"79d3aa81-205f-403e-88b3-bd3ef716a01d","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"replaceWithFloPayUser"},{"key":"password","value":"replaceWithFloPayPassword"}]},"isInherited":false},"event":[{"listen":"prerequest","script":{"id":"636e2988-24e9-478b-9c38-fc38badf34b9","type":"text/javascript","packages":{},"exec":[""]}},{"listen":"test","script":{"id":"cf4c335d-699d-409d-b026-1bfd0020e55d","type":"text/javascript","packages":{},"exec":[""]}}],"_postman_id":"79d3aa81-205f-403e-88b3-bd3ef716a01d","description":""},{"name":"Chargebacks Alerts","item":[{"name":"Get Alerts","event":[{"listen":"test","script":{"id":"04dbd13a-04c4-4344-9e49-6fe1c1884a9b","exec":["pm.test('Status code is 200', function () {\r","    pm.response.to.have.status(200);\r","})\r",""],"type":"text/javascript","packages":{},"requests":{}}}],"id":"f805d8d1-7aaf-4e03-8b7d-43b3629a3855","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"replaceWithFloPayUser"},{"key":"password","value":"replaceWithFloPayPassword"}]},"isInherited":false},"method":"GET","header":[],"url":"https://devapi.flopay.co/chargeback/alert?limit=10&offset=0","urlObject":{"protocol":"https","path":["chargeback","alert"],"host":["devapi","flopay","co"],"query":[{"key":"limit","value":"10"},{"key":"offset","value":"0"}],"variable":[]}},"response":[],"_postman_id":"f805d8d1-7aaf-4e03-8b7d-43b3629a3855"},{"name":"Check for new Alerts","id":"c299a996-3457-43ea-9d05-673cc1513255","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"","urlObject":{"query":[],"variable":[]}},"response":[],"_postman_id":"c299a996-3457-43ea-9d05-673cc1513255"},{"name":"Attempt Refund","id":"1aa6dce7-03d4-469c-ac51-51ad60abf321","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"currency\": \"USD\",\r\n    \"businessId\": \"1z2HUO9nT2\",\r\n    \"externalRef\": \"4209522\",\r\n    \"transactionTimestamp\": \"2022-12-13T07:00:00.000Z\",\r\n    \"amount\": 53.66,\r\n    \"lastFour\": \"3516\",\r\n    \"type\": \"ETHOCIA\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{disputeBase}}/alert/refund","urlObject":{"path":["alert","refund"],"host":["{{disputeBase}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"1aa6dce7-03d4-469c-ac51-51ad60abf321"}],"id":"ee68bc99-bb70-4186-9a7b-ac407fe037c6","description":"<h1 id=\"flopay-chargeback-management-overview\">Flopay Chargeback-Management Overview</h1>\n<h2 id=\"1-what-is-a-credit-card-chargeback\">1 What is a credit-card chargeback?</h2>\n<p>A credit-card dispute is a <strong>formal claim</strong> a cardholder files with their issuing bank to challenge the legitimacy, amount, or quality of a transaction.<br />If the issuer upholds the claim, the transaction is forcibly reversed through a <strong>chargeback</strong>, returning funds to the cardholder and debiting the merchant’s account.</p>\n<hr />\n<h2 id=\"2-why-understanding-chargebacks-matters\">2 Why understanding chargebacks matters</h2>\n<ul>\n<li><p><strong>Merchant-account risk</strong> – High chargeback ratios can trigger Visa/Mastercard monitoring programs and may lead to account termination.</p>\n</li>\n<li><p><strong>Direct financial impact</strong> – Each dispute can mean lost revenue, lost product, shipping costs, and chargeback fees.</p>\n</li>\n<li><p><strong>Operational workload</strong> – Gathering evidence and responding to chargeback consumes staff time; automated pre-dispute tools reduce this burden.</p>\n</li>\n</ul>\n<hr />\n<h2 id=\"3-how-flopay-protects-you\">3 How Flopay protects you</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Feature</th>\n<th>How it works</th>\n<th>Benefit</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>Automatic alert intake</strong></td>\n<td>Flopay subscribes your MID to <strong>RDR, Ethoca, and CDRN</strong> pre-dispute feeds.</td>\n<td>You learn about chargebacks <em>hours – or days –</em> before they would convert to chargebacks.</td>\n</tr>\n<tr>\n<td><strong>Automatic refunds</strong></td>\n<td>• <strong>RDR</strong> alerts are auto-refunded instantly.  <br />• <strong>Ethoca &amp; CDRN</strong> alerts can be auto- or manually refunded in the Flopay portal.</td>\n<td>Keeps dispute ratios low and avoids chargeback fees.</td>\n</tr>\n<tr>\n<td><strong>Upstream responses filed</strong></td>\n<td>Flopay submits the refund/result to the alert network so the case is closed properly.</td>\n<td>Ensures each dispute status is finalised in the card-brand system.</td>\n</tr>\n<tr>\n<td><strong>Webhook notifications</strong></td>\n<td>Every refund triggers a Payment Refunded webhook.</td>\n<td>Lets you sync order status in your CRM/ERP automatically.</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h2 id=\"4-supported-alert-networks\">4 Supported alert networks</h2>\n<ul>\n<li><p><strong>RDR (Rapid Dispute Resolution)</strong> – Visa/Verifi service that auto-decides and refunds chargebacks in real time, preventing chargebacks entirely.</p>\n</li>\n<li><p><strong>Ethoca Alerts</strong> – Mastercard fraud/dispute alerts enabling proactive refunds before a chargeback is filed.</p>\n</li>\n<li><p><strong>CDRN (Cardholder Dispute Resolution Network)</strong> – Brand-agnostic Verifi service giving merchants ~72 hours to resolve disputes and avoid chargebacks.</p>\n</li>\n</ul>\n<hr />\n<h2 id=\"5-rest-api-reference\">5 REST API reference</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Method &amp; Endpoint</th>\n<th>Purpose</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>GET /alert?limit=10&amp;offset=0</code></td>\n<td>Retrieve recent dispute alerts (paginated).</td>\n</tr>\n<tr>\n<td><code>GET /alert/has</code></td>\n<td>Returns <code>true</code>/<code>false</code> if any unread dispute alerts exist.</td>\n</tr>\n</tbody>\n</table>\n</div><blockquote>\n<p><strong>Note:</strong> Beyond <code>limit</code> and <code>offset</code>, no additional query parameters are required; alerts are returned newest-first. </p>\n</blockquote>\n<hr />\n<h2 id=\"6-best-practice-checklist\">6 Best-practice checklist</h2>\n<ul>\n<li><p>Enable <strong>all three alert networks</strong> (RDR, Ethoca, CDRN) for maximum coverage contact <a href=\"https://mailto:sales@flopay.co\">sales@flopay.co</a>.</p>\n</li>\n<li><p>Listen to the Payment Cancelled <strong>webhook</strong> to update order/payment status automatically.</p>\n</li>\n<li><p>Reconcile daily to verify that refunds appear on your processor statement.</p>\n</li>\n<li><p>Monitor your <strong>chargeback ratio</strong>—Flopay keeps it low, but processors still calculate it monthly.</p>\n</li>\n</ul>\n<hr />\n<p>By integrating Flopay’s dispute-management tooling, chargebacks are handled in strict accordance with card-brand rules, your responses are filed automatically, and your merchant-account health remains protected.</p>\n","_postman_id":"ee68bc99-bb70-4186-9a7b-ac407fe037c6"},{"name":"SFTP","item":[],"id":"a8ca68f6-db52-4c37-afbd-7d94a886777b","description":"<p>Special import via file transfer (SFTP) can be arranged on an individual basis. To set up a SFTP import site please contact <a href=\"https://mailto:contact@flopay.co\">contact@flopay.co</a>. You will be required to pay a set up fee to receive an SFTP user once you have provided a public SSH key.</p>\n<p>All file import formats must be valid JSON. A custom transformer can be requested that will translate your JSON structure into Flopay-compatible objects. Once connected to your SFTP import, follow the logical convention:</p>\n<ul>\n<li>Include the following properties at the root of each JSON object</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>    \"type\": \"sftpUsername\",\n    \"hookRef\": \"your id\",\n    \"user\": {\n        \"username\": \"apiUserName\"\n    },\n    \"businessId\": \"fZdVEuFLYv\",\n\n</code></pre><ul>\n<li><p>A files that fails to import will be be placed in an failed-once directory and attempted two more times</p>\n</li>\n<li><p>Upon second failure files will be placed in failed-twice</p>\n</li>\n<li><p>Upon third directory attempts to imprt will cease and files will be placed in an error directory</p>\n</li>\n<li><p>hookRef will be added to database for reference in API calls and webhooks</p>\n</li>\n</ul>\n<p>To find the business ID of your Flopay account contact <a href=\"https://mailto:contact@flopay.co\">contact@flopay.co</a> or login to app.flopay.co and click on the Account tab. Muliple business IDs can be associated with your API user and SFTP import.</p>\n","_postman_id":"a8ca68f6-db52-4c37-afbd-7d94a886777b"},{"name":"SendGrid Email Templates","item":[{"name":"Create Message","event":[{"listen":"test","script":{"id":"709f77fe-6fba-4748-b34f-568a8209abe2","exec":["pm.test('Status code is 200', function () {\r","    pm.response.to.have.status(200);\r","})\r",""],"type":"text/javascript","packages":{},"requests":{}}}],"id":"a182e95e-a385-406f-b11b-fdfefb0bb48e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"replaceWithFloPayUser"},{"key":"password","value":"replaceWithFloPayPassword"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"businessId\":\"{{businessId}}\",\r\n    \"fromString\":\"test@test.com\",\r\n    \"contactString\":\"+\",\r\n    \"type\":\"text\",\r\n    \"text\":\"a text message\",\r\n    \"data\":{},\r\n    \"customer\":{\r\n        \"id\":\"1234\",\r\n        \"name\":\"spam\"\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{inboxBase}}/message","urlObject":{"path":["message"],"host":["{{inboxBase}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"a182e95e-a385-406f-b11b-fdfefb0bb48e"},{"name":"Get Messages","event":[{"listen":"test","script":{"id":"5aaa24dd-9d67-42c1-833a-270a93572181","exec":["pm.test('Status code is 200', function () {\r","    pm.response.to.have.status(200);\r","})\r",""],"type":"text/javascript","packages":{},"requests":{}}}],"id":"b7047da0-a99d-4c56-aaff-ceea6bea04d0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"replaceWithFloPayUser"},{"key":"password","value":"replaceWithFloPayPassword"}]},"isInherited":false},"method":"GET","header":[],"url":"{{inboxBase}}/message","urlObject":{"path":["message"],"host":["{{inboxBase}}"],"query":[],"variable":[]}},"response":[{"id":"ff238eb9-bc21-483e-9d95-5b5f5f15822f","name":"Create Message Copy","originalRequest":{"method":"GET","header":[],"url":"{{inboxBase}}/message"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 21 Dec 2024 19:42:36 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"1184"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"848cc555-e954-4ea3-a19b-39e2ed5c20a3"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"x-amz-apigw-id","value":"DKEGXG2XoAMEkXA="},{"key":"X-Amzn-Trace-Id","value":"Root=1-67671a28-163e2c075848660d628a5d75;Parent=4c9904fc45354acb;Sampled=0;Lineage=2:53edfd8f:0"},{"key":"Access-Control-Allow-Credentials","value":"true"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"subject\": \"\",\n        \"paymentId\": 701,\n        \"businessId\": \"1z2HUO9nT2\",\n        \"createdAt\": \"2024-12-20T20:20:07.882Z\",\n        \"text\": \"Order# 863 for New Inbox Test  is available for payment. Click to pay $1.05.  https://devapp.flopay.co/secure/SCbzH5l2jT\",\n        \"read\": false,\n        \"userId\": 8,\n        \"updatedAt\": \"2024-12-20T20:20:07.882Z\",\n        \"originType\": \"agent\",\n        \"businessDateKey\": \"text#1z2HUO9nT2#2024-12-20T20:20:07.650Z\",\n        \"customer\": {\n            \"name\": \"New Inbox Test \",\n            \"id\": 275\n        },\n        \"contactString\": \"+15557229210\",\n        \"threadId\": \"\",\n        \"type\": \"text\"\n    },\n    {\n        \"subject\": \"\",\n        \"paymentId\": -1,\n        \"businessId\": \"1z2HUO9nT2\",\n        \"createdAt\": \"2024-12-20T20:37:31.696Z\",\n        \"text\": \"test\",\n        \"read\": false,\n        \"userId\": 8,\n        \"updatedAt\": \"2024-12-20T20:37:31.696Z\",\n        \"originType\": \"agent\",\n        \"businessDateKey\": \"text#1z2HUO9nT2#2024-12-20T20:37:31.336Z\",\n        \"customer\": {\n            \"name\": \"New Inbox Test \",\n            \"id\": 275\n        },\n        \"contactString\": \"+15557229210\",\n        \"type\": \"text\"\n    },\n    {\n        \"subject\": \"\",\n        \"paymentId\": -1,\n        \"businessId\": \"1z2HUO9nT2\",\n        \"createdAt\": \"2024-12-20T20:37:41.036Z\",\n        \"text\": \"👍\",\n        \"read\": false,\n        \"userId\": 8,\n        \"updatedAt\": \"2024-12-20T20:37:41.036Z\",\n        \"originType\": \"reply\",\n        \"businessDateKey\": \"text#1z2HUO9nT2#2024-12-20T20:37:41.019Z\",\n        \"customer\": {\n            \"name\": \"New Inbox Test \",\n            \"id\": 275\n        },\n        \"contactString\": \"+18015559210\",\n        \"threadId\": \"\",\n        \"type\": \"text\"\n    }\n]"}],"_postman_id":"b7047da0-a99d-4c56-aaff-ceea6bea04d0"}],"id":"71b93c97-6bfc-4736-a1b8-3932f358c716","description":"<h1 id=\"flopay--sendgrid-email-template-integration\">Flopay + SendGrid Email Template Integration</h1>\n<p>By default your account has the ability to email invoices using our built in email service, however if you would like to bring our own Send Grid account you may plug in those credentials into the dashboard under My Account -&gt; Integration -&gt; Send Grid. This allows more customization for sending domain and templates.</p>\n<h2 id=\"summary--quick-steps\">Summary – Quick Steps</h2>\n<ul>\n<li><p><strong>Create a template in SendGrid.</strong></p>\n</li>\n<li><p><strong>Add your SendGrid API key and the template ID</strong> under <strong>Account Settings → Integrations</strong> in Flopay.</p>\n</li>\n</ul>\n<hr />\n<h2 id=\"available-template-variables\">Available Template Variables</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Variable</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>{{title}}</code></td>\n<td>Browser tab / preview title</td>\n</tr>\n<tr>\n<td><code>{{company_name}}</code></td>\n<td>Your company’s name</td>\n</tr>\n<tr>\n<td><code>{{company_street}}</code></td>\n<td>Company street address</td>\n</tr>\n<tr>\n<td><code>{{company_city}}</code></td>\n<td>Company city</td>\n</tr>\n<tr>\n<td><code>{{company_state}}</code></td>\n<td>Company state / province</td>\n</tr>\n<tr>\n<td><code>{{company_postal_code}}</code></td>\n<td>Company ZIP / postal code</td>\n</tr>\n<tr>\n<td><code>{{company_phone}}</code></td>\n<td>Company phone number</td>\n</tr>\n<tr>\n<td><code>{{document_type}}</code></td>\n<td>e.g. “Invoice”, “Quote”, “Receipt”</td>\n</tr>\n<tr>\n<td><code>{{order_number}}</code></td>\n<td>Internal order / invoice number</td>\n</tr>\n<tr>\n<td><code>{{document_date}}</code></td>\n<td>Date issued</td>\n</tr>\n<tr>\n<td><code>{{customer_name}}</code></td>\n<td>Bill-to customer name</td>\n</tr>\n<tr>\n<td><code>{{bill_to_street}}</code></td>\n<td>Bill-to street</td>\n</tr>\n<tr>\n<td><code>{{bill_to_city}}</code></td>\n<td>Bill-to city</td>\n</tr>\n<tr>\n<td><code>{{bill_to_state}}</code></td>\n<td>Bill-to state</td>\n</tr>\n<tr>\n<td><code>{{bill_to_postal_code}}</code></td>\n<td>Bill-to ZIP</td>\n</tr>\n<tr>\n<td><code>{{customer_phone}}</code></td>\n<td>Customer phone</td>\n</tr>\n<tr>\n<td><code>{{ship_to_name}}</code></td>\n<td>Ship-to contact name</td>\n</tr>\n<tr>\n<td><code>{{ship_to_street}}</code></td>\n<td>Ship-to street</td>\n</tr>\n<tr>\n<td><code>{{ship_to_city}}</code></td>\n<td>Ship-to city</td>\n</tr>\n<tr>\n<td><code>{{ship_to_state}}</code></td>\n<td>Ship-to state</td>\n</tr>\n<tr>\n<td><code>{{ship_to_postal_code}}</code></td>\n<td>Ship-to ZIP</td>\n</tr>\n<tr>\n<td><code>{{#each items}} … {{/each}}</code></td>\n<td>Repeating block for every line item:  <br /> • <code>{{this.part_number}}</code> – Item/part number  <br /> • <code>{{this.description}}</code> – Description  <br /> • <code>{{this.quantity}}</code> – Quantity  <br /> • <code>{{this.uom}}</code> – Unit of measure  <br /> • <code>{{this.price}}</code> – Unit price  <br /> • <code>{{this.total}}</code> – Line total</td>\n</tr>\n<tr>\n<td><code>{{sub_total}}</code></td>\n<td>Sum of items</td>\n</tr>\n<tr>\n<td><code>{{tax}}</code></td>\n<td>Tax amount</td>\n</tr>\n<tr>\n<td><code>{{total}}</code></td>\n<td>Grand total</td>\n</tr>\n<tr>\n<td><code>{{payment_status}}</code></td>\n<td>e.g. “Amount Due”, “Paid”</td>\n</tr>\n<tr>\n<td><code>{{payment_amount}}</code></td>\n<td>Amount referenced above</td>\n</tr>\n<tr>\n<td><code>{{payment_link}}</code></td>\n<td>Hosted payment-page URL</td>\n</tr>\n<tr>\n<td><code>{{link_footer}}</code></td>\n<td>Small-print footer text</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h2 id=\"example-html-template\">Example HTML Template</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-html\">&lt;html&gt;\n&lt;head&gt;\n    &lt;meta charset=\"utf-8\" /&gt;\n    &lt;title&gt;{{title}}&lt;/title&gt;\n    &lt;style&gt;\n        .invoice-box {\n            max-width: 800px;\n            margin: auto;\n            padding: 30px;\n            border: 1px solid #eee;\n            box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);\n            font-size: 16px;\n            line-height: 24px;\n            font-family: 'Helvetica Neue', 'Helvetica', Helvetica, Arial, sans-serif;\n            color: #555;\n        }\n        @media (max-width: 576px) {\n            .invoice-box { padding: 0 !important; }\n        }\n        .invoice-box table { width: 100%; line-height: inherit; text-align: left; }\n        .invoice-box table td { padding: 5px; vertical-align: top; }\n        .invoice-box table tr td:nth-child(2) { text-align: right; }\n        .invoice-box table tr.top table td { padding-bottom: 20px; }\n        .title { font-size: 30px; line-height: 30px; color: #333; }\n        .invoice-box table tr.information table td { padding-bottom: 40px; }\n        .invoice-box table tr.heading td { background: #eee; border-bottom: 1px solid #ddd; font-weight: bold; }\n        .invoice-box table tr.item td { border-bottom: 1px solid #eee; }\n        .invoice-box table tr.total td:nth-child(2) { border-top: 2px solid #eee; font-weight: bold; text-align: right; }\n        .sm-txt { font-size: 10px; }\n    &lt;/style&gt;\n&lt;/head&gt;\n&lt;body&gt;\n&lt;div class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=\"invoice-box\"&gt;\n    &lt;table class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;\n        &lt;tr class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=\"top\"&gt;\n            &lt;td class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; colspan=\"8\"&gt;\n                &lt;table class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;\n                    &lt;tr class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;\n                        &lt;td class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;\n                            &lt;span class=\"title\"&gt;{{company_name}}&lt;/span&gt;&lt;br /&gt;\n                            {{company_street}}&lt;br /&gt;\n                            {{company_city}} {{company_state}} {{company_postal_code}}&lt;br /&gt;\n                            {{company_phone}}\n                        &lt;/td&gt;\n                        &lt;td class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=\"text-right\"&gt;\n                            {{document_type}} #{{order_number}}&lt;br /&gt;\n                            {{document_date}}&lt;br /&gt;\n                        &lt;/td&gt;\n                    &lt;/tr&gt;\n                &lt;/table&gt;\n            &lt;/td&gt;\n        &lt;/tr&gt;\n        &lt;tr class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=\"information\"&gt;\n            &lt;td class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; colspan=\"8\"&gt;\n                &lt;table class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;\n                    &lt;tr class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;\n                        &lt;td class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;\n                            Bill To:&lt;br /&gt;\n                            {{customer_name}}&lt;br /&gt;\n                            {{bill_to_street}}&lt;br /&gt;\n                            {{bill_to_city}} {{bill_to_state}} {{bill_to_postal_code}}&lt;br /&gt;\n                            {{customer_phone}}\n                        &lt;/td&gt;\n                        &lt;td class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;&lt;/td&gt;\n                        &lt;td class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;\n                            Ship To:&lt;br /&gt;\n                            {{ship_to_name}}&lt;br /&gt;\n                            {{ship_to_street}}&lt;br /&gt;\n                            {{ship_to_city}} {{ship_to_state}} {{ship_to_postal_code}}\n                        &lt;/td&gt;\n                    &lt;/tr&gt;\n                &lt;/table&gt;\n            &lt;/td&gt;\n        &lt;/tr&gt;\n        &lt;tr class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=\"heading\"&gt;\n            &lt;td class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;Part&lt;/td&gt;\n            &lt;td class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;Description&lt;/td&gt;\n            &lt;td class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;Qty&lt;/td&gt;\n            &lt;td class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;UOM&lt;/td&gt;\n            &lt;td class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;Price&lt;/td&gt;\n            &lt;td class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;Total&lt;/td&gt;\n        &lt;/tr&gt;\n        {{#each items}}\n        &lt;tr class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=\"item\"&gt;\n            &lt;td class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;{{this.part_number}}&lt;/td&gt;\n            &lt;td class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;{{this.description}}&lt;/td&gt;\n            &lt;td class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;{{this.quantity}}&lt;/td&gt;\n            &lt;td class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;{{this.uom}}&lt;/td&gt;\n            &lt;td class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;{{this.price}}&lt;/td&gt;\n            &lt;td class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;{{this.total}}&lt;/td&gt;\n        &lt;/tr&gt;\n        {{/each}}\n        &lt;tr class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=\"total\"&gt;\n            &lt;td class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; colspan=\"8\"&gt;Sub Total: {{sub_total}}&lt;/td&gt;\n        &lt;/tr&gt;\n        &lt;tr class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=\"total\"&gt;\n            &lt;td class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; colspan=\"8\"&gt;Tax: {{tax}}&lt;/td&gt;\n        &lt;/tr&gt;\n        &lt;tr class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=\"total\"&gt;\n            &lt;td class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; colspan=\"8\"&gt;Total: {{total}}&lt;/td&gt;\n        &lt;/tr&gt;\n        &lt;tr class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=\"total\"&gt;\n            &lt;td class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; colspan=\"8\"&gt;{{payment_status}}: {{payment_amount}}&lt;/td&gt;\n        &lt;/tr&gt;\n        &lt;tr class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=\"total\"&gt;\n            &lt;td class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; colspan=\"8\"&gt;\n                &lt;span&gt;Order #{{order_number}} is available for payment&lt;/span&gt;&lt;br /&gt;\n                {{payment_link}}&lt;br /&gt;\n                &lt;span class=\"sm-txt\"&gt;{{link_footer}}&lt;/span&gt;\n            &lt;/td&gt;\n        &lt;/tr&gt;\n    &lt;/table&gt;\n&lt;/div&gt;\n&lt;/body&gt;\n&lt;/html&gt;\n\n</code></pre>\n","_postman_id":"71b93c97-6bfc-4736-a1b8-3932f358c716"},{"name":"Test Cards","item":[],"id":"6c9e7156-d36f-4ffd-8abc-97ab8ed5ce83","description":"<h1 id=\"payment-gateway-test-cards\">Payment Gateway Test Cards</h1>\n<p>Below is a quick-reference list of the most common sandbox cards you can use to test <strong>authorised (success)</strong> and <strong>declined (failure)</strong> scenarios across popular gateways. For most uptodate test information please check with connected gateay documentation</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Gateway</th>\n<th>Scenario</th>\n<th>Card Number</th>\n<th>Brand</th>\n<th>Exp Date</th>\n<th>CVV</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>NMI</td>\n<td>Auth – Approved</td>\n<td>4532 1111 1111 1112</td>\n<td>Visa</td>\n<td>12/30</td>\n<td>453</td>\n<td>Generic card-scheme PAN</td>\n</tr>\n<tr>\n<td>NMI</td>\n<td>Decline – Failed frictionless</td>\n<td>4000 0000 0000 2925</td>\n<td>Visa</td>\n<td>08/25</td>\n<td>999</td>\n<td>3-DS <em>Failed Frictionless</em></td>\n</tr>\n<tr>\n<td>USAePay</td>\n<td>Auth – Approved</td>\n<td>4000 1000 1111 2224</td>\n<td>Visa</td>\n<td>09/24</td>\n<td>123</td>\n<td>AVS “YYY” &amp; CVV match</td>\n</tr>\n<tr>\n<td>USAePay</td>\n<td>Decline – Generic</td>\n<td>4000 3000 1111 2220</td>\n<td>Visa</td>\n<td>09/24</td>\n<td>999</td>\n<td>Generic decline</td>\n</tr>\n<tr>\n<td>Stripe</td>\n<td>Auth – Approved</td>\n<td>4242 4242 4242 4242</td>\n<td>Visa</td>\n<td>12/34</td>\n<td>123</td>\n<td>Standard success card</td>\n</tr>\n<tr>\n<td>Stripe</td>\n<td>Decline – Generic</td>\n<td>4000 0000 0000 0002</td>\n<td>Visa</td>\n<td>12/34</td>\n<td>123</td>\n<td><code>card_declined</code></td>\n</tr>\n<tr>\n<td>Maverick</td>\n<td>Auth – Approved</td>\n<td>4539 2250 1179 4489</td>\n<td>Visa</td>\n<td>12/30</td>\n<td>999</td>\n<td>Sandbox example</td>\n</tr>\n<tr>\n<td>Maverick</td>\n<td>Decline – (see note)</td>\n<td>—</td>\n<td>—</td>\n<td>—</td>\n<td>—</td>\n<td>Use “special amount”</td>\n</tr>\n<tr>\n<td><strong>CardPointe</strong></td>\n<td>Auth – Approved</td>\n<td><strong>4444 3333 2222 1111</strong></td>\n<td>Visa</td>\n<td>12/30</td>\n<td>123</td>\n<td>Standard approval</td>\n</tr>\n<tr>\n<td><strong>CardPointe</strong></td>\n<td>Decline – Do Not Honor</td>\n<td><strong>4000 0000 0000 0002</strong></td>\n<td>Visa</td>\n<td>12/30</td>\n<td>123</td>\n<td>ISO <code>05</code></td>\n</tr>\n<tr>\n<td><strong>CardPointe</strong></td>\n<td>Decline – Insufficient Funds</td>\n<td><strong>4111 1111 4555 1142</strong></td>\n<td>Visa</td>\n<td>12/30</td>\n<td>123</td>\n<td>ISO <code>51</code></td>\n</tr>\n<tr>\n<td><strong>Authorize.Net</strong></td>\n<td>Auth – Approved</td>\n<td><strong>4111 1111 1111 1111</strong></td>\n<td>Visa</td>\n<td>12/30</td>\n<td>123</td>\n<td>Primary success card</td>\n</tr>\n<tr>\n<td><strong>Authorize.Net</strong></td>\n<td>Decline – Hard Decline</td>\n<td><strong>6011 0009 9013 9424</strong></td>\n<td>Discover</td>\n<td>12/30</td>\n<td>123</td>\n<td>Forces decline</td>\n</tr>\n<tr>\n<td><strong>Authorize.Net</strong></td>\n<td>Error – AVS Fail</td>\n<td><strong>0000 0000 0000 0000</strong></td>\n<td>Any</td>\n<td>12/30</td>\n<td>123</td>\n<td>AVS mismatch</td>\n</tr>\n<tr>\n<td><strong>Revolv3</strong></td>\n<td>Auth – Approved</td>\n<td><strong>5555 5555 5555 4444</strong></td>\n<td>Mastercard</td>\n<td>12/34</td>\n<td>123</td>\n<td>Generic approval</td>\n</tr>\n<tr>\n<td><strong>Revolv3</strong></td>\n<td>Decline – Generic</td>\n<td><strong>4111 1111 1111 1129</strong></td>\n<td>Visa</td>\n<td>12/34</td>\n<td>123</td>\n<td>Returns decline</td>\n</tr>\n<tr>\n<td><strong>FluidPay</strong></td>\n<td>Auth – Approved</td>\n<td><strong>4111 1111 1111 1111</strong></td>\n<td>Visa</td>\n<td>12/30</td>\n<td>123</td>\n<td>FluidPay success card</td>\n</tr>\n<tr>\n<td><strong>FluidPay</strong></td>\n<td>Decline – Generic</td>\n<td><strong>4242 4242 4242 4241</strong></td>\n<td>Visa</td>\n<td>12/30</td>\n<td>123</td>\n<td>Generic decline via rule</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h1 id=\"test-ach-bank-accounts\">Test ACH Bank Accounts</h1>\n<p>Below are ACH test accounts for <strong>NMI</strong>, <strong>USAePay</strong>, <strong>CardPointe</strong>, <strong>Authorize.Net</strong>, <strong>Revolv3</strong>, <strong>FluidPay</strong>, <strong>Stripe</strong>, and generic routing sets.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Gateway</th>\n<th>Scenario</th>\n<th>Routing Number</th>\n<th>Account Number</th>\n<th>Account Type</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Generic</td>\n<td>ACH – Success</td>\n<td><strong>011000015</strong></td>\n<td><strong>123123123</strong></td>\n<td>Checking</td>\n<td>Federal Reserve test</td>\n</tr>\n<tr>\n<td>Generic</td>\n<td>ACH – Success</td>\n<td><strong>021000021</strong></td>\n<td><strong>000123456789</strong></td>\n<td>Checking</td>\n<td>JP Morgan Chase test</td>\n</tr>\n<tr>\n<td><strong>CardPointe</strong></td>\n<td>ACH – Success</td>\n<td><strong>124003116</strong></td>\n<td><strong>4099999992</strong></td>\n<td>Checking</td>\n<td>Standard success</td>\n</tr>\n<tr>\n<td><strong>CardPointe</strong></td>\n<td>ACH – R01 Insufficient Funds</td>\n<td><strong>124003116</strong></td>\n<td><strong>4099999993</strong></td>\n<td>Checking</td>\n<td>Returns R01</td>\n</tr>\n<tr>\n<td><strong>CardPointe</strong></td>\n<td>ACH – R03 No Account</td>\n<td><strong>124003116</strong></td>\n<td><strong>4099999994</strong></td>\n<td>Checking</td>\n<td>Returns R03</td>\n</tr>\n<tr>\n<td><strong>CardPointe</strong></td>\n<td>ACH – R04 Invalid Account</td>\n<td><strong>124003116</strong></td>\n<td><strong>4099999995</strong></td>\n<td>Checking</td>\n<td>Returns R04</td>\n</tr>\n<tr>\n<td><strong>NMI</strong></td>\n<td>ACH – Success</td>\n<td><strong>490000018</strong></td>\n<td><strong>111111111</strong></td>\n<td>Checking</td>\n<td>Standard NMI ACH success</td>\n</tr>\n<tr>\n<td><strong>USAePay</strong></td>\n<td>ACH – Success</td>\n<td><strong>121042882</strong></td>\n<td><strong>1000000000</strong></td>\n<td>Checking</td>\n<td>USAePay test</td>\n</tr>\n<tr>\n<td><strong>USAePay</strong></td>\n<td>ACH – Failure</td>\n<td><strong>121042882</strong></td>\n<td><strong>2000000000</strong></td>\n<td>Checking</td>\n<td>Generic decline</td>\n</tr>\n<tr>\n<td><strong>Stripe</strong></td>\n<td>ACH – Success</td>\n<td><strong>110000000</strong></td>\n<td><strong>000123456789</strong></td>\n<td>Checking</td>\n<td>Stripe sandbox</td>\n</tr>\n<tr>\n<td><strong>Stripe</strong></td>\n<td>ACH – NSF</td>\n<td><strong>110000000</strong></td>\n<td><strong>000111111111</strong></td>\n<td>Checking</td>\n<td>Insufficient funds</td>\n</tr>\n<tr>\n<td><strong>Stripe</strong></td>\n<td>ACH – Account Closed</td>\n<td><strong>110000000</strong></td>\n<td><strong>000222222222</strong></td>\n<td>Checking</td>\n<td>Account-closed return</td>\n</tr>\n<tr>\n<td><strong>Authorize.Net</strong></td>\n<td>ACH – Success</td>\n<td><strong>121042882</strong></td>\n<td><strong>123456789</strong></td>\n<td>Checking</td>\n<td>Compatible with eCheck sandbox</td>\n</tr>\n<tr>\n<td><strong>Authorize.Net</strong></td>\n<td>ACH – Decline (R01)</td>\n<td><strong>121042882</strong></td>\n<td><strong>000000000</strong></td>\n<td>Checking</td>\n<td>Forces R01</td>\n</tr>\n<tr>\n<td><strong>Revolv3</strong></td>\n<td>ACH – Success</td>\n<td><strong>084000026</strong></td>\n<td><strong>123456789</strong></td>\n<td>Checking</td>\n<td>Revolv3 generic test</td>\n</tr>\n<tr>\n<td><strong>Revolv3</strong></td>\n<td>ACH – Failure</td>\n<td><strong>084000026</strong></td>\n<td><strong>000000000</strong></td>\n<td>Checking</td>\n<td>Simulated ACH decline</td>\n</tr>\n<tr>\n<td><strong>FluidPay</strong></td>\n<td>ACH – Success</td>\n<td><strong>071000013</strong></td>\n<td><strong>123456789</strong></td>\n<td>Checking</td>\n<td>FluidPay ACH approval</td>\n</tr>\n<tr>\n<td><strong>FluidPay</strong></td>\n<td>ACH – NSF</td>\n<td><strong>071000013</strong></td>\n<td><strong>000111111</strong></td>\n<td>Checking</td>\n<td>Forces decline</td>\n</tr>\n</tbody>\n</table>\n</div><p>*For most uptodate test information please check with connected gateay documentation</p>\n","_postman_id":"6c9e7156-d36f-4ffd-8abc-97ab8ed5ce83"},{"name":"Custom Descriptor","item":[],"id":"ce5d0673-cfed-49f2-aeed-bb489d57cedc","description":"<p>By default the descriptor will be set to the Company Name field found in your dashboard under My account. You can override this by setting the descriptor property when you prepare your payment using the fastPay endpoint.</p>\n<p>A descriptor can allow be assigned to the Token. This is done using the Tokenize request. If a descriptor is assigned to a token and the setting is turned on in My Account | Integrations | Manage Gateways | Use Original Descriptor, then all subsequent transactions, no matter what businessID originated the transaction. With this setting a payment using that token will use the original payment descriptor. This is useful if a payment account is split between two separate business DBA's and helps card holders avoid confusion on recurring payments and reduce chargebacks.</p>\n","_postman_id":"ce5d0673-cfed-49f2-aeed-bb489d57cedc"},{"name":"Advanced Payments and Order","item":[{"name":"Paylink","item":[{"name":"Tokenize","event":[{"listen":"test","script":{"id":"fc2bd41e-7372-4b23-b94e-5648245a81cb","exec":["pm.test('Status code is 200', function () {\r","    pm.response.to.have.status(200);\r","})\r",""],"type":"text/javascript","packages":{},"requests":{}}}],"id":"6aa0c146-49e2-443a-a2ae-ddab0145be43","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"replaceWithFloPayUser"},{"key":"password","value":"replaceWithFloPayPassword"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"encryptedCard\": \"juhkq9WH1Q5d80MphrQWAhZd8cR/JsYx6XaEBeSb9rkMh2Sm7m/HAcbRMfoqyW8KAILDmaC11EgaGzf74Mwe0nIzKEAf3aV1ibrdG2ILbtc41Kr4RhTyuGlJHy8EJ7wgGnoq3kZjOIaFEgkPEpEo5s7HqD/LuuEMtprpcHHmeyMzw+oJiil7SJEqWx2yZPdQnMmGN9dLx0U+PFFmsY5d0x82ohOQeMF/u0rIlR3tOue/TKZmGFqllpuR+aVzlooCSKAV/b6fVpP5bd0t5lELiBH4LrR9rHa4DlGPkbsP3YyEUNaktCu9wh8/MRVPqLpHMR4jd0y+VDuzJ5ocQC0kTg==\",\r\n    \"encryptedCvv\": \"nu+TWv3pI9AXgrbwlxmeo++J0QPS4AKgw0XDS1xY2McSUm0LhCoi6cXDGDWaePbU6F5Wwai1vtjMuby1tkMNnk8r8Te5dGx5Npsb4rf1wq53g11lBgaGEgVnXCdV/ka46Ihc+OeDgWncd8+kimKTnNeBLOLFMFfEw8MOYXpmf4xyo2u2FXT5U/OcMm8/PZjcVZMyv8thYQxq07frQrpSxYWH7Mr/mK3j2LteQoiOwQsP+ZDL+Mk0AajwGLm2e0f1YamABNaNW6htFfPvNtvnYTuUJmXKMC85fW1z+G/TdMKpX58VqQ4Xi/RCPyRD7y94zgpdIB9YQD69tiY1M5O2TQ==\",\r\n    \"businessId\": \"{{businessId}}\",\r\n    \"descriptor\": \"Alpha Go\",\r\n    \"cardHolderName\": \"Jim Morrison\",\r\n    \"expMonth\": \"12\",\r\n    \"expYear\": \"26\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{gatewayBase}}/tokenize","description":"<p>Tokenizing a Card</p>\n<p>Browser Based Encryption</p>\n<p><a href=\"https://jsfiddle.net/TokenEx/pdx9qLqh/\">https://jsfiddle.net/TokenEx/pdx9qLqh/</a></p>\n<p>Browser Based encryption allow you to safely process credit cards using Sale API with out using the checkout iframe, email or text links. This API cannot preform 3DS. BBE is a PCI approved way to encrypt card data in the browser and prevent the card number from being handled by your server. Read more about BBE on the Tokenex site.</p>\n<ul>\n<li><p>Save encryption Public Key</p>\n</li>\n<li><p>Use BBE JS Lib to encrypt the encryptedCard and encryptedCvv fields</p>\n</li>\n</ul>\n","urlObject":{"path":["tokenize"],"host":["{{gatewayBase}}"],"query":[],"variable":[]}},"response":[{"id":"ed78986a-1d4f-4b36-a818-0e8a79373e31","name":"ACH","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"encryptedCard\":\"juhkq9WH1Q5d80MphrQWAhZd8cR/JsYx6XaEBeSb9rkMh2Sm7m/HAcbRMfoqyW8KAILDmaC11EgaGzf74Mwe0nIzKEAf3aV1ibrdG2ILbtc41Kr4RhTyuGlJHy8EJ7wgGnoq3kZjOIaFEgkPEpEo5s7HqD/LuuEMtprpcHHmeyMzw+oJiil7SJEqWx2yZPdQnMmGN9dLx0U+PFFmsY5d0x82ohOQeMF/u0rIlR3tOue/TKZmGFqllpuR+aVzlooCSKAV/b6fVpP5bd0t5lELiBH4LrR9rHa4DlGPkbsP3YyEUNaktCu9wh8/MRVPqLpHMR4jd0y+VDuzJ5ocQC0kTg==\",\r\n    \"encryptedCvv\":\"nu+TWv3pI9AXgrbwlxmeo++J0QPS4AKgw0XDS1xY2McSUm0LhCoi6cXDGDWaePbU6F5Wwai1vtjMuby1tkMNnk8r8Te5dGx5Npsb4rf1wq53g11lBgaGEgVnXCdV/ka46Ihc+OeDgWncd8+kimKTnNeBLOLFMFfEw8MOYXpmf4xyo2u2FXT5U/OcMm8/PZjcVZMyv8thYQxq07frQrpSxYWH7Mr/mK3j2LteQoiOwQsP+ZDL+Mk0AajwGLm2e0f1YamABNaNW6htFfPvNtvnYTuUJmXKMC85fW1z+G/TdMKpX58VqQ4Xi/RCPyRD7y94zgpdIB9YQD69tiY1M5O2TQ==\",\r\n    \"businessId\":\"1z2HUO9nT2\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{gatewayBase}}/tokenize"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 Aug 2024 19:50:17 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"66"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"7ed85d68-e1fe-460d-a8c1-55504fb14d8a"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"x-amz-apigw-id","value":"c3-2nHUQoAMEEEw="},{"key":"X-Amzn-Trace-Id","value":"Root=1-66c644f6-3961713b7165a142375b6ef6;Parent=237acd8cbc74d4c6;Sampled=0;lineage=2a121c2a:0|7dc692c9:0"},{"key":"Access-Control-Allow-Credentials","value":"true"}],"cookie":[],"responseTime":null,"body":"{\n    \"token\": \"424242ORTGgx4242\",\n    \"firstSix\": \"424242\",\n    \"lastFour\": \"4242\"\n}"},{"id":"0432a8da-dbed-4aeb-9a2c-32e3cdf516f7","name":"CARD","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"encryptedCard\": \"juhkq9WH1Q5d80MphrQWAhZd8cR/JsYx6XaEBeSb9rkMh2Sm7m/HAcbRMfoqyW8KAILDmaC11EgaGzf74Mwe0nIzKEAf3aV1ibrdG2ILbtc41Kr4RhTyuGlJHy8EJ7wgGnoq3kZjOIaFEgkPEpEo5s7HqD/LuuEMtprpcHHmeyMzw+oJiil7SJEqWx2yZPdQnMmGN9dLx0U+PFFmsY5d0x82ohOQeMF/u0rIlR3tOue/TKZmGFqllpuR+aVzlooCSKAV/b6fVpP5bd0t5lELiBH4LrR9rHa4DlGPkbsP3YyEUNaktCu9wh8/MRVPqLpHMR4jd0y+VDuzJ5ocQC0kTg==\",\r\n    \"encryptedCvv\": \"nu+TWv3pI9AXgrbwlxmeo++J0QPS4AKgw0XDS1xY2McSUm0LhCoi6cXDGDWaePbU6F5Wwai1vtjMuby1tkMNnk8r8Te5dGx5Npsb4rf1wq53g11lBgaGEgVnXCdV/ka46Ihc+OeDgWncd8+kimKTnNeBLOLFMFfEw8MOYXpmf4xyo2u2FXT5U/OcMm8/PZjcVZMyv8thYQxq07frQrpSxYWH7Mr/mK3j2LteQoiOwQsP+ZDL+Mk0AajwGLm2e0f1YamABNaNW6htFfPvNtvnYTuUJmXKMC85fW1z+G/TdMKpX58VqQ4Xi/RCPyRD7y94zgpdIB9YQD69tiY1M5O2TQ==\",\r\n    \"businessId\": \"{{businessId}}\",\r\n    \"descriptor\": \"Alpha Go\",\r\n    \"cardHolderName\": \"Jim Morrison\",\r\n    \"expMonth\": \"12\",\r\n    \"expYear\": \"26\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{gatewayBase}}/tokenize"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"6aa0c146-49e2-443a-a2ae-ddab0145be43"},{"name":"Create Item (Paylink)","event":[{"listen":"test","script":{"id":"ab0f22b7-e4e7-46cb-9c8f-3b607f6e6753","exec":["pm.test('Status code is 200', function () {\r","    pm.response.to.have.status(200);\r","})\r","var jsonData = pm.response.json();\r","pm.environment.set(\"itemId\", jsonData.id);"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"d74b3d69-3771-40a7-b4bb-bff41fdabe44","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"replaceWithFloPayUser"},{"key":"password","value":"replaceWithFloPayPassword"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"uoms\": [\r\n    {\r\n      \"name\": \"EA\",\r\n      \"conversion\": 1\r\n    }\r\n  ],\r\n  \"type\": \"Service-Contract\",\r\n  \"contractType\": \"paylink\",\r\n  \"number\": \"12345test\",\r\n  \"description\": \"1111 Service Contract\",\r\n  \"partTypeData\": {\r\n    \"coverage\": {\r\n      \"type\": \"Full\",\r\n      \"term\": 12,\r\n      \"programName\": \"Gold\",\r\n      \"planName\": \"Gold Plan\",\r\n      \"mileage\": \"100000\"\r\n    }\r\n  },\r\n  \"cost\": \"50\",\r\n  \"price\": \"50\",\r\n  \"businessId\": \"{{businessId}}\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base}}/part","description":"<p><strong>Create Item (Service Contract)</strong></p>\n<p><code>POST https://api.flopay.co/erp/part</code></p>\n<p><strong>Note:</strong> In the dashboard this is called an Item, an Item is created using this endpoint. A part/item can be a physical thing,contract, or anything else sold.</p>\n<p>When Creating a Paylink Item make sure to to select in the dashboard or set the type in the body, and provide all relevent information. See example request below. Paylink part should be of type service contract.</p>\n","urlObject":{"path":["part"],"host":["{{base}}"],"query":[],"variable":[]}},"response":[{"id":"c09dcba9-2ae9-4185-9656-93c496025d4d","name":"Create Item (Paylink)","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"uoms\": [\r\n    {\r\n      \"name\": \"EA\",\r\n      \"conversion\": 1\r\n    }\r\n  ],\r\n  \"type\": \"Service-Contract\",\r\n  \"contractType\": \"paylink\",\r\n  \"number\": \"1112\",\r\n  \"description\": \"1111 Service Contract\",\r\n  \"partTypeData\": {\r\n    \"coverage\": {\r\n      \"type\": \"Full\",\r\n      \"term\": 12,\r\n      \"programName\": \"Gold\",\r\n      \"planName\": \"Gold Plan\",\r\n      \"mileage\": \"100000\"\r\n    }\r\n  },\r\n  \"cost\": \"50\",\r\n  \"price\": \"50\",\r\n  \"businessId\": \"{{businessId}}\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base}}/part"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Date","value":"Mon, 09 Feb 2026 20:22:43 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"625"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"ccbd6ced-d82a-4042-8bf1-48cea2696c10"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"x-amz-apigw-id","value":"Yh9DBFtIoAMEm6A="},{"key":"X-Amzn-Trace-Id","value":"Root=1-698a4212-3c4dd1df790573a16e743da8;Parent=4423fb5680336c95;Sampled=0;Lineage=1:ccb0289b:0"},{"key":"Access-Control-Allow-Credentials","value":"true"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 739,\n    \"number\": \"1112\",\n    \"ref\": null,\n    \"hookRef\": null,\n    \"incomeAccountId\": null,\n    \"inventoryAccountId\": null,\n    \"expenseAccountId\": null,\n    \"description\": \"1111 Service Contract\",\n    \"stockLevel\": 0,\n    \"cost\": 50,\n    \"price\": 50,\n    \"type\": \"Service-Contract\",\n    \"taxable\": true,\n    \"trackingType\": [],\n    \"active\": true,\n    \"businessId\": \"1z2HUO9nT2\",\n    \"defaultLocationId\": null,\n    \"contractType\": \"paylink\",\n    \"partTypeData\": {\n        \"coverage\": {\n            \"term\": 12,\n            \"type\": \"Full\",\n            \"mileage\": \"100000\",\n            \"planName\": \"Gold Plan\",\n            \"programName\": \"Gold\"\n        }\n    },\n    \"notes\": [],\n    \"tags\": [],\n    \"uoms\": [\n        {\n            \"name\": \"EA\",\n            \"conversion\": 1\n        }\n    ],\n    \"createdAt\": \"2026-02-09T20:22:42.976Z\",\n    \"updatedAt\": \"2026-02-09T20:22:42.976Z\",\n    \"defaultLocation\": null\n}"},{"id":"b39b4b45-ae4c-478c-adb6-7f4ad0e19bcf","name":"Error 500","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"businessId\": \"{{businessId}}\",\r\n    \"number\": \"O\",\r\n    \"description\": \"Office Supplies\",\r\n    \"stockLevel\": \"1000\",\r\n    \"cost\": \"15\",\r\n    \"price\": \"25\",\r\n    \"taxRate\": \"0.0625\",\r\n    \"type\": \"Inventory\",\r\n    \"taxable\": true,\r\n    \"trackingType\": [],\r\n    \"active\": true,\r\n    \"defaultLocationId\": 2,\r\n    \"notes\": [],\r\n    \"tags\": [],\r\n    \"uoms\": [\r\n        {\r\n            \"name\": \"EA\",\r\n            \"conversion\": 1\r\n        }\r\n    ],\r\n    \"defaultLocation\": {\r\n        \"id\": 2,\r\n        \"name\": \"L2000\",\r\n        \"description\": \" Main Office\",\r\n        \"address\": \"1232 W. 123 S. Orem, Utah 84062\",\r\n        \"active\": true,\r\n        \"site\": true,\r\n        \"readonly\": true,\r\n        \"path\": \".2.\",\r\n        \"businessId\": \"iSaMmxSpt9\",\r\n        \"notes\": [],\r\n        \"tags\": []\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base}}/part"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"257"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Nov 2023 03:08:42 GMT"},{"key":"x-amzn-RequestId","value":"89ce4d12-62da-422c-8be1-83d5200eac4c"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"x-amz-apigw-id","value":"OhbhNHQBIAMEK0g="},{"key":"X-Amzn-Trace-Id","value":"Root=1-6556d93a-3592bbe10757ab005c3b2257;Sampled=0;lineage=e21dbd46:0"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 34d83bdced2ff151ec8c14c89b681518.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"SLC50-C1"},{"key":"X-Amz-Cf-Id","value":"ainlM9YR-DBeIz4BVYl_zVYqMTfEAXaiZiX3nlH9nrmfP9Nlw0eQFA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"statusCode\": 500,\n    \"errorCode\": \"5XX\",\n    \"message\": \" number must be unique businessId must be uniqueKey (number, \\\"businessId\\\")=(OFSPLY-D, iSaMmxSpt9) already exists.error: duplicate key value violates unique constraint \\\"unique_constraint_number_businessId\\\"\"\n}"},{"id":"0cafd171-be9f-46bb-99cf-4dc544eaddc5","name":"Error 400","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"businessId\": \"{{businessId}}\",\r\n    \"number\": \"O\",\r\n    \"description\": \"Office Supplies\",\r\n    \"stockLevel\": \"1000\",\r\n    \"cost\": \"15\",\r\n    \"price\": \"25\",\r\n    \"taxRate\": \"0.0625\",\r\n    \"type\": \"Inventory\",\r\n    \"taxable\": true,\r\n    \"trackingType\": [],\r\n    \"active\": true,\r\n    \"defaultLocationId\": 2,\r\n    \"notes\": [],\r\n    \"tags\": [],\r\n    \"uoms\": [\r\n        {\r\n            \"name\": \"EA\",\r\n            \"conversion\": 1\r\n        }\r\n    ],\r\n    \"defaultLocation\": {\r\n        \"id\": 2,\r\n        \"name\": \"L2000\",\r\n        \"description\": \" Main Office\",\r\n        \"address\": \"1232 W. 123 S. Orem, Utah 84062\",\r\n        \"active\": true,\r\n        \"site\": true,\r\n        \"readonly\": true,\r\n        \"path\": \".2.\",\r\n        \"businessId\": \"iSaMmxSpt9\",\r\n        \"notes\": [],\r\n        \"tags\": []\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base}}/part"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"102"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Nov 2023 03:10:14 GMT"},{"key":"x-amzn-RequestId","value":"5735e69c-8db5-4801-af20-a7214463399f"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"x-amz-apigw-id","value":"OhbvhEfCIAMEctg="},{"key":"X-Amzn-Trace-Id","value":"Root=1-6556d996-33c78bb73b7a85f33c09e39f;Sampled=0;lineage=829e0d55:0|e21dbd46:0"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 34d83bdced2ff151ec8c14c89b681518.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"SLC50-C1"},{"key":"X-Amz-Cf-Id","value":"Vw3zSa09OuWP3FZu8JbW4bhObb6NMs9vLfshTwKmBX_fV8Je_460Ew=="}],"cookie":[],"responseTime":null,"body":"{\n    \"statusCode\": 400,\n    \"errorCode\": \"4000\",\n    \"message\": \"\\\"number\\\" length must be at least 4 characters long\"\n}"}],"_postman_id":"d74b3d69-3771-40a7-b4bb-bff41fdabe44"},{"name":"Create Order (Paylink) Copy","event":[{"listen":"test","script":{"id":"bc399ac1-0c64-498c-ba71-020754017b66","exec":["pm.test('Status code is 200', function () {\r","    pm.response.to.have.status(200);\r","})\r",""],"type":"text/javascript","packages":{},"requests":{}}}],"id":"3a75f360-a64c-4dd0-a466-c398ae805e24","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"replaceWithFloPayUser"},{"key":"password","value":"replaceWithFloPayPassword"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"assignedToUser\": \"qa@flopay.co\",\r\n    \"orderItems\": [\r\n        {\r\n            \"price\": \"2000\",\r\n            \"extendedPrice\": 1000,\r\n            \"description\": \"Great Warranty\",\r\n            \"number\": \"GoldHammer\",\r\n            \"uom\": {\r\n                \"name\": \"EA\",\r\n                \"conversion\": 1\r\n            },\r\n            \"part\": {\r\n                \"id\": 749,\r\n                \"number\": \"GoldHammer\",\r\n                \"ref\": null,\r\n                \"hookRef\": null,\r\n                \"incomeAccountId\": null,\r\n                \"inventoryAccountId\": null,\r\n                \"expenseAccountId\": null,\r\n                \"description\": \"Great Warranty\",\r\n                \"stockLevel\": null,\r\n                \"cost\": \"100\",\r\n                \"price\": \"1000\",\r\n                \"type\": \"Service-Contract\",\r\n                \"taxable\": true,\r\n                \"trackingType\": [],\r\n                \"active\": true,\r\n                \"businessId\": \"1z2HUO9nT2\",\r\n                \"defaultLocationId\": null,\r\n                \"contractType\": \"paylink\",\r\n                \"partTypeData\": {\r\n                    \"coverage\": {\r\n                        \"term\": 12,\r\n                        \"type\": \"AUTO\",\r\n                        \"mileage\": \"100000\",\r\n                        \"planName\": \"GoldHammer\",\r\n                        \"programName\": \"Great Warranty\"\r\n                    }\r\n                },\r\n                \"notes\": [],\r\n                \"tags\": [],\r\n                \"uoms\": [\r\n                    {\r\n                        \"name\": \"EA\",\r\n                        \"conversion\": 1\r\n                    }\r\n                ],\r\n                \"createdAt\": \"2026-02-13T20:03:25.634Z\",\r\n                \"updatedAt\": \"2026-02-13T20:12:42.445Z\",\r\n                \"defaultLocation\": null,\r\n                \"expenseAccount\": null,\r\n                \"incomeAccount\": null,\r\n                \"inventoryAccount\": null\r\n            },\r\n            \"partId\": 749,\r\n            \"quantity\": \"1\",\r\n            \"locationId\": null,\r\n            \"location\": null,\r\n            \"complete\": false,\r\n            \"orderItemData\": {\r\n                \"effectiveDate\": \"2026-02-25\",\r\n                \"firstPaymentDate\": \"2026-02-25\",\r\n                \"totalAmount\": \"2000\",\r\n                \"totalInstallments\": 18,\r\n                \"coverage\": {\r\n                    \"type\": \"AUTO\",\r\n                    \"term\": 36,\r\n                    \"programName\": \"Great Warranty\",\r\n                    \"planName\": \"GoldHammer\",\r\n                    \"mileage\": \"100000\"\r\n                },\r\n                \"vehicle\": {\r\n                    \"year\": 2015,\r\n                    \"make\": \"car\",\r\n                    \"model\": \"car\",\r\n                    \"vin\": \"12312312312312312\",\r\n                    \"odometer\": \"10000\"\r\n                },\r\n                \"agent\": {\r\n                    \"name\": \"Name\",\r\n                    \"email\": \"name@email.com\",\r\n                    \"dealerCost\": \"900\"\r\n                }\r\n            }\r\n        }\r\n    ],\r\n    \"downPayment\": \"200\",\r\n    \"customerId\": 476,\r\n    \"taxRate\": {\r\n        \"name\": \"No Tax\",\r\n        \"rate\": 0,\r\n        \"agency\": \"Utah\",\r\n        \"isDefault\": true\r\n    },\r\n    \"businessId\": \"1z2HUO9nT2\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base}}/order","description":"<p><strong>Create an Order</strong></p>\n<p><code>POST https://api.flopay.co/erp/order</code></p>\n<p>Create orders and invoices from tracked items. New orders are created with a status of <code>estimate</code>. Once an order is opened its status will change to <code>open</code>. When a payment has been received, the status will change to <code>invoice</code>. An order must be created before a payment link can be generated. The payment link can then be sent via email or text message.</p>\n<p><strong>Paylink Order</strong></p>\n<p>When making a Paylink order be sure to include a valid service contract PART{} in the body of the request.</p>\n","urlObject":{"path":["order"],"host":["{{base}}"],"query":[],"variable":[]}},"response":[{"id":"a8829245-12e7-4504-987f-1978fa856314","name":"200(OK)","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"assignedToUser\": \"name@email.com\",\r\n  \"orderItems\": [\r\n    {\r\n      \"price\": \"50\",\r\n      \"extendedPrice\": 0,\r\n      \"description\": \"1111 Service Contract\",\r\n      \"number\": \"1112\",\r\n      \"uom\": {\r\n        \"name\": \"EA\",\r\n        \"conversion\": 1\r\n      },\r\n      \"part\": {\r\n        \"id\": 739,\r\n        \"number\": \"1112\",\r\n        \"ref\": null,\r\n        \"hookRef\": null,\r\n        \"incomeAccountId\": null,\r\n        \"inventoryAccountId\": null,\r\n        \"expenseAccountId\": null,\r\n        \"description\": \"1111 Service Contract\",\r\n        \"stockLevel\": null,\r\n        \"cost\": \"50\",\r\n        \"price\": \"50\",\r\n        \"type\": \"Service-Contract\",\r\n        \"taxable\": true,\r\n        \"trackingType\": [],\r\n        \"active\": true,\r\n        \"businessId\": \"{{businessId}}\",\r\n        \"defaultLocationId\": null,\r\n        \"contractType\": \"paylink\",\r\n        \"partTypeData\": {\r\n          \"coverage\": {\r\n            \"term\": 12,\r\n            \"type\": \"Full\",\r\n            \"mileage\": \"100000\",\r\n            \"planName\": \"Gold Plan\",\r\n            \"programName\": \"Gold\"\r\n          }\r\n        },\r\n        \"notes\": [],\r\n        \"tags\": [],\r\n        \"uoms\": [\r\n          {\r\n            \"name\": \"EA\",\r\n            \"conversion\": 1\r\n          }\r\n        ],\r\n        \"createdAt\": \"2026-02-09T20:22:42.976Z\",\r\n        \"updatedAt\": \"2026-02-09T20:22:42.976Z\",\r\n        \"defaultLocation\": null,\r\n        \"expenseAccount\": null,\r\n        \"incomeAccount\": null,\r\n        \"inventoryAccount\": null\r\n      },\r\n      \"partId\": 739,\r\n      \"quantity\": 1,\r\n      \"locationId\": null,\r\n      \"location\": null,\r\n      \"complete\": false,\r\n      \"orderItemData\": {\r\n        \"effectiveDate\": \"2026-02-09\",\r\n        \"firstPaymentDate\": \"2026-02-09\",\r\n        \"totalAmount\": \"50\",\r\n        \"totalInstallments\": 1,\r\n        \"coverage\": {\r\n          \"term\": 12,\r\n          \"type\": \"Full\",\r\n          \"mileage\": \"100000\",\r\n          \"planName\": \"Gold Plan\",\r\n          \"programName\": \"Gold\"\r\n        },\r\n        \"vehicle\": {\r\n          \"year\": 1913,\r\n          \"make\": \"vs\",\r\n          \"model\": \"vs\",\r\n          \"vin\": \"1234\",\r\n          \"odometer\": \"123\"\r\n        },\r\n        \"agent\": {\r\n          \"name\": \"agent name\",\r\n          \"email\": \"agent@email.com\",\r\n          \"dealerCost\": \"50\"\r\n        }\r\n      }\r\n    }\r\n  ],\r\n  \"customerId\": 520,\r\n  \"taxRate\": {\r\n    \"name\": \"No Tax\",\r\n    \"rate\": 0,\r\n    \"agency\": \"Utah\",\r\n    \"isDefault\": true\r\n  },\r\n  \"businessId\": \"{{businessId}}\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base}}/order"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Date","value":"Mon, 09 Feb 2026 20:33:15 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"3360"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"7b219e8d-456b-415c-899b-dba906966a44"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"x-amz-apigw-id","value":"Yh-lfFVKoAMEJbg="},{"key":"X-Amzn-Trace-Id","value":"Root=1-698a4489-1ae6a6085f0055187fbeebd7;Parent=26bb3dd5b23bbe45;Sampled=0;Lineage=2:3239fe84:0"},{"key":"Access-Control-Allow-Credentials","value":"true"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 2027,\n    \"number\": \"2027\",\n    \"total\": \"50\",\n    \"subTotal\": \"50\",\n    \"terms\": \"Card\",\n    \"status\": \"Open\",\n    \"paymentStatus\": null,\n    \"tax\": \"0\",\n    \"hookRef\": null,\n    \"businessId\": \"{{businessId}}\",\n    \"taxRate\": {\n        \"name\": \"No Tax\",\n        \"rate\": 0,\n        \"agency\": \"Utah\",\n        \"isDefault\": true\n    },\n    \"customerId\": 520,\n    \"assignedToUserId\": 116,\n    \"notes\": [],\n    \"tags\": [],\n    \"createdAt\": \"2026-02-09T20:33:14.641Z\",\n    \"updatedAt\": \"2026-02-09T20:33:15.006Z\",\n    \"orderItems\": [\n        {\n            \"id\": 2085,\n            \"businessId\": \"{{businessId}}\",\n            \"complete\": false,\n            \"description\": \"1111 Service Contract\",\n            \"number\": \"1112\",\n            \"price\": \"50\",\n            \"partId\": 739,\n            \"locationId\": null,\n            \"vendorId\": null,\n            \"customerId\": null,\n            \"quantity\": \"1\",\n            \"uom\": {\n                \"name\": \"EA\",\n                \"conversion\": 1\n            },\n            \"orderItemData\": {\n                \"agent\": {\n                    \"name\": \"agent name\",\n                    \"email\": \"agent@email.com\",\n                    \"dealerCost\": \"50\"\n                },\n                \"vehicle\": {\n                    \"vin\": \"1234\",\n                    \"make\": \"vs\",\n                    \"year\": 1913,\n                    \"model\": \"vs\",\n                    \"odometer\": \"123\"\n                },\n                \"coverage\": {\n                    \"term\": 12,\n                    \"type\": \"Full\",\n                    \"mileage\": \"100000\",\n                    \"planName\": \"Gold Plan\",\n                    \"programName\": \"Gold\"\n                },\n                \"totalAmount\": \"50\",\n                \"effectiveDate\": \"2026-02-09\",\n                \"firstPaymentDate\": \"2026-02-09\",\n                \"totalInstallments\": 1\n            },\n            \"orderId\": 2027,\n            \"part\": {\n                \"id\": 739,\n                \"number\": \"1112\",\n                \"ref\": null,\n                \"hookRef\": null,\n                \"incomeAccountId\": null,\n                \"inventoryAccountId\": null,\n                \"expenseAccountId\": null,\n                \"description\": \"1111 Service Contract\",\n                \"stockLevel\": null,\n                \"cost\": \"50\",\n                \"price\": \"50\",\n                \"type\": \"Service-Contract\",\n                \"taxable\": true,\n                \"trackingType\": [],\n                \"active\": true,\n                \"businessId\": \"{{businessId}}\",\n                \"defaultLocationId\": null,\n                \"contractType\": \"paylink\",\n                \"partTypeData\": {\n                    \"coverage\": {\n                        \"term\": 12,\n                        \"type\": \"Full\",\n                        \"mileage\": \"100000\",\n                        \"planName\": \"Gold Plan\",\n                        \"programName\": \"Gold\"\n                    }\n                },\n                \"notes\": [],\n                \"tags\": [],\n                \"uoms\": [\n                    {\n                        \"name\": \"EA\",\n                        \"conversion\": 1\n                    }\n                ],\n                \"defaultLocation\": null,\n                \"expenseAccount\": null,\n                \"incomeAccount\": null,\n                \"inventoryAccount\": null\n            }\n        }\n    ],\n    \"assignedToUser\": {\n        \"name\": \"Name Name\",\n        \"id\": 116,\n        \"username\": \"Name@email.com\",\n        \"businessId\": \"{{businessId}}\",\n        \"module\": {\n            \"part\": true,\n            \"user\": true,\n            \"inbox\": true,\n            \"order\": true,\n            \"report\": true,\n            \"ticket\": true,\n            \"vendor\": false,\n            \"company\": true,\n            \"payment\": true,\n            \"release\": false,\n            \"webhook\": true,\n            \"customer\": true,\n            \"location\": false,\n            \"dashboard\": true,\n            \"inventory\": false,\n            \"receivable\": false,\n            \"webhookLog\": true\n        },\n        \"nameFirst\": \"Name\",\n        \"nameLast\": \"Name\",\n        \"contacts\": [],\n        \"notes\": [],\n        \"tags\": []\n    },\n    \"customer\": {\n        \"id\": 520,\n        \"active\": true,\n        \"hookRef\": null,\n        \"optIn\": true,\n        \"cards\": [\n            {\n                \"isAch\": false,\n                \"token\": \"1ffc8a02-ec0c-45c7-8093-da1f221d46c8\",\n                \"expYear\": \"36\",\n                \"cardType\": \"visa\",\n                \"expMonth\": \"12\",\n                \"firstSix\": \"411111\",\n                \"lastFour\": \"1111\",\n                \"isDefault\": true,\n                \"securityCode\": \"123\",\n                \"cardHolderName\": \"test\"\n            }\n        ],\n        \"ref\": null,\n        \"name\": \"Alpha Test\",\n        \"terms\": null,\n        \"companyName\": null,\n        \"taxRate\": {\n            \"name\": \"No Tax\",\n            \"rate\": 0,\n            \"agency\": \"Utah\",\n            \"isDefault\": true\n        },\n        \"businessId\": \"{{businessId}}\",\n        \"contacts\": [\n            {\n                \"city\": \"dover\",\n                \"type\": \"shipToAddress\",\n                \"state\": \"\",\n                \"street\": \"8 the grn ste 19056\",\n                \"postalCode\": \"84062\",\n                \"countryCode\": \"US\"\n            },\n            {\n                \"type\": \"email\",\n                \"address\": \"email@email.com\"\n            },\n            {\n                \"type\": \"mobile\",\n                \"number\": \"+11231231231\"\n            }\n        ],\n        \"notes\": [],\n        \"tags\": []\n    },\n    \"release\": null,\n    \"payments\": [\n        {\n            \"id\": 3891,\n            \"deleted\": false,\n            \"token\": {},\n            \"providerRef\": null,\n            \"paymentProviderId\": \"\",\n            \"gatewayRef\": null,\n            \"status\": \"Open\",\n            \"descriptor\": null,\n            \"type\": null,\n            \"uid\": \"9iXwPUsp2gj1ASRnYDemYO5awnbwZDB6xS1y9E9Q\",\n            \"hookRef\": \"\",\n            \"nextDate\": null,\n            \"amount\": \"50\",\n            \"currency\": \"USD\",\n            \"businessId\": \"1z2HUO9nT2\",\n            \"options\": {},\n            \"transactionDate\": null,\n            \"retry\": null,\n            \"customerId\": 520,\n            \"orderId\": 2027,\n            \"installmentPlanId\": null,\n            \"installmentNumber\": null,\n            \"installmentPlanType\": null,\n            \"tags\": [],\n            \"notes\": [],\n            \"createdAt\": \"2026-02-09T20:33:15.058Z\",\n            \"updatedAt\": \"2026-02-09T20:33:15.058Z\"\n        }\n    ]\n}"}],"_postman_id":"3a75f360-a64c-4dd0-a466-c398ae805e24"},{"name":"Update Order (Paylink)","id":"4859735e-e6bc-4f7c-a328-c9912bb9bb6a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"replaceWithFloPayUser"},{"key":"password","value":"replaceWithFloPayPassword"}]},"isInherited":false},"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n  \"id\": 2293,\r\n  \"number\": \"2293\",\r\n  \"total\": \"50\",\r\n  \"subTotal\": \"50\",\r\n  \"downPayment\": \"10\",\r\n  \"terms\": \"Card\",\r\n  \"status\": \"Open\",\r\n  \"paymentStatus\": null,\r\n  \"tax\": \"0\",\r\n  \"hookRef\": null,\r\n  \"businessId\": \"1z2HUO9nT2\",\r\n  \"taxRate\": {\r\n    \"name\": \"No Tax\",\r\n    \"rate\": 0,\r\n    \"agency\": \"Utah\",\r\n    \"isDefault\": true\r\n  },\r\n  \"customerId\": 546,\r\n  \"assignedToUserId\": 133,\r\n  \"notes\": [],\r\n  \"tags\": [],\r\n  \"createdAt\": \"2026-02-16T20:09:57.529Z\",\r\n  \"updatedAt\": \"2026-02-16T20:10:40.021Z\",\r\n  \"customer\": {\r\n    \"id\": 546,\r\n    \"active\": true,\r\n    \"hookRef\": null,\r\n    \"optIn\": true,\r\n    \"cards\": [\r\n      {\r\n        \"isAch\": false,\r\n        \"token\": \"1ffc8a02-ec0c-45c7-8093-da1f221d46c8\",\r\n        \"expYear\": \"30\",\r\n        \"cardType\": \"visa\",\r\n        \"expMonth\": \"12\",\r\n        \"firstSix\": \"411111\",\r\n        \"lastFour\": \"1111\",\r\n        \"isDefault\": true,\r\n        \"cardHolderName\": \"Benson Buren\"\r\n      }\r\n    ],\r\n    \"ref\": null,\r\n    \"name\": \"Tester\",\r\n    \"terms\": null,\r\n    \"companyName\": \"My cool Company\",\r\n    \"taxRate\": {\r\n      \"name\": \"No Tax\",\r\n      \"rate\": 0,\r\n      \"agency\": \"Utah\",\r\n      \"isDefault\": true\r\n    },\r\n    \"businessId\": \"1z2HUO9nT2\",\r\n    \"contacts\": [\r\n      {\r\n        \"city\": \"The Hills\",\r\n        \"type\": \"billToAddress\",\r\n        \"state\": \"DE\",\r\n        \"street\": \"123 Adress\",\r\n        \"postalCode\": \"123456\",\r\n        \"countryCode\": \"US\"\r\n      },\r\n      {\r\n        \"city\": \"The Hills\",\r\n        \"type\": \"shipToAddress\",\r\n        \"state\": \"DE\",\r\n        \"street\": \"123 Adress\",\r\n        \"postalCode\": \"123456\",\r\n        \"countryCode\": \"US\"\r\n      }\r\n    ],\r\n    \"notes\": [],\r\n    \"tags\": [],\r\n    \"createdAt\": \"2026-02-16T20:08:05.960Z\",\r\n    \"updatedAt\": \"2026-02-16T20:10:39.902Z\"\r\n  },\r\n  \"assignedToUser\": {\r\n    \"name\": \"Question Answer\",\r\n    \"id\": 133,\r\n    \"username\": \"qa@flopay.co\",\r\n    \"businessId\": \"1z2HUO9nT2\",\r\n    \"module\": {\r\n      \"part\": true,\r\n      \"user\": true,\r\n      \"inbox\": true,\r\n      \"order\": true,\r\n      \"report\": true,\r\n      \"ticket\": true,\r\n      \"vendor\": false,\r\n      \"company\": true,\r\n      \"payment\": true,\r\n      \"release\": false,\r\n      \"webhook\": true,\r\n      \"customer\": true,\r\n      \"location\": false,\r\n      \"dashboard\": true,\r\n      \"inventory\": false,\r\n      \"receivable\": false,\r\n      \"webhookLog\": true\r\n    },\r\n    \"nameFirst\": \"Question\",\r\n    \"nameLast\": \"Answer\",\r\n    \"contacts\": [],\r\n    \"notes\": [],\r\n    \"tags\": [],\r\n    \"createdAt\": \"2026-02-12T21:57:11.242Z\",\r\n    \"updatedAt\": \"2026-02-12T21:57:11.242Z\"\r\n  },\r\n  \"payments\": [\r\n    {\r\n      \"id\": 4069,\r\n      \"deleted\": false,\r\n      \"paymentProviderData\": {\r\n        \"payment\": {\r\n          \"id\": \"mtzqlffyBcyUCubKVNsPH5Hll8ZJRgwrFa6dZfFf\",\r\n          \"ttl\": 1779048618,\r\n          \"order\": {\r\n            \"number\": \"2205\"\r\n          },\r\n          \"token\": {\r\n            \"isAch\": false,\r\n            \"token\": \"1ffc8a02-ec0c-45c7-8093-da1f221d46c8\",\r\n            \"expYear\": \"30\",\r\n            \"cardType\": \"visa\",\r\n            \"expMonth\": \"12\",\r\n            \"firstSix\": \"411111\",\r\n            \"lastFour\": \"1111\",\r\n            \"cardHolderName\": \"Benson Buren\"\r\n          },\r\n          \"amount\": 10,\r\n          \"result\": {\r\n            \"name\": \"nmi\",\r\n            \"amount\": 10,\r\n            \"message\": \"SUCCESS\",\r\n            \"currency\": \"USD\",\r\n            \"gatewayRef\": \"11714921442\",\r\n            \"providerId\": \"xYlfZBvxLR\"\r\n          },\r\n          \"status\": \"Complete\",\r\n          \"options\": {\r\n            \"authOnly\": false,\r\n            \"check3ds\": false,\r\n            \"webhookUrl\": \"https://devapi.flopay.co/erp/payment/webhook?id=4069&businessId=1z2HUO9nT2&key=b495ad2ee68612eac2f70460599e1437955a8f75cf0e51d4d2c8303c73d73537\",\r\n            \"paymentType\": \"Virtual Terminal\",\r\n            \"tokenizeOnly\": false,\r\n            \"webhookFailUrl\": \"https://devapi.flopay.co/erp/payment/webhook?id=4069&businessId=1z2HUO9nT2&key=b495ad2ee68612eac2f70460599e1437955a8f75cf0e51d4d2c8303c73d73537\",\r\n            \"initializationType\": \"telemoto\"\r\n          },\r\n          \"currency\": \"USD\",\r\n          \"createdAt\": \"2026-02-16T20:10:18.103Z\",\r\n          \"updatedAt\": 1771272639739,\r\n          \"businessId\": \"1z2HUO9nT2\",\r\n          \"descriptor\": \"Vehicle Demo Plus 2205\"\r\n        },\r\n        \"prePayment\": {\r\n          \"id\": \"mtzqlffyBcyUCubKVNsPH5Hll8ZJRgwrFa6dZfFf\",\r\n          \"exp\": \"2026-02-16T21:10:18.171Z\",\r\n          \"url\": \"https://devapi.flopay.co/gateway/checkout/mtzqlffyBcyUCubKVNsPH5Hll8ZJRgwrFa6dZfFf\",\r\n          \"type\": \"iFrame\",\r\n          \"achUrl\": \"https://devapi.flopay.co/gateway/achCheckout/mtzqlffyBcyUCubKVNsPH5Hll8ZJRgwrFa6dZfFf\",\r\n          \"gateway\": \"flopay\"\r\n        }\r\n      },\r\n      \"token\": {\r\n        \"isAch\": false,\r\n        \"token\": \"1ffc8a02-ec0c-45c7-8093-da1f221d46c8\",\r\n        \"expYear\": \"30\",\r\n        \"cardType\": \"visa\",\r\n        \"expMonth\": \"12\",\r\n        \"firstSix\": \"411111\",\r\n        \"lastFour\": \"1111\",\r\n        \"cardHolderName\": \"Benson Buren\"\r\n      },\r\n      \"providerRef\": \"mtzqlffyBcyUCubKVNsPH5Hll8ZJRgwrFa6dZfFf\",\r\n      \"paymentProviderId\": \"xYlfZBvxLR\",\r\n      \"gatewayRef\": \"11714921442\",\r\n      \"status\": \"Complete\",\r\n      \"descriptor\": null,\r\n      \"type\": null,\r\n      \"uid\": \"oYm1wVuq1ECazvZFR2tXFACRMO1xwCpz3YFVBD6A\",\r\n      \"hookRef\": \"\",\r\n      \"nextDate\": null,\r\n      \"amount\": \"10\",\r\n      \"currency\": \"USD\",\r\n      \"businessId\": \"1z2HUO9nT2\",\r\n      \"options\": {},\r\n      \"transactionDate\": \"2026-02-16T20:10:39.906Z\",\r\n      \"retry\": null,\r\n      \"customerId\": 546,\r\n      \"orderId\": 2205,\r\n      \"installmentPlanId\": null,\r\n      \"installmentNumber\": null,\r\n      \"installmentPlanType\": null,\r\n      \"tags\": [],\r\n      \"notes\": [],\r\n      \"createdAt\": \"2026-02-16T20:09:57.891Z\",\r\n      \"updatedAt\": \"2026-02-16T20:10:39.906Z\"\r\n    }\r\n  ],\r\n  \"orderItems\": [\r\n    {\r\n      \"id\": 2275,\r\n      \"businessId\": \"1z2HUO9nT2\",\r\n      \"complete\": false,\r\n      \"description\": \"1111 Service Contract\",\r\n      \"number\": \"1112\",\r\n      \"price\": \"50\",\r\n      \"partId\": 739,\r\n      \"locationId\": null,\r\n      \"vendorId\": null,\r\n      \"customerId\": null,\r\n      \"quantity\": \"1\",\r\n      \"uom\": {\r\n        \"name\": \"EA\",\r\n        \"conversion\": 1\r\n      },\r\n      \"orderItemData\": {\r\n        \"agent\": {\r\n          \"name\": \"Gold\",\r\n          \"email\": \"\",\r\n          \"dealerCost\": \"1\"\r\n        },\r\n        \"vehicle\": {\r\n          \"vin\": \"11111111111111111\",\r\n          \"make\": \"123\",\r\n          \"year\": 1919,\r\n          \"model\": \"123\",\r\n          \"odometer\": \"123\"\r\n        },\r\n        \"coverage\": {\r\n          \"term\": 12,\r\n          \"type\": \"AUTO\",\r\n          \"mileage\": \"100000\",\r\n          \"planName\": \"Gold Plan\",\r\n          \"programName\": \"Gold\"\r\n        },\r\n        \"totalAmount\": \"50\",\r\n        \"effectiveDate\": \"2026-02-16\",\r\n        \"firstPaymentDate\": \"2026-02-16\",\r\n        \"totalInstallments\": 6\r\n      },\r\n      \"createdAt\": \"2026-02-16T20:09:57.643Z\",\r\n      \"updatedAt\": \"2026-02-16T20:09:57.643Z\",\r\n      \"orderId\": 2205,\r\n      \"part\": {\r\n        \"id\": 739,\r\n        \"number\": \"1112\",\r\n        \"ref\": null,\r\n        \"hookRef\": null,\r\n        \"incomeAccountId\": null,\r\n        \"inventoryAccountId\": null,\r\n        \"expenseAccountId\": null,\r\n        \"description\": \"1111 Service Contract\",\r\n        \"stockLevel\": null,\r\n        \"cost\": \"50\",\r\n        \"price\": \"50\",\r\n        \"type\": \"Service-Contract\",\r\n        \"taxable\": true,\r\n        \"trackingType\": [],\r\n        \"active\": true,\r\n        \"businessId\": \"1z2HUO9nT2\",\r\n        \"defaultLocationId\": null,\r\n        \"contractType\": \"paylink\",\r\n        \"partTypeData\": {\r\n          \"coverage\": {\r\n            \"term\": 12,\r\n            \"type\": \"Full\",\r\n            \"mileage\": \"100000\",\r\n            \"planName\": \"Gold Plan\",\r\n            \"programName\": \"Gold\"\r\n          }\r\n        },\r\n        \"notes\": [],\r\n        \"tags\": [],\r\n        \"uoms\": [\r\n          {\r\n            \"name\": \"EA\",\r\n            \"conversion\": 1\r\n          }\r\n        ],\r\n        \"createdAt\": \"2026-02-09T20:22:42.976Z\",\r\n        \"updatedAt\": \"2026-02-09T20:22:42.976Z\"\r\n      }\r\n    }\r\n  ],\r\n  \"release\": null\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base}}/order/2293","description":"<p><strong>Update Order (Paylink)</strong></p>\n<p><code>PUT https://api.flopay.co/erp/order/{ordernumber}</code></p>\n<p>The Update Order endpoint is used for updating information associated with a specific order. See <a href=\"https://documenter.getpostman.com/view/31217055/2s9YXpUdoJ#0d79265b-6491-467e-9d91-eb3d7ff49a30\">Orders</a>.</p>\n","urlObject":{"path":["order","2293"],"host":["{{base}}"],"query":[],"variable":[]}},"response":[{"id":"f6e81670-d14f-4a3f-9739-8edfb4d538e9","name":"Required params only","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"businessId\": \"{{businessId}}\",\r\n    \"status\": \"Estimate\",\r\n    \"assignedToUser\": \"lindabrobledo@gmail.com\",\r\n    \"customerId\": 66,\r\n    \"orderItems\": [\r\n    {\r\n      \"price\": \"0\",\r\n      \"extendedPrice\": 0,\r\n      \"number\": \"MISC-SERVICE\",\r\n      \"uom\": {\r\n        \"name\": \"EA\",\r\n        \"conversion\": 1\r\n      },\r\n      \"partId\": 54,\r\n      \"quantity\": 1\r\n    }\r\n    ],\r\n    \"taxRate\": {\r\n        \"name\": \"Sales Tax\",\r\n        \"rate\": 0.05,\r\n        \"agency\": \"Tax Agency\",\r\n        \"isDefault\": true\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base}}/order/66"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 18 Dec 2023 21:44:20 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"4051"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"57aef639-d6d5-4ef0-b194-ed4935746f25"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"x-amz-apigw-id","value":"QKKAJHF_IAMEdPg="},{"key":"X-Amzn-Trace-Id","value":"Root=1-6580bd33-4fc2e73d75b0c5f57184536f;Sampled=0;lineage=132e5424:0"},{"key":"Access-Control-Allow-Credentials","value":"true"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 66,\n    \"number\": \"66\",\n    \"terms\": \"Card\",\n    \"status\": \"Estimate\",\n    \"paymentStatus\": null,\n    \"businessId\": \"FD8fkrKYSW\",\n    \"customerId\": 91,\n    \"assignedToUserId\": 83,\n    \"notes\": [],\n    \"tags\": [],\n    \"createdAt\": \"2023-12-18T21:08:18.368Z\",\n    \"updatedAt\": \"2023-12-18T21:08:18.401Z\",\n    \"orderItems\": [\n        {\n            \"businessId\": \"FD8fkrKYSW\",\n            \"complete\": false,\n            \"partId\": 2643,\n            \"locationId\": 1,\n            \"vendorId\": null,\n            \"customerId\": null,\n            \"quantity\": 1,\n            \"uom\": \"HR\",\n            \"createdAt\": \"2023-12-18T21:08:18.437Z\",\n            \"updatedAt\": \"2023-12-18T21:08:18.437Z\",\n            \"orderId\": 66,\n            \"part\": {\n                \"id\": 2643,\n                \"number\": \"Sod0000\",\n                \"ref\": \"14\",\n                \"incomeAccountId\": 49,\n                \"inventoryAccountId\": null,\n                \"expenseAccountId\": null,\n                \"description\": \"Sod\",\n                \"stockLevel\": null,\n                \"cost\": 0,\n                \"price\": 0,\n                \"type\": \"Service\",\n                \"taxable\": true,\n                \"trackingType\": [],\n                \"active\": true,\n                \"businessId\": \"FD8fkrKYSW\",\n                \"defaultLocationId\": 1,\n                \"notes\": [],\n                \"tags\": [],\n                \"uoms\": [\n                    {\n                        \"name\": \"HR\",\n                        \"conversion\": 1\n                    }\n                ],\n                \"createdAt\": \"2023-12-17T23:17:47.657Z\",\n                \"updatedAt\": \"2023-12-17T23:17:47.657Z\",\n                \"defaultLocation\": {\n                    \"id\": 1,\n                    \"name\": \"Warehouse\",\n                    \"description\": \"Medium Warehouse \",\n                    \"address\": \"1010 East State Street, Orem, Ut, 84605\",\n                    \"active\": true,\n                    \"site\": true,\n                    \"readonly\": null,\n                    \"path\": \".20.\",\n                    \"businessId\": \"4tsYEMs7z3\",\n                    \"notes\": [],\n                    \"tags\": [],\n                    \"createdAt\": \"2023-10-04T23:15:48.137Z\",\n                    \"updatedAt\": \"2023-12-04T16:09:56.131Z\",\n                    \"parentId\": null,\n                    \"parent\": null\n                },\n                \"expenseAccount\": null,\n                \"incomeAccount\": {\n                    \"id\": 49,\n                    \"name\": \"Telephone\",\n                    \"businessId\": \"4tsYEMs7z3\",\n                    \"subAccount\": true,\n                    \"accountType\": \"Expense\",\n                    \"active\": true,\n                    \"ref\": \"77\",\n                    \"createdAt\": \"2023-11-30T06:12:44.318Z\",\n                    \"updatedAt\": \"2023-11-30T06:12:44.318Z\"\n                },\n                \"inventoryAccount\": null\n            }\n        },\n        {\n            \"uom\": \"EA\",\n            \"part\": {\n                \"id\": 2647,\n                \"number\": \"Bic Pen 1818\",\n                \"ref\": \"19\",\n                \"incomeAccountId\": 79,\n                \"inventoryAccountId\": null,\n                \"expenseAccountId\": 80,\n                \"description\": \"Great Pen for Writing\",\n                \"stockLevel\": \"200\",\n                \"cost\": 4,\n                \"price\": 500,\n                \"type\": \"Inventory\",\n                \"taxable\": true,\n                \"trackingType\": [],\n                \"active\": true,\n                \"businessId\": \"FD8fkrKYSW\",\n                \"defaultLocationId\": 1,\n                \"notes\": [],\n                \"tags\": [],\n                \"uoms\": [\n                    {\n                        \"name\": \"EA\",\n                        \"conversion\": 1\n                    }\n                ],\n                \"createdAt\": \"2023-12-17T23:18:45.961Z\",\n                \"updatedAt\": \"2023-12-17T23:18:45.961Z\",\n                \"defaultLocation\": {\n                    \"id\": 1,\n                    \"name\": \"Warehouse\",\n                    \"description\": \"Medium Warehouse \",\n                    \"address\": \"1010 East State Street, Orem, Ut, 84605\",\n                    \"active\": true,\n                    \"site\": true,\n                    \"readonly\": null,\n                    \"path\": \".20.\",\n                    \"businessId\": \"4tsYEMs7z3\",\n                    \"notes\": [],\n                    \"tags\": [],\n                    \"createdAt\": \"2023-10-04T23:15:48.137Z\",\n                    \"updatedAt\": \"2023-12-04T16:09:56.131Z\",\n                    \"parentId\": null,\n                    \"parent\": null\n                },\n                \"expenseAccount\": {\n                    \"id\": 80,\n                    \"name\": \"Arizona Dept. of Revenue Payable\",\n                    \"businessId\": \"4tsYEMs7z3\",\n                    \"subAccount\": false,\n                    \"accountType\": \"Other Current Liability\",\n                    \"active\": true,\n                    \"ref\": \"89\",\n                    \"createdAt\": \"2023-11-30T07:37:46.214Z\",\n                    \"updatedAt\": \"2023-11-30T07:37:46.214Z\"\n                },\n                \"incomeAccount\": {\n                    \"id\": 79,\n                    \"name\": \"Commissions & fees\",\n                    \"businessId\": \"4tsYEMs7z3\",\n                    \"subAccount\": false,\n                    \"accountType\": \"Expense\",\n                    \"active\": true,\n                    \"ref\": \"9\",\n                    \"createdAt\": \"2023-11-30T07:37:46.208Z\",\n                    \"updatedAt\": \"2023-11-30T07:37:46.208Z\"\n                },\n                \"inventoryAccount\": null\n            },\n            \"partId\": 2647,\n            \"quantity\": 2,\n            \"locationId\": 1,\n            \"location\": {\n                \"id\": 1,\n                \"name\": \"Warehouse\",\n                \"description\": \"Medium Warehouse \",\n                \"address\": \"1010 East State Street, Orem, Ut, 84605\",\n                \"active\": true,\n                \"site\": true,\n                \"readonly\": null,\n                \"path\": \".20.\",\n                \"businessId\": \"4tsYEMs7z3\",\n                \"notes\": [],\n                \"tags\": [],\n                \"createdAt\": \"2023-10-04T23:15:48.137Z\",\n                \"updatedAt\": \"2023-12-04T16:09:56.131Z\",\n                \"parentId\": null,\n                \"parent\": null\n            },\n            \"complete\": false,\n            \"orderId\": 66,\n            \"businessId\": \"FD8fkrKYSW\"\n        }\n    ],\n    \"customer\": {\n        \"id\": 91,\n        \"active\": true,\n        \"optIn\": true,\n        \"ref\": null,\n        \"name\": \"Jackie Lor\",\n        \"terms\": null,\n        \"companyName\": null,\n        \"taxRate\": {\n            \"ref\": \"\",\n            \"name\": \"DEFAULT\",\n            \"rate\": 0.05,\n            \"agency\": \"Default Agency\",\n            \"isDefault\": true\n        },\n        \"businessId\": \"FD8fkrKYSW\",\n        \"contacts\": [\n            {\n                \"type\": \"phone\",\n                \"number\": \"+14567824564\"\n            },\n            {\n                \"type\": \"mobile\",\n                \"number\": \"+14567824564\"\n            },\n            {\n                \"type\": \"email\",\n                \"address\": \"hunterlor@gmail.com\"\n            },\n            {\n                \"city\": \"Sin City \",\n                \"type\": \"billToAddress\",\n                \"state\": \"NV\",\n                \"street\": \"124 Capaculli Way\",\n                \"postalCode\": \"89004\",\n                \"countryCode\": \"US\"\n            },\n            {\n                \"city\": \"Sin City\",\n                \"type\": \"shipToAddress\",\n                \"state\": \"NV\",\n                \"street\": \"124 Capaculli Way\",\n                \"postalCode\": \"89004\",\n                \"countryCode\": \"US\"\n            }\n        ],\n        \"notes\": [],\n        \"tags\": [],\n        \"createdAt\": \"2023-12-18T20:32:13.538Z\",\n        \"updatedAt\": \"2023-12-18T20:32:13.538Z\"\n    },\n    \"release\": null,\n    \"payments\": [],\n    \"total\": 1050,\n    \"tax\": 50,\n    \"subTotal\": 1000\n}"},{"id":"149d3aca-35f9-4e33-8b82-93648ee253d4","name":"Full params","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"businessId\": \"{{businessId}}\",\r\n    \"status\": \"Estimate\",\r\n    \"assignedToUser\": \"lindabrobledo@gmail.com\",\r\n    \"customerId\": 66,\r\n    \"customer\": {\r\n        \"id\": 66,\r\n        \"active\": true,\r\n        \"hookRef\": null,\r\n        \"optIn\": true,\r\n        \"cards\": [],\r\n        \"ref\": null,\r\n        \"name\": \"Linda Robledo\",\r\n        \"terms\": null,\r\n        \"companyName\": \"rob\",\r\n        \"taxRate\": {\r\n            \"ref\": \"\",\r\n            \"name\": \"Sales Tax\",\r\n            \"rate\": 0.05,\r\n            \"agency\": \"Tax Agency\",\r\n            \"isDefault\": true\r\n        },\r\n        \"businessId\": \"K5jrN7LSJ7\",\r\n        \"contacts\": [\r\n            {\r\n                \"type\": \"phone\",\r\n                \"number\": \"+13852164401\"\r\n            },\r\n            {\r\n                \"type\": \"mobile\",\r\n                \"number\": \"+13852164401\"\r\n            },\r\n            {\r\n                \"type\": \"email\",\r\n                \"address\": \"linda@asdf.com\"\r\n            },\r\n            {\r\n                \"city\": \"American Fork\",\r\n                \"type\": \"billToAddress\",\r\n                \"state\": \"UT\",\r\n                \"street\": \"574 S 420 E\",\r\n                \"postalCode\": \"84003\",\r\n                \"countryCode\": \"US\"\r\n            },\r\n            {\r\n                \"city\": \"American Fork\",\r\n                \"type\": \"shipToAddress\",\r\n                \"state\": \"UT\",\r\n                \"street\": \"574 S 420 E\",\r\n                \"postalCode\": \"84003\",\r\n                \"countryCode\": \"US\"\r\n            }\r\n        ],\r\n        \"notes\": [],\r\n        \"tags\": [],\r\n        \"createdAt\": \"2024-08-15T23:57:38.872Z\",\r\n        \"updatedAt\": \"2024-08-16T00:35:31.118Z\"\r\n    },\r\n    \"taxRate\": {\r\n        \"ref\": \"\",\r\n        \"name\": \"Sales Tax\",\r\n        \"rate\": 0.05,\r\n        \"agency\": \"Tax Agency\",\r\n        \"isDefault\": true\r\n    },\r\n    \"orderItems\": [\r\n        {\r\n            \"price\": \"0\",\r\n            \"extendedPrice\": 0,\r\n            \"description\": \"Default service item created on initial setup.\",\r\n            \"number\": \"MISC-SERVICE\",\r\n            \"uom\": {\r\n                \"name\": \"EA\",\r\n                \"conversion\": 1\r\n            },\r\n            \"part\": {\r\n                \"id\": 54,\r\n                \"number\": \"MISC-SERVICE\",\r\n                \"ref\": null,\r\n                \"hookRef\": null,\r\n                \"incomeAccountId\": null,\r\n                \"inventoryAccountId\": null,\r\n                \"expenseAccountId\": null,\r\n                \"description\": \"Default service item created on initial setup.\",\r\n                \"stockLevel\": null,\r\n                \"cost\": \"0\",\r\n                \"price\": \"0\",\r\n                \"type\": \"Service\",\r\n                \"taxable\": true,\r\n                \"trackingType\": [],\r\n                \"active\": true,\r\n                \"businessId\": \"K5jrN7LSJ7\",\r\n                \"defaultLocationId\": null,\r\n                \"notes\": [],\r\n                \"tags\": [],\r\n                \"uoms\": [\r\n                    {\r\n                        \"name\": \"EA\",\r\n                        \"conversion\": 1\r\n                    }\r\n                ],\r\n                \"createdAt\": \"2024-08-12T02:11:49.215Z\",\r\n                \"updatedAt\": \"2024-08-12T02:11:49.215Z\",\r\n                \"defaultLocation\": null,\r\n                \"expenseAccount\": null,\r\n                \"incomeAccount\": null,\r\n                \"inventoryAccount\": null\r\n            },\r\n            \"partId\": 54,\r\n            \"quantity\": 1,\r\n            \"locationId\": null,\r\n            \"location\": null,\r\n            \"complete\": false\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base}}/order/157"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 18 Dec 2023 21:44:20 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"4051"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"57aef639-d6d5-4ef0-b194-ed4935746f25"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"x-amz-apigw-id","value":"QKKAJHF_IAMEdPg="},{"key":"X-Amzn-Trace-Id","value":"Root=1-6580bd33-4fc2e73d75b0c5f57184536f;Sampled=0;lineage=132e5424:0"},{"key":"Access-Control-Allow-Credentials","value":"true"}],"cookie":[],"responseTime":null,"body":"{\n    \"businessId\": \"K5jrN7LSJ7\",\n    \"status\": \"Estimate\",\n    \"customerId\": 66,\n    \"customer\": {\n        \"id\": 66,\n        \"active\": true,\n        \"hookRef\": null,\n        \"optIn\": true,\n        \"cards\": [],\n        \"ref\": null,\n        \"name\": \"Linda Robledo\",\n        \"terms\": null,\n        \"companyName\": \"rob\",\n        \"taxRate\": {\n            \"ref\": \"\",\n            \"name\": \"Sales Tax\",\n            \"rate\": 0.05,\n            \"agency\": \"Tax Agency\",\n            \"isDefault\": true\n        },\n        \"businessId\": \"K5jrN7LSJ7\",\n        \"contacts\": [\n            {\n                \"type\": \"phone\",\n                \"number\": \"+13852164401\"\n            },\n            {\n                \"type\": \"mobile\",\n                \"number\": \"+13852164401\"\n            },\n            {\n                \"type\": \"email\",\n                \"address\": \"linda@asdf.com\"\n            },\n            {\n                \"city\": \"American Fork\",\n                \"type\": \"billToAddress\",\n                \"state\": \"UT\",\n                \"street\": \"574 S 420 E\",\n                \"postalCode\": \"84003\",\n                \"countryCode\": \"US\"\n            },\n            {\n                \"city\": \"American Fork\",\n                \"type\": \"shipToAddress\",\n                \"state\": \"UT\",\n                \"street\": \"574 S 420 E\",\n                \"postalCode\": \"84003\",\n                \"countryCode\": \"US\"\n            }\n        ],\n        \"notes\": [],\n        \"tags\": [],\n        \"createdAt\": \"2024-08-15T23:57:38.872Z\",\n        \"updatedAt\": \"2024-08-16T00:35:31.118Z\"\n    },\n    \"taxRate\": {\n        \"ref\": \"\",\n        \"name\": \"Sales Tax\",\n        \"rate\": 0.05,\n        \"agency\": \"Tax Agency\",\n        \"isDefault\": true\n    },\n    \"orderItems\": [\n        {\n            \"price\": 0,\n            \"extendedPrice\": 0,\n            \"description\": \"Default service item created on initial setup.\",\n            \"number\": \"MISC-SERVICE\",\n            \"uom\": {\n                \"name\": \"EA\",\n                \"conversion\": 1\n            },\n            \"part\": {\n                \"id\": 54,\n                \"number\": \"MISC-SERVICE\",\n                \"ref\": null,\n                \"hookRef\": null,\n                \"incomeAccountId\": null,\n                \"inventoryAccountId\": null,\n                \"expenseAccountId\": null,\n                \"description\": \"Default service item created on initial setup.\",\n                \"stockLevel\": null,\n                \"cost\": \"0\",\n                \"price\": \"0\",\n                \"type\": \"Service\",\n                \"taxable\": true,\n                \"trackingType\": [],\n                \"active\": true,\n                \"businessId\": \"K5jrN7LSJ7\",\n                \"defaultLocationId\": null,\n                \"notes\": [],\n                \"tags\": [],\n                \"uoms\": [\n                    {\n                        \"name\": \"EA\",\n                        \"conversion\": 1\n                    }\n                ],\n                \"createdAt\": \"2024-08-12T02:11:49.215Z\",\n                \"updatedAt\": \"2024-08-12T02:11:49.215Z\",\n                \"defaultLocation\": null,\n                \"expenseAccount\": null,\n                \"incomeAccount\": null,\n                \"inventoryAccount\": null\n            },\n            \"partId\": 54,\n            \"quantity\": 1,\n            \"locationId\": null,\n            \"location\": null,\n            \"complete\": false,\n            \"orderId\": 157,\n            \"businessId\": \"K5jrN7LSJ7\"\n        }\n    ],\n    \"total\": 0,\n    \"tax\": 0,\n    \"subTotal\": 0,\n    \"assignedToUserId\": 23\n}"}],"_postman_id":"4859735e-e6bc-4f7c-a328-c9912bb9bb6a"},{"name":"Complete Order (Paylink)","id":"8e1dd341-a0e0-476e-bc5b-6013a328c91a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"replaceWithFloPayUser"},{"key":"password","value":"replaceWithFloPayPassword"}]},"isInherited":false},"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"id\": 2299,\r\n    \"number\": \"2299\",\r\n    \"businessId\": \"1z2HUO9nT2\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base}}/order/complete/2299","description":"<h2 id=\"complete-order\">Complete Order</h2>\n<p><strong>Endpoint Purpose</strong><br />Marks an existing order as <strong>Complete</strong>.</p>\n<p>When using PayLink Direct integration, this request also submits the associated service contract to PayLink, provided all validation and prerequisite requirements are met.</p>\n<p><strong>Behavior</strong></p>\n<ul>\n<li><p>Transitions the order to a <code>Complete</code> state</p>\n</li>\n<li><p>Triggers service contract submission to PayLink (if applicable)</p>\n</li>\n<li><p>Fails if required order data or contract details are missing or if downpayment is not made</p>\n</li>\n</ul>\n<p><strong>When to Call</strong></p>\n<ul>\n<li><p>After the order has been fully built and validated</p>\n</li>\n<li><p>After successful authorization/capture of payment (if required by your workflow)</p>\n</li>\n</ul>\n<p><strong>Example</strong><br />See the example below for a sample request and response.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>| SAMPLE - Coverage Term 36 Months with 18 Installments |\n| Total Retail Price: | $         2,000.00 |\n| Down Payment: | $            200.00 |\n| Amount Financed: | $         1,800.00 |\n| Dealer Cost: | $           900.00 |\n| PayLink Fee | $            190.00 |\n| Funding Due to Dealer | $            710.00 |\n\n\n\n\n</code></pre>","urlObject":{"path":["order","complete","2299"],"host":["{{base}}"],"query":[],"variable":[]}},"response":[{"id":"a07e52c1-9862-4aee-85f2-3e9d72778a59","name":"Required params only","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"id\": 2207,\r\n    \"number\": \"2207\",\r\n    \"businessId\": \"1z2HUO9nT2\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base}}/order/66"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 18 Dec 2023 21:44:20 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"4051"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"57aef639-d6d5-4ef0-b194-ed4935746f25"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"x-amz-apigw-id","value":"QKKAJHF_IAMEdPg="},{"key":"X-Amzn-Trace-Id","value":"Root=1-6580bd33-4fc2e73d75b0c5f57184536f;Sampled=0;lineage=132e5424:0"},{"key":"Access-Control-Allow-Credentials","value":"true"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 66,\n    \"number\": \"66\",\n    \"terms\": \"Card\",\n    \"status\": \"Estimate\",\n    \"paymentStatus\": null,\n    \"businessId\": \"FD8fkrKYSW\",\n    \"customerId\": 91,\n    \"assignedToUserId\": 83,\n    \"notes\": [],\n    \"tags\": [],\n    \"createdAt\": \"2023-12-18T21:08:18.368Z\",\n    \"updatedAt\": \"2023-12-18T21:08:18.401Z\",\n    \"orderItems\": [\n        {\n            \"businessId\": \"FD8fkrKYSW\",\n            \"complete\": false,\n            \"partId\": 2643,\n            \"locationId\": 1,\n            \"vendorId\": null,\n            \"customerId\": null,\n            \"quantity\": 1,\n            \"uom\": \"HR\",\n            \"createdAt\": \"2023-12-18T21:08:18.437Z\",\n            \"updatedAt\": \"2023-12-18T21:08:18.437Z\",\n            \"orderId\": 66,\n            \"part\": {\n                \"id\": 2643,\n                \"number\": \"Sod0000\",\n                \"ref\": \"14\",\n                \"incomeAccountId\": 49,\n                \"inventoryAccountId\": null,\n                \"expenseAccountId\": null,\n                \"description\": \"Sod\",\n                \"stockLevel\": null,\n                \"cost\": 0,\n                \"price\": 0,\n                \"type\": \"Service\",\n                \"taxable\": true,\n                \"trackingType\": [],\n                \"active\": true,\n                \"businessId\": \"FD8fkrKYSW\",\n                \"defaultLocationId\": 1,\n                \"notes\": [],\n                \"tags\": [],\n                \"uoms\": [\n                    {\n                        \"name\": \"HR\",\n                        \"conversion\": 1\n                    }\n                ],\n                \"createdAt\": \"2023-12-17T23:17:47.657Z\",\n                \"updatedAt\": \"2023-12-17T23:17:47.657Z\",\n                \"defaultLocation\": {\n                    \"id\": 1,\n                    \"name\": \"Warehouse\",\n                    \"description\": \"Medium Warehouse \",\n                    \"address\": \"1010 East State Street, Orem, Ut, 84605\",\n                    \"active\": true,\n                    \"site\": true,\n                    \"readonly\": null,\n                    \"path\": \".20.\",\n                    \"businessId\": \"4tsYEMs7z3\",\n                    \"notes\": [],\n                    \"tags\": [],\n                    \"createdAt\": \"2023-10-04T23:15:48.137Z\",\n                    \"updatedAt\": \"2023-12-04T16:09:56.131Z\",\n                    \"parentId\": null,\n                    \"parent\": null\n                },\n                \"expenseAccount\": null,\n                \"incomeAccount\": {\n                    \"id\": 49,\n                    \"name\": \"Telephone\",\n                    \"businessId\": \"4tsYEMs7z3\",\n                    \"subAccount\": true,\n                    \"accountType\": \"Expense\",\n                    \"active\": true,\n                    \"ref\": \"77\",\n                    \"createdAt\": \"2023-11-30T06:12:44.318Z\",\n                    \"updatedAt\": \"2023-11-30T06:12:44.318Z\"\n                },\n                \"inventoryAccount\": null\n            }\n        },\n        {\n            \"uom\": \"EA\",\n            \"part\": {\n                \"id\": 2647,\n                \"number\": \"Bic Pen 1818\",\n                \"ref\": \"19\",\n                \"incomeAccountId\": 79,\n                \"inventoryAccountId\": null,\n                \"expenseAccountId\": 80,\n                \"description\": \"Great Pen for Writing\",\n                \"stockLevel\": \"200\",\n                \"cost\": 4,\n                \"price\": 500,\n                \"type\": \"Inventory\",\n                \"taxable\": true,\n                \"trackingType\": [],\n                \"active\": true,\n                \"businessId\": \"FD8fkrKYSW\",\n                \"defaultLocationId\": 1,\n                \"notes\": [],\n                \"tags\": [],\n                \"uoms\": [\n                    {\n                        \"name\": \"EA\",\n                        \"conversion\": 1\n                    }\n                ],\n                \"createdAt\": \"2023-12-17T23:18:45.961Z\",\n                \"updatedAt\": \"2023-12-17T23:18:45.961Z\",\n                \"defaultLocation\": {\n                    \"id\": 1,\n                    \"name\": \"Warehouse\",\n                    \"description\": \"Medium Warehouse \",\n                    \"address\": \"1010 East State Street, Orem, Ut, 84605\",\n                    \"active\": true,\n                    \"site\": true,\n                    \"readonly\": null,\n                    \"path\": \".20.\",\n                    \"businessId\": \"4tsYEMs7z3\",\n                    \"notes\": [],\n                    \"tags\": [],\n                    \"createdAt\": \"2023-10-04T23:15:48.137Z\",\n                    \"updatedAt\": \"2023-12-04T16:09:56.131Z\",\n                    \"parentId\": null,\n                    \"parent\": null\n                },\n                \"expenseAccount\": {\n                    \"id\": 80,\n                    \"name\": \"Arizona Dept. of Revenue Payable\",\n                    \"businessId\": \"4tsYEMs7z3\",\n                    \"subAccount\": false,\n                    \"accountType\": \"Other Current Liability\",\n                    \"active\": true,\n                    \"ref\": \"89\",\n                    \"createdAt\": \"2023-11-30T07:37:46.214Z\",\n                    \"updatedAt\": \"2023-11-30T07:37:46.214Z\"\n                },\n                \"incomeAccount\": {\n                    \"id\": 79,\n                    \"name\": \"Commissions & fees\",\n                    \"businessId\": \"4tsYEMs7z3\",\n                    \"subAccount\": false,\n                    \"accountType\": \"Expense\",\n                    \"active\": true,\n                    \"ref\": \"9\",\n                    \"createdAt\": \"2023-11-30T07:37:46.208Z\",\n                    \"updatedAt\": \"2023-11-30T07:37:46.208Z\"\n                },\n                \"inventoryAccount\": null\n            },\n            \"partId\": 2647,\n            \"quantity\": 2,\n            \"locationId\": 1,\n            \"location\": {\n                \"id\": 1,\n                \"name\": \"Warehouse\",\n                \"description\": \"Medium Warehouse \",\n                \"address\": \"1010 East State Street, Orem, Ut, 84605\",\n                \"active\": true,\n                \"site\": true,\n                \"readonly\": null,\n                \"path\": \".20.\",\n                \"businessId\": \"4tsYEMs7z3\",\n                \"notes\": [],\n                \"tags\": [],\n                \"createdAt\": \"2023-10-04T23:15:48.137Z\",\n                \"updatedAt\": \"2023-12-04T16:09:56.131Z\",\n                \"parentId\": null,\n                \"parent\": null\n            },\n            \"complete\": false,\n            \"orderId\": 66,\n            \"businessId\": \"FD8fkrKYSW\"\n        }\n    ],\n    \"customer\": {\n        \"id\": 91,\n        \"active\": true,\n        \"optIn\": true,\n        \"ref\": null,\n        \"name\": \"Jackie Lor\",\n        \"terms\": null,\n        \"companyName\": null,\n        \"taxRate\": {\n            \"ref\": \"\",\n            \"name\": \"DEFAULT\",\n            \"rate\": 0.05,\n            \"agency\": \"Default Agency\",\n            \"isDefault\": true\n        },\n        \"businessId\": \"FD8fkrKYSW\",\n        \"contacts\": [\n            {\n                \"type\": \"phone\",\n                \"number\": \"+14567824564\"\n            },\n            {\n                \"type\": \"mobile\",\n                \"number\": \"+14567824564\"\n            },\n            {\n                \"type\": \"email\",\n                \"address\": \"hunterlor@gmail.com\"\n            },\n            {\n                \"city\": \"Sin City \",\n                \"type\": \"billToAddress\",\n                \"state\": \"NV\",\n                \"street\": \"124 Capaculli Way\",\n                \"postalCode\": \"89004\",\n                \"countryCode\": \"US\"\n            },\n            {\n                \"city\": \"Sin City\",\n                \"type\": \"shipToAddress\",\n                \"state\": \"NV\",\n                \"street\": \"124 Capaculli Way\",\n                \"postalCode\": \"89004\",\n                \"countryCode\": \"US\"\n            }\n        ],\n        \"notes\": [],\n        \"tags\": [],\n        \"createdAt\": \"2023-12-18T20:32:13.538Z\",\n        \"updatedAt\": \"2023-12-18T20:32:13.538Z\"\n    },\n    \"release\": null,\n    \"payments\": [],\n    \"total\": 1050,\n    \"tax\": 50,\n    \"subTotal\": 1000\n}"},{"id":"653b9758-d92e-4c67-a7e8-4f0b7423d304","name":"Full params","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"businessId\": \"{{businessId}}\",\r\n    \"status\": \"Estimate\",\r\n    \"assignedToUser\": \"lindabrobledo@gmail.com\",\r\n    \"customerId\": 66,\r\n    \"customer\": {\r\n        \"id\": 66,\r\n        \"active\": true,\r\n        \"hookRef\": null,\r\n        \"optIn\": true,\r\n        \"cards\": [],\r\n        \"ref\": null,\r\n        \"name\": \"Linda Robledo\",\r\n        \"terms\": null,\r\n        \"companyName\": \"rob\",\r\n        \"taxRate\": {\r\n            \"ref\": \"\",\r\n            \"name\": \"Sales Tax\",\r\n            \"rate\": 0.05,\r\n            \"agency\": \"Tax Agency\",\r\n            \"isDefault\": true\r\n        },\r\n        \"businessId\": \"K5jrN7LSJ7\",\r\n        \"contacts\": [\r\n            {\r\n                \"type\": \"phone\",\r\n                \"number\": \"+13852164401\"\r\n            },\r\n            {\r\n                \"type\": \"mobile\",\r\n                \"number\": \"+13852164401\"\r\n            },\r\n            {\r\n                \"type\": \"email\",\r\n                \"address\": \"linda@asdf.com\"\r\n            },\r\n            {\r\n                \"city\": \"American Fork\",\r\n                \"type\": \"billToAddress\",\r\n                \"state\": \"UT\",\r\n                \"street\": \"574 S 420 E\",\r\n                \"postalCode\": \"84003\",\r\n                \"countryCode\": \"US\"\r\n            },\r\n            {\r\n                \"city\": \"American Fork\",\r\n                \"type\": \"shipToAddress\",\r\n                \"state\": \"UT\",\r\n                \"street\": \"574 S 420 E\",\r\n                \"postalCode\": \"84003\",\r\n                \"countryCode\": \"US\"\r\n            }\r\n        ],\r\n        \"notes\": [],\r\n        \"tags\": [],\r\n        \"createdAt\": \"2024-08-15T23:57:38.872Z\",\r\n        \"updatedAt\": \"2024-08-16T00:35:31.118Z\"\r\n    },\r\n    \"taxRate\": {\r\n        \"ref\": \"\",\r\n        \"name\": \"Sales Tax\",\r\n        \"rate\": 0.05,\r\n        \"agency\": \"Tax Agency\",\r\n        \"isDefault\": true\r\n    },\r\n    \"orderItems\": [\r\n        {\r\n            \"price\": \"0\",\r\n            \"extendedPrice\": 0,\r\n            \"description\": \"Default service item created on initial setup.\",\r\n            \"number\": \"MISC-SERVICE\",\r\n            \"uom\": {\r\n                \"name\": \"EA\",\r\n                \"conversion\": 1\r\n            },\r\n            \"part\": {\r\n                \"id\": 54,\r\n                \"number\": \"MISC-SERVICE\",\r\n                \"ref\": null,\r\n                \"hookRef\": null,\r\n                \"incomeAccountId\": null,\r\n                \"inventoryAccountId\": null,\r\n                \"expenseAccountId\": null,\r\n                \"description\": \"Default service item created on initial setup.\",\r\n                \"stockLevel\": null,\r\n                \"cost\": \"0\",\r\n                \"price\": \"0\",\r\n                \"type\": \"Service\",\r\n                \"taxable\": true,\r\n                \"trackingType\": [],\r\n                \"active\": true,\r\n                \"businessId\": \"K5jrN7LSJ7\",\r\n                \"defaultLocationId\": null,\r\n                \"notes\": [],\r\n                \"tags\": [],\r\n                \"uoms\": [\r\n                    {\r\n                        \"name\": \"EA\",\r\n                        \"conversion\": 1\r\n                    }\r\n                ],\r\n                \"createdAt\": \"2024-08-12T02:11:49.215Z\",\r\n                \"updatedAt\": \"2024-08-12T02:11:49.215Z\",\r\n                \"defaultLocation\": null,\r\n                \"expenseAccount\": null,\r\n                \"incomeAccount\": null,\r\n                \"inventoryAccount\": null\r\n            },\r\n            \"partId\": 54,\r\n            \"quantity\": 1,\r\n            \"locationId\": null,\r\n            \"location\": null,\r\n            \"complete\": false\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base}}/order/157"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 18 Dec 2023 21:44:20 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"4051"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"57aef639-d6d5-4ef0-b194-ed4935746f25"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"x-amz-apigw-id","value":"QKKAJHF_IAMEdPg="},{"key":"X-Amzn-Trace-Id","value":"Root=1-6580bd33-4fc2e73d75b0c5f57184536f;Sampled=0;lineage=132e5424:0"},{"key":"Access-Control-Allow-Credentials","value":"true"}],"cookie":[],"responseTime":null,"body":"{\n    \"businessId\": \"K5jrN7LSJ7\",\n    \"status\": \"Estimate\",\n    \"customerId\": 66,\n    \"customer\": {\n        \"id\": 66,\n        \"active\": true,\n        \"hookRef\": null,\n        \"optIn\": true,\n        \"cards\": [],\n        \"ref\": null,\n        \"name\": \"Linda Robledo\",\n        \"terms\": null,\n        \"companyName\": \"rob\",\n        \"taxRate\": {\n            \"ref\": \"\",\n            \"name\": \"Sales Tax\",\n            \"rate\": 0.05,\n            \"agency\": \"Tax Agency\",\n            \"isDefault\": true\n        },\n        \"businessId\": \"K5jrN7LSJ7\",\n        \"contacts\": [\n            {\n                \"type\": \"phone\",\n                \"number\": \"+13852164401\"\n            },\n            {\n                \"type\": \"mobile\",\n                \"number\": \"+13852164401\"\n            },\n            {\n                \"type\": \"email\",\n                \"address\": \"linda@asdf.com\"\n            },\n            {\n                \"city\": \"American Fork\",\n                \"type\": \"billToAddress\",\n                \"state\": \"UT\",\n                \"street\": \"574 S 420 E\",\n                \"postalCode\": \"84003\",\n                \"countryCode\": \"US\"\n            },\n            {\n                \"city\": \"American Fork\",\n                \"type\": \"shipToAddress\",\n                \"state\": \"UT\",\n                \"street\": \"574 S 420 E\",\n                \"postalCode\": \"84003\",\n                \"countryCode\": \"US\"\n            }\n        ],\n        \"notes\": [],\n        \"tags\": [],\n        \"createdAt\": \"2024-08-15T23:57:38.872Z\",\n        \"updatedAt\": \"2024-08-16T00:35:31.118Z\"\n    },\n    \"taxRate\": {\n        \"ref\": \"\",\n        \"name\": \"Sales Tax\",\n        \"rate\": 0.05,\n        \"agency\": \"Tax Agency\",\n        \"isDefault\": true\n    },\n    \"orderItems\": [\n        {\n            \"price\": 0,\n            \"extendedPrice\": 0,\n            \"description\": \"Default service item created on initial setup.\",\n            \"number\": \"MISC-SERVICE\",\n            \"uom\": {\n                \"name\": \"EA\",\n                \"conversion\": 1\n            },\n            \"part\": {\n                \"id\": 54,\n                \"number\": \"MISC-SERVICE\",\n                \"ref\": null,\n                \"hookRef\": null,\n                \"incomeAccountId\": null,\n                \"inventoryAccountId\": null,\n                \"expenseAccountId\": null,\n                \"description\": \"Default service item created on initial setup.\",\n                \"stockLevel\": null,\n                \"cost\": \"0\",\n                \"price\": \"0\",\n                \"type\": \"Service\",\n                \"taxable\": true,\n                \"trackingType\": [],\n                \"active\": true,\n                \"businessId\": \"K5jrN7LSJ7\",\n                \"defaultLocationId\": null,\n                \"notes\": [],\n                \"tags\": [],\n                \"uoms\": [\n                    {\n                        \"name\": \"EA\",\n                        \"conversion\": 1\n                    }\n                ],\n                \"createdAt\": \"2024-08-12T02:11:49.215Z\",\n                \"updatedAt\": \"2024-08-12T02:11:49.215Z\",\n                \"defaultLocation\": null,\n                \"expenseAccount\": null,\n                \"incomeAccount\": null,\n                \"inventoryAccount\": null\n            },\n            \"partId\": 54,\n            \"quantity\": 1,\n            \"locationId\": null,\n            \"location\": null,\n            \"complete\": false,\n            \"orderId\": 157,\n            \"businessId\": \"K5jrN7LSJ7\"\n        }\n    ],\n    \"total\": 0,\n    \"tax\": 0,\n    \"subTotal\": 0,\n    \"assignedToUserId\": 23\n}"}],"_postman_id":"8e1dd341-a0e0-476e-bc5b-6013a328c91a"}],"id":"ba366208-4da8-4539-80d4-717a05ec9216","description":"<p>PayLink Direct is a <strong>payment plan management and transaction processing platform</strong> that enables businesses to offer <strong>interest-free installment payments</strong> for non-loan financial products. The platform supports the creation, servicing, and collection of recurring payments tied to consumer contracts.</p>\n<p>PayLink Direct is commonly used in <strong>automotive, warranty, and service-contract ecosystems</strong>, where products are sold outside of traditional vehicle financing.</p>\n<p><a href=\"https://www.paylinkdirect.com/\">https://www.paylinkdirect.com</a></p>\n<p>Paylink Integration requires an API key, Seller Code, and Admin Code. Each of these are stored in settings -&gt; Integration -&gt; Paylink. Paylink service contract orders can be paid via a stored card, new card, Installment, or ACH. In order to export to paylink, the status of the order must be set to complete either in the dashboard or by updating it via a PUT request.</p>\n<p><strong>PayLink Workflow</strong></p>\n<p>Your business account must have the following before you can create an order:</p>\n<ul>\n<li><p>A valid <a href=\"https://flopayapi.postman.co/workspace/FloPay-Workspace~caffb562-a30f-4d12-80ed-48c68c08ce52/folder/31217055-112ca271-53f1-42ca-8ba0-1ff899edcad0?action=share&amp;source=copy-link&amp;creator=16754022&amp;ctx=documentation\">customer</a></p>\n</li>\n<li><p>A valid Service Contract <a href=\"https://flopayapi.postman.co/workspace/FloPay-Workspace~caffb562-a30f-4d12-80ed-48c68c08ce52/folder/31217055-866aaf5b-94ad-42c6-bd19-72dbc9f30972?action=share&amp;source=copy-link&amp;creator=16754022&amp;ctx=documentation\">item</a></p>\n</li>\n<li><p>Full company details:</p>\n<ul>\n<li><p>Default tax rates</p>\n</li>\n<li><p>Company contact info</p>\n</li>\n</ul>\n</li>\n</ul>\n<p>PayLink orders can then be payed via the same methods listed above, see <a href=\"https://documenter.getpostman.com/view/31217055/2s9YXpUdoJ#bad6a6fd-f98b-4ae6-9654-3718190d5618\">Payments</a>.</p>\n","_postman_id":"ba366208-4da8-4539-80d4-717a05ec9216"}],"id":"341bf52b-7eef-4251-ae9f-01fa7e3d1241","description":"<p><strong>The Advanced Payments and Orders workflow provides a flexible, multi-step approach to pricing, ordering, and payment processing. It is designed for use cases where pricing components must be defined ahead of time, reused across multiple transactions, or combined dynamically at checkout.</strong></p>\n<p><strong>In this model, billable items (or parts) are created and stored independently from orders. Each item contains pricing and descriptive information and can be reused across multiple orders without redefining its details. This allows systems to maintain a consistent catalog of priced components while supporting complex order construction.</strong></p>\n","_postman_id":"341bf52b-7eef-4251-ae9f-01fa7e3d1241"},{"name":"Hosted Payment Page","item":[{"name":"checkout","event":[{"listen":"test","script":{"id":"28409b0b-6db4-4bfc-a298-da4f4305c4cc","exec":["pm.test('Status code is 200', function () {\r","    pm.response.to.have.status(200);\r","})\r",""],"type":"text/javascript","packages":{},"requests":{}}}],"id":"4eb7e2b3-a4fb-4796-962e-708159ab0886","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"replaceWithFloPayUser"},{"key":"password","value":"replaceWithFloPayPassword"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"businessId\": \"{{businessId}}\",\r\n    \"customer\": {\r\n        \"name\": \"MartinVan Buren\",\r\n        \"contacts\": [\r\n            {\r\n                \"type\": \"email\",\r\n                \"address\": \"qa@flopay.co\"\r\n            },\r\n            {\r\n                \"type\": \"mobile\",\r\n                \"number\": \"+\"\r\n            },\r\n            {\r\n                \"city\": \"American Fork\",\r\n                \"type\": \"billToAddress\",\r\n                \"state\": \"UT\",\r\n                \"street\": \"574 S 420 E\",\r\n                \"postalCode\": \"84003\",\r\n                \"countryCode\": \"US\"\r\n            },\r\n            {\r\n                \"city\": \"American Fork\",\r\n                \"type\": \"shipToAddress\",\r\n                \"state\": \"UT\",\r\n                \"street\": \"574 S 420 E\",\r\n                \"postalCode\": \"84003\",\r\n                \"countryCode\": \"US\"\r\n            }\r\n        ]\r\n        \r\n    },\r\n    \"part\": {\r\n        \"number\": \"MISC-FAST\",\r\n        \"description\": \"Some Item You Sell\"\r\n    },\r\n    \"amount\": 22.36,\r\n    \"orderRef\": \"12345\",\r\n    \"hookRef\":\"123\",\r\n    \"descriptor\":\"CUSTOM\",\r\n    \"uiOptions\":{\r\n        \"darkMode\":true,\r\n        \"displaySubmitButton\":true,\r\n        \"displayWalletButton\":true,\r\n        \"hideCardForm\":false,\r\n        \"tokenizeOnly\":true\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base}}/payment/checkout","urlObject":{"path":["payment","checkout"],"host":["{{base}}"],"query":[],"variable":[]}},"response":[{"id":"c161b9a2-10bb-4c60-bd40-9657d1f5408e","name":"Required params only","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"businessId\":\"{{businessId}}\",\r\n    \"customer\":{\r\n        \"name\":\"MartinVan Buren\",        \r\n        \"contacts\":[\r\n            {\r\n                \"type\":\"email\",\r\n                \"address\":\"someemail@test.com\"\r\n            },            \r\n            {\r\n                \"type\":\"mobile\",\r\n                \"number\":\"+18017229210\"\r\n            }\r\n        ]\r\n    },\r\n    \"part\":{\r\n        \"number\":\"MISC-FAST\",\r\n        \"description\":\"Some Item You Sell\"\r\n    },\r\n    \"amount\":50,\r\n    \"orderRef\":\"12345\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base}}/payment/fastPay"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"access-control-allow-credentials","value":"true"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"vary","value":"origin,accept-encoding"},{"key":"access-control-expose-headers","value":"WWW-Authenticate,Server-Authorization"},{"key":"cache-control","value":"no-cache"},{"key":"content-encoding","value":"gzip"},{"key":"Date","value":"Tue, 30 Jul 2024 05:51:43 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 161,\n    \"number\": \"161\",\n    \"total\": \"52.5\",\n    \"subTotal\": \"50\",\n    \"terms\": \"Card\",\n    \"status\": \"Open\",\n    \"paymentStatus\": null,\n    \"tax\": \"2.5\",\n    \"hookRef\": \"12345\",\n    \"businessId\": \"K5jrN7LSJ7\",\n    \"taxRate\": {\n        \"ref\": \"\",\n        \"name\": \"Sales Tax\",\n        \"rate\": 0.05,\n        \"agency\": \"Tax Agency\",\n        \"isDefault\": true\n    },\n    \"customerId\": 68,\n    \"assignedToUserId\": 23,\n    \"notes\": [],\n    \"tags\": [],\n    \"createdAt\": \"2024-08-16T20:05:49.036Z\",\n    \"updatedAt\": \"2024-08-16T20:05:49.475Z\",\n    \"orderItems\": [\n        {\n            \"id\": 190,\n            \"businessId\": \"K5jrN7LSJ7\",\n            \"complete\": false,\n            \"description\": null,\n            \"number\": \"MISC-FAST\",\n            \"price\": \"50\",\n            \"partId\": 71,\n            \"locationId\": null,\n            \"vendorId\": null,\n            \"customerId\": null,\n            \"quantity\": \"1\",\n            \"uom\": {\n                \"name\": \"EA\",\n                \"conversion\": 1\n            },\n            \"orderId\": 161,\n            \"part\": {\n                \"id\": 71,\n                \"number\": \"MISC-FAST\",\n                \"ref\": null,\n                \"hookRef\": null,\n                \"incomeAccountId\": null,\n                \"inventoryAccountId\": null,\n                \"expenseAccountId\": null,\n                \"description\": \"Some Item You Sell\",\n                \"stockLevel\": null,\n                \"cost\": \"0\",\n                \"price\": \"50\",\n                \"type\": \"Service\",\n                \"taxable\": true,\n                \"trackingType\": [],\n                \"active\": true,\n                \"businessId\": \"K5jrN7LSJ7\",\n                \"defaultLocationId\": null,\n                \"notes\": [],\n                \"tags\": [],\n                \"uoms\": [\n                    {\n                        \"name\": \"EA\",\n                        \"conversion\": 1\n                    }\n                ],\n                \"defaultLocation\": null,\n                \"expenseAccount\": null,\n                \"incomeAccount\": null,\n                \"inventoryAccount\": null\n            }\n        }\n    ],\n    \"assignedToUser\": {\n        \"name\": \"Change Me Change Me\",\n        \"id\": 23,\n        \"username\": \"lindabrobledo@gmail.com\",\n        \"businessId\": \"K5jrN7LSJ7\",\n        \"module\": {\n            \"part\": true,\n            \"user\": true,\n            \"order\": true,\n            \"report\": true,\n            \"vendor\": true,\n            \"company\": true,\n            \"payment\": true,\n            \"release\": true,\n            \"webhook\": true,\n            \"customer\": true,\n            \"location\": true,\n            \"dashboard\": true,\n            \"inventory\": true,\n            \"receivable\": true,\n            \"webhookLog\": true\n        },\n        \"nameFirst\": \"Change Me\",\n        \"nameLast\": \"Change Me\",\n        \"contacts\": [],\n        \"notes\": [],\n        \"tags\": []\n    },\n    \"customer\": {\n        \"id\": 68,\n        \"active\": true,\n        \"hookRef\": null,\n        \"optIn\": true,\n        \"cards\": [],\n        \"ref\": null,\n        \"name\": \"MartinVan Buren\",\n        \"terms\": null,\n        \"companyName\": null,\n        \"taxRate\": {\n            \"ref\": \"\",\n            \"name\": \"Sales Tax\",\n            \"rate\": 0.05,\n            \"agency\": \"Tax Agency\",\n            \"isDefault\": true\n        },\n        \"businessId\": \"K5jrN7LSJ7\",\n        \"contacts\": [\n            {\n                \"type\": \"email\",\n                \"address\": \"someemail@test.com\"\n            },\n            {\n                \"type\": \"mobile\",\n                \"number\": \"+18017229210\"\n            }\n        ],\n        \"notes\": [],\n        \"tags\": []\n    },\n    \"payments\": [\n        {\n            \"id\": 140,\n            \"token\": null,\n            \"providerRef\": null,\n            \"status\": \"Open\",\n            \"type\": null,\n            \"uid\": null,\n            \"hookRef\": null,\n            \"nextDate\": null,\n            \"amount\": \"52.5\",\n            \"currency\": \"USD\",\n            \"businessId\": \"K5jrN7LSJ7\",\n            \"cadenceData\": null,\n            \"customerId\": 68,\n            \"orderId\": 161,\n            \"tags\": [],\n            \"notes\": [],\n            \"createdAt\": \"2024-08-16T20:05:49.498Z\",\n            \"updatedAt\": \"2024-08-16T20:05:49.498Z\"\n        }\n    ],\n    \"release\": null\n}"}],"_postman_id":"4eb7e2b3-a4fb-4796-962e-708159ab0886"}],"id":"71481f3c-4ae5-480e-8d64-a6716aef485e","description":"<h1 id=\"redirect-checkout-flow\">Redirect Checkout Flow</h1>\n<p>A full-page checkout experience that redirects the customer back to the merchant's site after payment. This flow solves Apple Pay CORS restrictions in cross-origin iframes and provides a branded, standalone payment page.</p>\n<h2 id=\"how-it-works\">How It Works</h2>\n<ol>\n<li><p>Merchant creates a checkout with <code>returnUrl</code> in <code>uiOptions</code></p>\n</li>\n<li><p>Customer is navigated to the gateway checkout URL (full page, not iframe)</p>\n</li>\n<li><p>Customer completes payment (card, ACH, Apple Pay, or Google Pay)</p>\n</li>\n<li><p>Gateway redirects to <code>returnUrl</code> with payment result as query params</p>\n</li>\n</ol>\n<h2 id=\"setup\">Setup</h2>\n<p>Pass <code>returnUrl</code> in the <code>uiOptions</code> object when creating a checkout. The presence of <code>returnUrl</code> automatically enables the redirect flow.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"amount\": 25.00,\n  \"currency\": \"USD\",\n  \"uiOptions\": {\n    \"returnUrl\": \"https://yoursite.com/payment-complete\",\n    \"displaySubmitButton\": true,\n    \"displayWalletButton\": true,\n    \"brandColor\": \"#1a365d\",\n    \"brandColorSecondary\": \"#2b6cb0\",\n    \"returnSecret\": \"my-secret-token-123\"\n  }\n}\n\n</code></pre>\n<h2 id=\"uioptions-reference\">uiOptions Reference</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Option</th>\n<th>Type</th>\n<th>Default</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>returnUrl</code></td>\n<td>string</td>\n<td><code>\"\"</code></td>\n<td>Merchant URL to redirect to after payment. Enables redirect mode.</td>\n</tr>\n<tr>\n<td><code>displaySubmitButton</code></td>\n<td>boolean</td>\n<td><code>false</code></td>\n<td>Show the pay button. Set <code>true</code> for redirect flow.</td>\n</tr>\n<tr>\n<td><code>displayWalletButton</code></td>\n<td>boolean</td>\n<td><code>false</code></td>\n<td>Show Apple Pay / Google Pay buttons.</td>\n</tr>\n<tr>\n<td><code>darkMode</code></td>\n<td>boolean</td>\n<td><code>false</code></td>\n<td>Use dark theme (black backgrounds, light text).</td>\n</tr>\n<tr>\n<td><code>hideCardForm</code></td>\n<td>boolean</td>\n<td><code>false</code></td>\n<td>Hide the card form for wallet-only checkout.</td>\n</tr>\n<tr>\n<td><code>tokenizeOnly</code></td>\n<td>boolean</td>\n<td><code>false</code></td>\n<td>Tokenize the card without processing payment.</td>\n</tr>\n<tr>\n<td><code>brandColor</code></td>\n<td>string</td>\n<td><code>\"\"</code></td>\n<td>Primary brand color. Applied to header, text, checkmark.</td>\n</tr>\n<tr>\n<td><code>brandColorSecondary</code></td>\n<td>string</td>\n<td><code>\"\"</code></td>\n<td>Secondary brand color. Applied to buttons, amount bar, focus states.</td>\n</tr>\n<tr>\n<td><code>hideAddress</code></td>\n<td>boolean</td>\n<td><code>false</code></td>\n<td>Hide company address on the checkout page.</td>\n</tr>\n<tr>\n<td><code>hidePhone</code></td>\n<td>boolean</td>\n<td><code>false</code></td>\n<td>Hide company phone on the checkout page.</td>\n</tr>\n<tr>\n<td><code>returnSecret</code></td>\n<td>string</td>\n<td><code>\"\"</code></td>\n<td>Echoed back in redirect query params. Use to verify the redirect is legitimate.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"redirect-query-parameters\">Redirect Query Parameters</h2>\n<h3 id=\"success\">Success</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>https://yoursite.com/payment-complete?status=success&amp;paymentId=abc123&amp;returnSecret=my-secret-token-123&amp;amount=25¤cy=USD&amp;gatewayRef=txn_456&amp;lastFour=4242&amp;cardType=Visa&amp;hookRef=order_789\n\n</code></pre><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Param</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>status</code></td>\n<td><code>success</code></td>\n</tr>\n<tr>\n<td><code>paymentId</code></td>\n<td>Gateway payment ID</td>\n</tr>\n<tr>\n<td><code>returnSecret</code></td>\n<td>Echoed from <code>uiOptions.returnSecret</code> (if set)</td>\n</tr>\n<tr>\n<td><code>amount</code></td>\n<td>Payment amount</td>\n</tr>\n<tr>\n<td><code>currency</code></td>\n<td>Currency code</td>\n</tr>\n<tr>\n<td><code>gatewayRef</code></td>\n<td>Provider transaction reference</td>\n</tr>\n<tr>\n<td><code>lastFour</code></td>\n<td>Last four digits of the card</td>\n</tr>\n<tr>\n<td><code>cardType</code></td>\n<td>Card brand (Visa, Mastercard, etc.)</td>\n</tr>\n<tr>\n<td><code>hookRef</code></td>\n<td>Merchant's order/payment reference</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"error\">Error</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>https://yoursite.com/payment-complete?status=error&amp;paymentId=abc123&amp;returnSecret=my-secret-token-123&amp;message=Payment+was+declined.\n\n</code></pre><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Param</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>status</code></td>\n<td><code>error</code></td>\n</tr>\n<tr>\n<td><code>paymentId</code></td>\n<td>Gateway payment ID</td>\n</tr>\n<tr>\n<td><code>returnSecret</code></td>\n<td>Echoed from <code>uiOptions.returnSecret</code> (if set)</td>\n</tr>\n<tr>\n<td><code>message</code></td>\n<td>Error description</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"branding\">Branding</h2>\n<p>The checkout page displays company info (logo, name, address, phone) from the payment record. Brand colors override the default theme:</p>\n<ul>\n<li><p><code>brandColor</code> overrides the primary color (header text, overlays, checkmark graphic)</p>\n</li>\n<li><p><code>brandColorSecondary</code> overrides the secondary color (pay button, amount bar, input focus, loading animation)</p>\n</li>\n</ul>\n<p>Both light and dark mode are supported. Overlays (processing, success, error) use white backgrounds in light mode and black in dark mode, with brand colors for accents.</p>\n<h2 id=\"backwards-compatibility\">Backwards Compatibility</h2>\n<ul>\n<li><p>Existing iframe-based checkouts are unaffected. The redirect flow only activates when <code>returnUrl</code> is present.</p>\n</li>\n<li><p>The <code>?mode=public</code> query param continues to work for email/text payment links.</p>\n</li>\n<li><p><code>hideAddress</code> and <code>hidePhone</code> default to <code>false</code>, so existing public-mode pages continue showing address and phone.</p>\n</li>\n</ul>\n","_postman_id":"71481f3c-4ae5-480e-8d64-a6716aef485e"}],"event":[{"listen":"prerequest","script":{"id":"20742196-3443-4f6d-b566-307dcf1610e7","type":"text/javascript","packages":{},"requests":{},"exec":[""]}},{"listen":"test","script":{"id":"3b2748c6-5776-47ee-8005-c3273e1b700f","type":"text/javascript","packages":{},"requests":{},"exec":[""]}}],"variable":[{"key":"user","value":"replaceWithFloPayUser"},{"key":"password","value":"replaceWithFloPayPassword"},{"key":"spam","value":""},{"key":"FloPayAPIpaymentID","value":""},{"key":"phoneNumber","value":""},{"key":"vendorID","value":""},{"key":"testReceivableID","value":""},{"key":"receivableId","value":""},{"key":"orderId","value":""},{"key":"userId","value":""},{"key":"phoneNumber","value":""}]}