{"info":{"_postman_id":"a4166285-bd00-4d27-8625-5acc0663e2f1","name":"PriorNotify API Documentation","description":"<html><head></head><body><p>You can connect your application with PriorNotify using our application programming interface (API).</p>\n<p>This document explains how to interact with our API.</p>\n<h2 id=\"quick-start\">Quick Start</h2>\n<p>Our API conforms to the design principles of the REST, or representational state transfer (REST), architectural style.</p>\n<p>In order to use our API, you will first need to:</p>\n<ul>\n<li><p><a href=\"https://login.priornotify.com/login\">Register or login to PriorNotify</a></p>\n</li>\n<li><p>Generate an API Key on the <a href=\"https://login.priornotify.com/status/me\">Account Settings</a> page in the PriorNotify app</p>\n</li>\n</ul>\n<h2 id=\"requirements\">Requirements</h2>\n<p>To interact with our API you must be using:</p>\n<ul>\n<li><p>A valid and active account. This includes \"Free Trial\" acounts, but not accounts with failed payments or cancelled accounts.</p>\n</li>\n<li><p>You may access our API only over HTTPS.</p>\n</li>\n</ul>\n<h2 id=\"generating-api-key\">Generating API Key</h2>\n<p>Our API requires you to use an API key.</p>\n<p>You can get your API key by following these steps:</p>\n<ul>\n<li><p><a href=\"https://login.priornotify.com/login\">Login to PriorNotify</a>.</p>\n</li>\n<li><p>Navigate to the <a href=\"https://login.priornotify.com/status/\">Account Settings</a> page and press the <strong>Generate API Key</strong> button.</p>\n</li>\n<li><p>Enter your password as requested in our app, and then press the <strong>Confirm</strong> button.</p>\n</li>\n</ul>\n<p>Your API Key will be displayed only one time. You should store your API Key securely. Please do this now.</p>\n<p>When you close this API Key window, or move away from the page, your API Key will disappear and you will have to generate a new one.</p>\n<p><strong>PLEASE NOTE: You should generate a new API Key at least every 90 days.</strong></p>\n<p>When you generate a new API key, any prior API keys will be deleted, and will no longer be usable.</p>\n<h2 id=\"authentication\">Authentication</h2>\n<p>Your current and active API Key must be used to authenticate with our REST API endpoints.</p>\n<p>You must use it for every request.</p>\n<p>Add <strong>Header Authorization as Key</strong> and your <strong>API Key as value</strong>.</p>\n<h2 id=\"multifactor-authentication\">Multifactor Authentication</h2>\n<p>The FDA system requires multifactor authentication. The FDA system emails the security code to the customer's account of record.</p>\n<p>In order to obtain the security code from the FDA system, an order must be submitted. The security code must be obtained from the customer's email, and then entered into a modal in our app.</p>\n<p>This will start an authorized session during which time orders can be submitted.</p>\n<h2 id=\"postresponse-formats\">Post/Response Formats</h2>\n<p>You can post to our API using JSON (JavaScript Object Notation) or CSV (Comma Separated Value) formats.</p>\n<p>Responses will be provided in JSON format.</p>\n<p>Posts with a message-body use plain JSON to set or update resource attributes.</p>\n<p>Successful requests will return a <code>200 OK</code> HTTP status.</p>\n<p>Here is some general information and requirements:</p>\n<ul>\n<li><p>Dates format: <code>MM/DD/YYYY</code></p>\n</li>\n<li><p>Resource IDs are returned as integers.</p>\n</li>\n<li><p><code>Authorization</code> header is required</p>\n</li>\n<li><p>Character encoding must be only in UTF-8 format</p>\n</li>\n<li><p>Only Roman (English) characters are allowed</p>\n</li>\n<li><p>JSONs must use only standard JSON data types: <a href=\"https://www.w3schools.com/js/js_json_datatypes.asp\">https://www.w3schools.com/js/js_json_datatypes.asp</a></p>\n</li>\n</ul>\n<h2 id=\"pagination\">Pagination</h2>\n<p>Requests that return multiple items will be paginated to 10 items by default.</p>\n<p>The items per page can be specified with the <code>?perPage</code> parameter:</p>\n<p><code>GET /products?perPage=15</code></p>\n<p>You can specify further pages with the <code>?page</code> parameter:</p>\n<p><code>GET /products?page=2</code></p>\n<p>Page number is 1-based and omitting the <code>?page</code> parameter will return the first page.</p>\n<p>The total number of resources, total pages, current page and per page value are always included in the HTTP body.</p>\n<h2 id=\"field-validation\">Field Validation</h2>\n<p>Our API uses various fields of information that follow the USA FDA's requirements with respect to the values that are allowed in each field:</p>\n<h4 id=\"recipient\">Recipient</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>firstName</code></td>\n<td>string</td>\n<td>No more than 50 characters</td>\n<td><code>true</code></td>\n</tr>\n<tr>\n<td><code>lastName</code></td>\n<td>string</td>\n<td>No more than 50 characters</td>\n<td><code>true</code></td>\n</tr>\n<tr>\n<td><code>email</code></td>\n<td>string</td>\n<td>Valid email addresses only</td>\n<td><code>true</code></td>\n</tr>\n<tr>\n<td><code>address1</code></td>\n<td>string</td>\n<td>No more than 100 characters</td>\n<td><code>true</code></td>\n</tr>\n<tr>\n<td><code>phone</code></td>\n<td>string</td>\n<td>At least 7 and no more than 18 numbers, characters that are not numbers will be ignored</td>\n<td></td>\n</tr>\n<tr>\n<td><code>city</code></td>\n<td>string</td>\n<td>No more than 100 characters</td>\n<td><code>true</code></td>\n</tr>\n<tr>\n<td><code>zipCode</code></td>\n<td>string</td>\n<td>Numbers and dashes only, USA format of at least 5 but no more than 10 characters, <code>XXXXX</code> or <code>XXXXX-ZZZZ</code></td>\n<td><code>true</code></td>\n</tr>\n<tr>\n<td><code>state</code></td>\n<td>string</td>\n<td>Letters only, enter the full name of the Recipient's USA state or its 2-letter equivalent</td>\n<td><code>true</code></td>\n</tr>\n<tr>\n<td><code>address2</code></td>\n<td>string</td>\n<td>No more than 100 characters</td>\n<td></td>\n</tr>\n<tr>\n<td><code>company</code></td>\n<td>string</td>\n<td>At least 3 and not more than 100 characters</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"order\">Order</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>productName</code></td>\n<td>string</td>\n<td>Must match exactly with an existing Product name in our app</td>\n<td><code>true</code></td>\n</tr>\n<tr>\n<td><code>quantityOrdered</code></td>\n<td>number</td>\n<td>Numbers only, at least 1 but not more than 10 numbers</td>\n<td><code>true</code></td>\n</tr>\n<tr>\n<td><code>shipDate</code></td>\n<td>string</td>\n<td>Date in format: <code>MM/DD/YYYY</code></td>\n<td><code>true</code></td>\n</tr>\n<tr>\n<td><code>trackingNumber</code></td>\n<td>string</td>\n<td>Valid tracking numbers only</td>\n<td><code>true</code></td>\n</tr>\n<tr>\n<td><code>recipient</code></td>\n<td>object</td>\n<td>See Recipient</td>\n<td><code>true</code></td>\n</tr>\n<tr>\n<td><code>carrier</code></td>\n<td>object</td>\n<td>See Carrier</td>\n<td><code>true</code></td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"carrier\"><strong>Carrier</strong></h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>name</code></td>\n<td>string</td>\n<td>Must match exactly with an existing Carrier name in our app, enter \"<strong>Federal Express (FedEx) - Air Transport</strong>\", \"<strong>United Parcel Service (UPS) - Air Transport</strong>\", \"<strong>DHL Express - Air Transport</strong>\", \"<strong>Regular Mail/Postal Service</strong>\", or a different Carrier name that was added using the \"Add a Carrier\" button in our app</td>\n<td><code>true</code></td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"product\"><strong>Product</strong></h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>name</code></td>\n<td>string</td>\n<td>No more than 100 characters</td>\n<td><code>true</code></td>\n</tr>\n<tr>\n<td><code>description</code></td>\n<td>string</td>\n<td>Text without restrictions</td>\n<td><code>true</code></td>\n</tr>\n<tr>\n<td><code>weight</code></td>\n<td>number</td>\n<td>Positive numbers which having precision 3</td>\n<td><code>true</code></td>\n</tr>\n<tr>\n<td><code>unitOfWeight</code></td>\n<td>string</td>\n<td>Allowed values - <strong>Grams/Kilograms/Ounces/Pounds/Liters</strong></td>\n<td><code>true</code></td>\n</tr>\n<tr>\n<td><code>FDAProductCode</code></td>\n<td>number</td>\n<td>Valid FDA Product Code. <a href=\"https://www.accessdata.fda.gov/scripts/ora/pcb/index.cfm?action=main.pcb\">Look Up FDA Product Code</a></td>\n<td><code>true</code></td>\n</tr>\n<tr>\n<td><code>USACustomsCode</code></td>\n<td>string</td>\n<td>String data type. Valid USA Customs Code in format <code>XXXX-YY-ZZ</code> or <code>XXXX-YY-ZZZZ</code>. <a href=\"https://hts.usitc.gov/\">Look Up USA Customs Code</a></td>\n<td></td>\n</tr>\n<tr>\n<td><code>unitPriceInCents</code></td>\n<td>number</td>\n<td>Unit price in <strong>cents</strong></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><p>The above requirements apply to both JSON and CSV formats.</p>\n<p>Posts of CSV files must follow our standard format.</p>\n<p>You can get a sample CSV file in our standard format by pressing the <strong>Upload Recipients</strong> button in the <a href=\"https://login.priornotify.com/recipients\">\"Recipients\" page</a> in our app.</p>\n<h2 id=\"errors\">Errors</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Error Code</strong></th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>400 Bad Request</td>\n<td>Invalid request, e.g. using an unsupported HTTP method</td>\n</tr>\n<tr>\n<td>401 Unauthorized</td>\n<td>Authentication error, e.g. incorrect API Key or Header</td>\n</tr>\n<tr>\n<td>404 Not Found</td>\n<td>Requests to resources that don't exist or are missing</td>\n</tr>\n<tr>\n<td>500 Internal Server Error</td>\n<td>Server error</td>\n</tr>\n</tbody>\n</table>\n</div><p>Errors return both an appropriate HTTP status code and response object which contains <code>message</code> what is wrong.</p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"2300461","collectionId":"a4166285-bd00-4d27-8625-5acc0663e2f1","publishedId":"2sA3XMkPwm","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"},"publishDate":"2024-06-12T10:20:10.000Z"},"item":[{"name":"Create Orders (CSV)","id":"979195ae-409d-4551-bc3f-db22654af92b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"file","type":"file","value":null}]},"url":"https://portal.priornotify.com/notices/import-csv","description":"<p>This endpoint requires CSV files in a specific format with UTF-8 encoding, with Roman (English) characters only. The specific format for the CSV file is available for download inside our app, by pressing the \"Upload Orders\" button in this page: <a href=\"https://login.priornotify.com/prior-notices\">https://login.priornotify.com/prior-notices</a></p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"Here must be your generated API Key"}]},"isInherited":true,"source":{"_postman_id":"a4166285-bd00-4d27-8625-5acc0663e2f1","id":"a4166285-bd00-4d27-8625-5acc0663e2f1","name":"PriorNotify API Documentation","type":"collection"}},"urlObject":{"protocol":"https","path":["notices","import-csv"],"host":["portal","priornotify","com"],"query":[],"variable":[]}},"response":[{"id":"6299558e-0d38-4d4d-affe-310103fe1c1b","name":"Import orders(CSV)","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"file","type":"file","value":null}]},"url":"https://portal.priornotify.com/notices/import-csv"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"userId\": 1,\n            \"recipient\": {\n                \"firstName\": \"firstName\",\n                \"email\": \"email\",\n                \"lastName\": \"lastName\",\n                \"address1\": \"address1\",\n                \"phone\": \"12345678901\",\n                \"city\": \"city\",\n                \"zipCode\": \"zipCode\",\n                \"state\": \"state\",\n                \"address2\": \"address2\",\n                \"company\": \"company\",\n                \"userId\": 1\n            },\n            \"order\": {\n                \"productName\": \"Milk\",\n                \"quantityOrdered\": \"1\",\n                \"shipDate\": \"3/22/2022\",\n                \"trackingNumber\": \"33333\"\n            },\n            \"carrier\": {\n                \"name\": \"Regular Mail/Postal Service\"\n            }\n        }\n    ]\n}"}],"_postman_id":"979195ae-409d-4551-bc3f-db22654af92b"},{"name":"Create Orders (JSON)","id":"7fb527a2-b4be-4b75-b24c-c3b2394b1766","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"[\n  {\n    \"recipient\": {\n      \"firstName\": \"firstName\",\n      \"email\": \"email\",\n      \"lastName\": \"lastName\",\n      \"address1\": \"address1\",\n      \"phone\": \"phone\",\n      \"city\": \"city\",\n      \"zipCode\": \"zipCode\",\n      \"state\": \"state\",\n      \"address2\": \"address2\",\n      \"company\": \"company\"\n    },\n    \"order\": {\n      \"productName\": \"productName\",\n      \"quantityOrdered\": 1,\n      \"shipDate\": \"MM/DD/YYYY\",\n      \"trackingNumber\": \"trackingNumber\"\n    },\n    \"carrier\": {\n      \"name\": \"Must Match Exactly\"\n    }\n  }\n]","options":{"raw":{"language":"json"}}},"url":"https://portal.priornotify.com/notices/import-json","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"Here must be your generated API Key"}]},"isInherited":true,"source":{"_postman_id":"a4166285-bd00-4d27-8625-5acc0663e2f1","id":"a4166285-bd00-4d27-8625-5acc0663e2f1","name":"PriorNotify API Documentation","type":"collection"}},"urlObject":{"protocol":"https","path":["notices","import-json"],"host":["portal","priornotify","com"],"query":[],"variable":[]}},"response":[{"id":"d4d9d938-eda2-47f5-9ada-a807ee152db9","name":"Import orders(JSON)","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"[\n  {\n    \"recipient\": {\n      \"firstName\": \"firstName\",\n      \"email\": \"email\",\n      \"lastName\": \"lastName\",\n      \"address1\": \"address1\",\n      \"phone\": \"phone\",\n      \"city\": \"city\",\n      \"zipCode\": \"zipCode\",\n      \"state\": \"state\",\n      \"address2\": \"address2\",\n      \"company\": \"company\"\n    },\n    \"order\": {\n      \"productName\": \"productName\",\n      \"quantityOrdered\": 1,\n      \"shipDate\": \"MM/DD/YYYY\",\n      \"trackingNumber\": \"trackingNumber\"\n    },\n    \"carrier\": {\n      \"name\": \"Must Match Exactly\"\n    }\n  }\n]","options":{"raw":{"language":"json"}}},"url":"https://portal.priornotify.com/notices/import-json"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"userId\": 1,\n            \"recipient\": {\n                \"userId\": 1,\n                \"firstName\": \"firstName\",\n                \"email\": \"email\",\n                \"lastName\": \"lastName\",\n                \"address1\": \"address1\",\n                \"phone\": \"12345678901\",\n                \"city\": \"city\",\n                \"zipCode\": \"zipCode\",\n                \"state\": \"state\",\n                \"address2\": \"address2\",\n                \"company\": \"company\"\n            },\n            \"order\": {\n                \"productName\": \"productName\",\n                \"quantityOrdered\": \"1\",\n                \"shipDate\": \"3/22/2022\",\n                \"trackingNumber\": \"trackingNumber\"\n            },\n            \"carrier\": {\n                \"name\": \"Must Match Exactly\"\n            }\n        }\n    ]\n}"}],"_postman_id":"7fb527a2-b4be-4b75-b24c-c3b2394b1766"},{"name":"Bulk Submit Orders","id":"f2da79e4-4981-477a-a2fd-80dcb4db8e1d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"[\n  {\n    \"recipient\": {\n      \"firstName\": \"firstName\",\n      \"email\": \"email\",\n      \"lastName\": \"lastName\",\n      \"address1\": \"address1\",\n      \"phone\": \"phone\",\n      \"city\": \"city\",\n      \"zipCode\": \"zipCode\",\n      \"state\": \"state\",\n      \"address2\": \"address2\",\n      \"company\": \"company\"\n    },\n    \"order\": {\n      \"productName\": \"productName\",\n      \"quantityOrdered\": \"1\",\n      \"shipDate\": \"MM/DD/YYYY\",\n      \"trackingNumber\": \"trackingNumber\"\n    },\n    \"carrier\": {\n      \"name\": \"Must Match Exactly\"\n    }\n  }\n]","options":{"raw":{"language":"json"}}},"url":"https://portal.priornotify.com/notices/bulk-submit","description":"<p>This route allows to bulk submit orders.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"Here must be your generated API Key"}]},"isInherited":true,"source":{"_postman_id":"a4166285-bd00-4d27-8625-5acc0663e2f1","id":"a4166285-bd00-4d27-8625-5acc0663e2f1","name":"PriorNotify API Documentation","type":"collection"}},"urlObject":{"protocol":"https","path":["notices","bulk-submit"],"host":["portal","priornotify","com"],"query":[],"variable":[]}},"response":[{"id":"33a55428-01e4-4d0f-82a0-55a6b977a348","name":"Bulk Submit Notices","originalRequest":{"method":"POST","header":[],"url":""},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"userId\": 1,\n            \"recipient\": {\n                \"userId\": 1,\n                \"firstName\": \"firstName\",\n                \"email\": \"email\",\n                \"lastName\": \"lastName\",\n                \"address1\": \"address1\",\n                \"phone\": \"12345678901\",\n                \"city\": \"city\",\n                \"zipCode\": \"zipCode\",\n                \"state\": \"state\",\n                \"address2\": \"address2\",\n                \"company\": \"company\"\n            },\n            \"order\": {\n                \"productName\": \"productName\",\n                \"quantityOrdered\": \"1\",\n                \"shipDate\": \"3/22/2022\",\n                \"trackingNumber\": \"trackingNumber\"\n            },\n            \"carrier\": {\n                \"name\": \"Must Match Exactly\"\n            }\n        }\n    ]\n}"}],"_postman_id":"f2da79e4-4981-477a-a2fd-80dcb4db8e1d"},{"name":"Create Recipients (CSV)","id":"d7ed2297-36cc-4250-bfb2-4d1ac9e64632","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"file","type":"file","value":null}]},"url":"https://portal.priornotify.com/recipients/import-csv","description":"<p>This endpoint requires CSV files in a specific format with UTF-8 encoding, and Roman (English) characters only. The specific format for the CSV file is available for download inside our app, by pressing the \"Upload Recipients\" button in<br />this page: <a href=\"https://login.priornotify.com/recipients\">https://login.priornotify.com/recipients</a></p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"Here must be your generated API Key"}]},"isInherited":true,"source":{"_postman_id":"a4166285-bd00-4d27-8625-5acc0663e2f1","id":"a4166285-bd00-4d27-8625-5acc0663e2f1","name":"PriorNotify API Documentation","type":"collection"}},"urlObject":{"protocol":"https","path":["recipients","import-csv"],"host":["portal","priornotify","com"],"query":[],"variable":[]}},"response":[{"id":"9a152cf6-70c6-4b08-993e-4f3f685229ea","name":"Import recipients(CSV)","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"file","type":"file","value":null}]},"url":"https://portal.priornotify.com/recipients/import-csv"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"userId\": 1,\n            \"firstName\": \"firstName\",\n            \"email\": \"email\",\n            \"lastName\": \"lastName\",\n            \"address1\": \"address1\",\n            \"phone\": \"12345678901\",\n            \"city\": \"city\",\n            \"zipCode\": \"zipCode\",\n            \"state\": \"state\",\n            \"address2\": \"address2\",\n            \"company\": \"company\",\n            \"id\": \"78b05c0a-2b52-40e1-ad79-4dd92b824e59\",\n            \"createdAt\": \"2022-06-23T12:30:59.761Z\",\n            \"updatedAt\": \"2022-06-23T12:30:59.761Z\"\n        }\n    ]\n}"},{"id":"7f5a0e8a-1934-42e7-8044-47ee70c1fefb","name":"Import recipients(CSV)","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"file","type":"file","value":null}]},"url":"https://portal.priornotify.com/recipients/import-csv"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":"Api key is invalid"}],"_postman_id":"d7ed2297-36cc-4250-bfb2-4d1ac9e64632"},{"name":"Create Recipients (JSON)","id":"41f39701-2628-41b5-af72-addd48eba968","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"[\n  {\n    \"firstName\": \"firstName\",\n    \"email\": \"email\",\n    \"lastName\": \"lastName\",\n    \"address1\": \"address1\",\n    \"phone\": \"phone\",\n    \"city\": \"city\",\n    \"zipCode\": \"zipCode\",\n    \"state\": \"state\",\n    \"address2\": \"address2\",\n    \"company\": \"company\"\n  }\n]","options":{"raw":{"language":"json"}}},"url":"https://portal.priornotify.com/recipients/import-json","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"Here must be your generated API Key"}]},"isInherited":true,"source":{"_postman_id":"a4166285-bd00-4d27-8625-5acc0663e2f1","id":"a4166285-bd00-4d27-8625-5acc0663e2f1","name":"PriorNotify API Documentation","type":"collection"}},"urlObject":{"protocol":"https","path":["recipients","import-json"],"host":["portal","priornotify","com"],"query":[],"variable":[]}},"response":[{"id":"5037d5d8-2717-49eb-a8cb-91db84b4bbcd","name":"Import recipients(JSON)","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"[\n  {\n    \"firstName\": \"firstName\",\n    \"email\": \"email\",\n    \"lastName\": \"lastName\",\n    \"address1\": \"address1\",\n    \"phone\": \"phone\",\n    \"city\": \"city\",\n    \"zipCode\": \"zipCode\",\n    \"state\": \"state\",\n    \"address2\": \"address2\",\n    \"company\": \"company\"\n  }\n]","options":{"raw":{"language":"json"}}},"url":"https://portal.priornotify.com/recipients/import-json"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"userId\": 1,\n            \"firstName\": \"firstName\",\n            \"email\": \"email\",\n            \"lastName\": \"lastName\",\n            \"address1\": \"address1\",\n            \"phone\": \"12345678901\",\n            \"city\": \"city\",\n            \"zipCode\": \"zipCode\",\n            \"state\": \"state\",\n            \"address2\": \"address2\",\n            \"company\": \"company\",\n            \"id\": \"78b05c0a-2b52-40e1-ad79-4dd92b824e59\",\n            \"createdAt\": \"2022-06-23T12:30:59.761Z\",\n            \"updatedAt\": \"2022-06-23T12:30:59.761Z\"\n        }\n    ]\n}"}],"_postman_id":"41f39701-2628-41b5-af72-addd48eba968"},{"name":"Create Products (CSV)","id":"af2a79af-6edf-4c71-abd0-809f284ca3c2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"file","type":"file","value":null}]},"url":"https://portal.priornotify.com/products/import.csv","description":"<p>This endpoint requires CSV files in a specific format with UTF-8 encoding, and Roman (English) characters only. The specific format for the CSV file is available for download inside our app, by pressing the \"Upload Products\" button in this page: <a href=\"https://login.priornotify.com/products\">https://login.priornotify.com/products</a></p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"Here must be your generated API Key"}]},"isInherited":true,"source":{"_postman_id":"a4166285-bd00-4d27-8625-5acc0663e2f1","id":"a4166285-bd00-4d27-8625-5acc0663e2f1","name":"PriorNotify API Documentation","type":"collection"}},"urlObject":{"protocol":"https","path":["products","import.csv"],"host":["portal","priornotify","com"],"query":[],"variable":[]}},"response":[{"id":"6c8a85bc-0c6e-4ce2-a13f-f68ffeb16eb3","name":"Create Products (CSV)","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"file","type":"file","value":null}]},"url":"https://portal.priornotify.com/products/import.csv"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"name\": \"Name\",\n            \"description\": \"Description\",\n            \"fda_product_code\": \"Fda Product Code\",\n            \"optional_product_id\": \"Optional Product Id\",\n            \"need_pn\": true,\n            \"is_bulk_sold\": \"false\",\n            \"total_weight\": \"Total Weight\",\n            \"shipper\": null,\n            \"country_of_origin\": \"Country of Origin\",\n            \"price\": \"0\",\n            \"unit_of_weight\": \"\",\n            \"producer\": \"producer\",\n            \"merchant\": null,\n            \"pack_and_ship\": 1,\n            \"sources\": null,\n            \"user_id\": \"user_id\",\n            \"id\": \"id\",\n            \"fdaProductCode\": \"FDA Product Code\",\n            \"optionalProductId\": \"Optional Product Id\",\n            \"width\": null,\n            \"height\": null,\n            \"depth\": null,\n            \"totalWeight\": \"Total Weight\",\n            \"productWeight\": null,\n            \"unitOfWeight\": \"Unit Of Weight\",\n            \"countryOfOrigin\": \"Country of Origin\",\n            \"needPn\": true,\n            \"unitOfMeasure\": null,\n            \"userId\": \"userId\",\n            \"createdAt\": \"2023-02-17T16:20:35.552Z\",\n            \"updatedAt\": \"2023-02-17T16:20:35.552Z\",\n            \"packAndShip\": 1,\n            \"isBulkSold\": false,\n            \"deletedAt\": null,\n            \"wholesalePrice\": null,\n            \"usaCustomsCode\": null,\n            \"unitValue\": null,\n            \"shippingCost\": null,\n            \"defaultPackaging\": [\n                {\n                    \"id\": 1,\n                    \"productId\": \"productId\",\n                    \"name\": \"default_packages\",\n                    \"value\": {\n                        \"quantity\":\"quantity\",\n                        \"packages\": [{\"type\":\"packaging type\",\"number\":\"packaging number\"},{\"type\":\"packaging type\",\"number\":\"packaging number\"},{\"type\":\"packaging type\",\"number\":\"packaging number\"},{\"type\":\"packaging type\",\"number\":\"packaging number\"},{\"type\":\"packaging type\",\"number\":\"packaging number\"}]\n                    }\n                }\n            ],\n            \"editMe\": true,\n            \"deleteMe\": true\n        }\n    ]\n}"}],"_postman_id":"af2a79af-6edf-4c71-abd0-809f284ca3c2"},{"name":"Get All Products","id":"a83f79af-e03f-4f10-951a-e914baa01fef","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://portal.priornotify.com/products","description":"<p>This route allows to get all products from Account.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"Here must be your generated API Key"}]},"isInherited":true,"source":{"_postman_id":"a4166285-bd00-4d27-8625-5acc0663e2f1","id":"a4166285-bd00-4d27-8625-5acc0663e2f1","name":"PriorNotify API Documentation","type":"collection"}},"urlObject":{"protocol":"https","path":["products"],"host":["portal","priornotify","com"],"query":[],"variable":[]}},"response":[{"id":"f04cf5e4-b7e5-472a-adbc-e2c41b15509b","name":"Get All Products","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://portal.priornotify.com/products?page=1&perPage=2","protocol":"https","host":["portal","priornotify","com"],"path":["products"],"query":[{"key":"page","value":"1"},{"key":"perPage","value":"2"}]}},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"products\": [\n            {\n                \"id\": 1,\n                \"name\": \"name1\",\n                \"description\": \"description1\",\n                \"weight\": 1.1,\n                \"unitOfWeight\": \"unitOfWeight\",\n                \"FDAProductCode\": \"FDAProductCode\",\n                \"USACustomsCode\": \"USACustomsCode\",\n                \"unitPriceInCents\": 100\n            },\n            {\n                \"id\": 2,\n                \"name\": \"name2\",\n                \"description\": \"description2\",\n                \"weight\": 2,\n                \"unitOfWeight\": \"unitOfWeight\",\n                \"FDAProductCode\": \"FDAProductCode\",\n                \"USACustomsCode\": \"USACustomsCode\",\n                \"unitPriceInCents\": 200\n            }\n        ],\n        \"currentPage\": 1,\n        \"perPage\": 2,\n        \"totalPages\": 4,\n        \"totalItems\": 7\n    }\n}"}],"_postman_id":"a83f79af-e03f-4f10-951a-e914baa01fef"},{"name":"Get Product by Identifier","id":"852aa122-e362-4410-a161-4781840ff6b0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[],"url":"https://portal.priornotify.com/products/productNameOrID","description":"<p>This route allows to get product by Identifier. Just input product Identifier to URL.<br />Identifier is Product Name or Product ID</p>\n","urlObject":{"protocol":"https","path":["products","productNameOrID"],"host":["portal","priornotify","com"],"query":[],"variable":[]}},"response":[{"id":"147b87eb-8867-49d1-8479-cb4cc0e2e9d5","name":"Get Product by Identifier","originalRequest":{"method":"GET","header":[],"url":"https://portal.priornotify.com/products/ProductNameOrID"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 1,\n        \"name\": \"name1\",\n        \"description\": \"description1\",\n        \"weight\": 1.1,\n        \"unitOfWeight\": \"unitOfWeight\",\n        \"FDAProductCode\": \"FDAProductCode\",\n        \"USACustomsCode\": \"USACustomsCode\",\n        \"unitPriceInCents\": 100,\n        \"defaultPackaging\": [\n            {\n                \"id\": 1,\n                \"productId\": \"productId\",\n                \"name\": \"default_packages\",\n                \"value\": {\n                    \"quantity\":\"quantity\",\n                    \"packages\": [{\"type\":\"packaging type\",\"number\":\"packaging number\"},{\"type\":\"packaging type\",\"number\":\"packaging number\"},{\"type\":\"packaging type\",\"number\":\"packaging number\"},{\"type\":\"packaging type\",\"number\":\"packaging number\"},{\"type\":\"packaging type\",\"number\":\"packaging number\"}]\n                }\n            }\n        ]\n    }\n}"}],"_postman_id":"852aa122-e362-4410-a161-4781840ff6b0"},{"name":"Update Product by Identifier","id":"b3a20d96-8b1c-466e-86a5-fa8718e1ecea","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"Product1\",\n    \"description\": \"Description1\",\n    \"weight\": 1.1,\n    \"unitOfWeight\": \"Kilograms\",\n    \"FDAProductCode\": \"32BDP01\",\n    \"USACustomsCode\": \"2222.32.8822\",\n    \"unitPriceInCents\": 999,\n    \"packaging\": {\n        \"name\": \"default_packages\",\n        \"value\": {\n            \"quantity\": 5,\n            \"packages\": [\n                {\n                    \"type\": \"Box\",\n                    \"number\": 5\n                },\n                {\n                    \"type\": \"\",\n                    \"number\": 0\n                },\n                {\n                    \"type\": \"\",\n                    \"number\": 0\n                },\n                {\n                    \"type\": \"\",\n                    \"number\": 0\n                },\n                {\n                    \"type\": \"\",\n                    \"number\": 0\n                }\n            ]\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://portal.priornotify.com/products/productNameOrID","description":"<p>This route allows to update product by Identifier. Just input product Identifier to URL.<br />Identifier is Product Name or Product ID</p>\n<p><strong>The default Packaging is set by Quantity, because a different Quantity may require different Packaging. Therefore, in order to update the default packaging, you must pass the Quantity.</strong></p>\n","urlObject":{"protocol":"https","path":["products","productNameOrID"],"host":["portal","priornotify","com"],"query":[],"variable":[]}},"response":[{"id":"d6a2287b-b6dd-4f02-b78c-3f3569df0c0b","name":"Update Product by Identifier","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"name1\",\n    \"description\": \"description1\",\n    \"weight\": 1.1,\n    \"unitOfWeight\": \"unitOfWeight\",\n    \"FDAProductCode\": \"FDAProductCode\",\n    \"USACustomsCode\": \"USACustomsCode\",\n    \"unitPriceInCents\": 100,\n    \"packaging\": {\n        \"name\": \"default_packages\",\n        \"value\": {\n            \"quantity\": \"quantity\",\n            \"packages\": [\n                {\n                    \"type\": \"packaging type\",\n                    \"number\": \"packaging number\"\n                },\n                {\n                    \"type\": \"packaging type\",\n                    \"number\": \"packaging number\"\n                },\n                {\n                    \"type\": \"packaging type\",\n                    \"number\": \"packaging number\"\n                },\n                {\n                    \"type\": \"packaging type\",\n                    \"number\": \"packaging number\"\n                },\n                {\n                    \"type\": \"packaging type\",\n                    \"number\": \"packaging number\"\n                }\n            ]\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://portal.priornotify.com/products/productNameOrID"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 1,\n        \"name\": \"name1\",\n        \"description\": \"description1\",\n        \"weight\": 1.1,\n        \"unitOfWeight\": \"unitOfWeight\",\n        \"FDAProductCode\": \"FDAProductCode\",\n        \"USACustomsCode\": \"USACustomsCode\",\n        \"unitPriceInCents\": 100,\n        \"defaultPackaging\": [\n            {\n                \"id\": 1,\n                \"productId\": \"productId\",\n                \"name\": \"default_packages\",\n                \"value\": {\n                    \"quantity\":\"quantity\",\n                    \"packages\": [{\"type\":\"packaging type\",\"number\":\"packaging number\"},{\"type\":\"packaging type\",\"number\":\"packaging number\"},{\"type\":\"packaging type\",\"number\":\"packaging number\"},{\"type\":\"packaging type\",\"number\":\"packaging number\"},{\"type\":\"packaging type\",\"number\":\"packaging number\"}]\n                }\n            }\n        ]\n    }\n}"}],"_postman_id":"b3a20d96-8b1c-466e-86a5-fa8718e1ecea"},{"name":"Bulk Update Products by Identifier","id":"e6b14c0c-520a-4aa4-9557-9252d01f288d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"[\n    {\n        \"identifier\": 1,\n        \"name\": \"Product1\",\n        \"description\": \"Description1\",\n        \"weight\": 1.1,\n        \"unitOfWeight\": \"Kilograms\",\n        \"FDAProductCode\": \"32YDY99\",\n        \"USACustomsCode\": \"1234.56.7890\",\n        \"unitPriceInCents\": 999\n    },\n    {\n        \"identifier\": \"Product2\",\n        \"name\": \"Product2\",\n        \"description\": \"Description2\",\n        \"weight\": 1.999,\n        \"unitOfWeight\": \"Grams\",\n        \"FDAProductCode\": \"32YDY99\",\n        \"USACustomsCode\": \"1023.45.67\",\n        \"unitPriceInCents\": 1000\n    }\n]","options":{"raw":{"language":"json"}}},"url":"https://portal.priornotify.com/products/bulk-update","description":"<p>This route allows to bulk update products by Identifier. Just input product Identifier for each product.<br />Identifier is Product Name or Product ID</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"Here must be your generated API Key"}]},"isInherited":true,"source":{"_postman_id":"a4166285-bd00-4d27-8625-5acc0663e2f1","id":"a4166285-bd00-4d27-8625-5acc0663e2f1","name":"PriorNotify API Documentation","type":"collection"}},"urlObject":{"protocol":"https","path":["products","bulk-update"],"host":["portal","priornotify","com"],"query":[],"variable":[]}},"response":[{"id":"e44d4d44-3a10-49b5-bb61-573d964e33ae","name":"Bulk Update Products by Identifier","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"[\n    {\n        \"identifier\": \"1\",\n        \"name\": \"name1\",\n        \"description\": \"description1\",\n        \"weight\": 1.1,\n        \"unitOfWeight\": \"unitOfWeight\",\n        \"FDAProductCode\": \"FDAProductCode\",\n        \"USACustomsCode\": \"USACustomsCode\",\n        \"unitPriceInCents\": 100\n    },\n    {\n        \"identifier\": \"Product2\",\n        \"name\": \"Product2\",\n        \"description\": \"Description2\",\n        \"weight\": 1.999,\n        \"unitOfWeight\": \"Grams\",\n        \"FDAProductCode\": \"32YDY99\",\n        \"USACustomsCode\": \"1023.45.67\",\n        \"unitPriceInCents\": 1000\n    }\n]","options":{"raw":{"language":"json"}}},"url":"https://portal.priornotify.com/products/bulk-update"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 7915,\n            \"name\": \"name1\",\n            \"description\": \"description1\",\n            \"weight\": 1.1,\n            \"unitOfWeight\": \"unitOfWeight\",\n            \"FDAProductCode\": \"FDAProductCode\",\n            \"USACustomsCode\": \"USACustomsCode\",\n            \"unitPriceInCents\": 100\n        },\n        {\n            \"id\": 8158,\n            \"name\": \"name2\",\n            \"description\": \"description2\",\n            \"weight\": 2,\n            \"unitOfWeight\": \"unitOfWeight\",\n            \"FDAProductCode\": \"FDAProductCode\",\n            \"USACustomsCode\": \"USACustomsCode\",\n            \"unitPriceInCents\": 200\n        }\n    ]\n}"}],"_postman_id":"e6b14c0c-520a-4aa4-9557-9252d01f288d"},{"name":"Get All Orders/Notices (JSON)","id":"93c4c1ba-b9ac-4a89-984b-03eae1b86336","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{}},"request":{"method":"GET","header":[],"url":"https://portal.priornotify.com/notices/export-json","description":"<h2 id=\"filtering\">Filtering</h2>\n<p>Requests that return multiple items can be filtered by fields.<br />Notices that want to return can be specified with the parameter</p>\n<p>Example:<br /><code>https://portal.priornotify.com/notices/export-json?confirmationNumber=000000000000</code></p>\n<h5 id=\"notice\">Notice</h5>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Key</strong></th>\n<th><strong>Value</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>start</td>\n<td><code>2023-01-01 00:00:00</code></td>\n</tr>\n<tr>\n<td>end</td>\n<td><code>2023-01-01 23:59:59</code></td>\n</tr>\n<tr>\n<td>product</td>\n<td><code>Apple</code></td>\n</tr>\n<tr>\n<td>recipient</td>\n<td><code>FirstName LastName</code></td>\n</tr>\n<tr>\n<td>confirmationNumber</td>\n<td><code>000000000000</code></td>\n</tr>\n<tr>\n<td>status</td>\n<td><code>received</code> <code>accepted</code> <code>ready_to_submit</code> <code>waiting_for_shipper</code> <code>completed</code> <code>cancelled</code></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"Here must be your generated API Key"}]},"isInherited":true,"source":{"_postman_id":"a4166285-bd00-4d27-8625-5acc0663e2f1","id":"a4166285-bd00-4d27-8625-5acc0663e2f1","name":"PriorNotify API Documentation","type":"collection"}},"urlObject":{"protocol":"https","path":["notices","export-json"],"host":["portal","priornotify","com"],"query":[],"variable":[]}},"response":[{"id":"254ae783-7ba0-4602-b377-92e8830b6d2b","name":"Get All Notices","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://portal.priornotify.com/notices/export-json?page=1&perPage=2","protocol":"https","host":["portal","priornotify","com"],"path":["notices","export-json"],"query":[{"key":"page","value":"1"},{"key":"perPage","value":"2"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"notices\": [\n            {\n                \"id\": 1,\n                \"name\": null,\n                \"description\": null,\n                \"status\": 1,\n                \"webEntry\": null,\n                \"userId\": 1,\n                \"producer\": null,\n                \"createdAt\": \"2023-01-01T00:00:00\",\n                \"updatedAt\": \"2023-01-01T00:00:00\",\n                \"noPackage\": null,\n                \"unitsNumber\": null,\n                \"entryType\": null,\n                \"shipDate\": \"01/01/2023\",\n                \"trackingNumber\": null,\n                \"baseUnit\": null,\n                \"packageTypes\": null,\n                \"packageItems\": null,\n                \"shipper\": null,\n                \"freeze\": null,\n                \"notified\": true,\n                \"shipmentDateAddedAt\": null,\n                \"activatedAt\": null,\n                \"methodOfTransport\": \"methodOfTransport\",\n                \"quantity\": 1,\n                \"measure\": null,\n                \"packages\": null,\n                \"sources\": null,\n                \"assortmentId\": null,\n                \"submitterId\": null,\n                \"isLocked\": false,\n                \"pnDocumentPath\": null,\n                \"paidAt\": null,\n                \"facilitySetAt\": null,\n                \"pnConfirmationNumber\": null,\n                \"submittedAt\": null,\n                \"airwayBill\": null,\n                \"containerNumber\": null,\n                \"billOfLading\": null,\n                \"shippingSpeed\": null,\n                \"webEntryDocumentPath\": \"webEntryDocumentPath\",\n                \"productName\": \"productName\",\n                \"recipientName\": \"recipientName\",\n                \"deletable\": true,\n                \"statusType\": \"received\",\n                \"relatedCarrier\": null,\n                \"relatedRecipient\": {\n                    \"id\": \"1\",\n                    \"email\": \"email\",\n                    \"firstName\": \"firstName\",\n                    \"lastName\": \"lastName\",\n                    \"phone\": \"123456788901\",\n                    \"address1\": \"address1\",\n                    \"address2\": \"address2\",\n                    \"city\": \"city\",\n                    \"state\": \"state\",\n                    \"zipCode\": \"zipCode\",\n                    \"company\": \"company\",\n                    \"userId\": 1,\n                    \"createdAt\": \"2023-01-01T00:00:00\",\n                    \"updatedAt\": \"2023-01-01T00:00:00\"\n                },\n                \"relatedProduct\": {\n                    \"id\": 1,\n                    \"name\": \"nameOfProduct\",\n                    \"description\": \"description\",\n                    \"fdaProductCode\": \"fdaProductCode\",\n                    \"optionalProductId\": null,\n                    \"width\": null,\n                    \"height\": null,\n                    \"depth\": null,\n                    \"totalWeight\": 1,\n                    \"productWeight\": null,\n                    \"unitOfWeight\": \"unitOfWeight\",\n                    \"countryOfOrigin\": \"countryOfOrigin\",\n                    \"price\": \"0\",\n                    \"needPn\": true,\n                    \"unitOfMeasure\": null,\n                    \"producer\": 1,\n                    \"userId\": 1,\n                    \"createdAt\": \"2023-01-01T00:00:00\",\n                    \"updatedAt\": \"2023-01-01T00:00:00\",\n                    \"merchant\": 1,\n                    \"shipper\": null,\n                    \"packAndShip\": 2,\n                    \"isBulkSold\": false,\n                    \"sources\": null,\n                    \"deletedAt\": null,\n                    \"wholesalePrice\": null,\n                    \"usaCustomsCode\": null,\n                    \"unitValue\": 0,\n                    \"shippingCost\": [],\n                    \"relatedProducer\": {\n                        \"id\": 1,\n                        \"email\": \"email\",\n                        \"firstName\": \"firstName\",\n                        \"lastName\": \"lastName\",\n                        \"phone\": \"12345678909\",\n                        \"role\": 10,\n                        \"type\": 2,\n                        \"useAuthy\": 0,\n                        \"authyCode\": null,\n                        \"hash\": \"hash\",\n                        \"salt\": \"salt\",\n                        \"tempHash\": \"tempHash\",\n                        \"stripeCustomerId\": \"stripeCustomerId\",\n                        \"activated\": \"2023-01-01T00:00:00\",\n                        \"parent\": 1,\n                        \"country\": \"country\",\n                        \"company\": \"company\",\n                        \"companyType\": null,\n                        \"registrationNumber\": null,\n                        \"state\": \"state\",\n                        \"city\": \"city\",\n                        \"postalCode\": \"11111\",\n                        \"address\": \"11111\",\n                        \"pnsiUsername\": \"fdaUsername\",\n                        \"pnsiPassword\": \"fdaPassword\",\n                        \"stripeSubscriptionId\": null,\n                        \"stripeCardLast\": \"4242\",\n                        \"shopifyId\": null,\n                        \"mmUserId\": null,\n                        \"mmTeamId\": null,\n                        \"mmPersonalToken\": null,\n                        \"exemption\": \"2\",\n                        \"asAdmin\": null,\n                        \"pnCount\": 0,\n                        \"trialEnd\": null,\n                        \"cancelling\": null,\n                        \"createdAt\": \"2023-01-01T00:00:00\",\n                        \"updatedAt\": \"2023-01-01T00:00:00\",\n                        \"shopifyApiKey\": null,\n                        \"shopifyShopOrderHook\": null,\n                        \"stripeCard\": \"stripeCard\",\n                        \"address2\": \"address2\",\n                        \"shopifySecret\": null,\n                        \"shopifyName\": null,\n                        \"emailsNotice\": [],\n                        \"fdaPhoneNumber\": \"12345678901\",\n                        \"paymentFailedAt\": null,\n                        \"woocommerceConnection\": null,\n                        \"magentoConnection\": null,\n                        \"modalsStatuses\": {\n                            \"appPlusDetailsModal\": false\n                        },\n                        \"prestashopConnection\": null,\n                        \"secondPnsiUsername\": \"secondFdaUsername\",\n                        \"secondPnsiPassword\": \"secondFdaPassword\"\n                    },\n                    \"relatedMerchant\": {\n                        \"id\": 1,\n                        \"email\": \"email\",\n                        \"firstName\": \"firstName\",\n                        \"lastName\": \"lastName\",\n                        \"phone\": \"12345678909\",\n                        \"role\": 10,\n                        \"type\": 1,\n                        \"useAuthy\": 0,\n                        \"authyCode\": null,\n                        \"hash\": \"hash\",\n                        \"salt\": \"salt\",\n                        \"tempHash\": \"tempHash\",\n                        \"stripeCustomerId\": \"stripeCustomerId\",\n                        \"activated\": \"2023-01-01T00:00:00\",\n                        \"parent\": 0,\n                        \"country\": \"country\",\n                        \"company\": \"company\",\n                        \"companyType\": null,\n                        \"registrationNumber\": null,\n                        \"state\": \"state\",\n                        \"city\": \"city\",\n                        \"postalCode\": \"11111\",\n                        \"address\": \"11111\",\n                        \"pnsiUsername\": \"fdaUsername\",\n                        \"pnsiPassword\": \"fdaPassword\",\n                        \"stripeSubscriptionId\": null,\n                        \"stripeCardLast\": \"1\",\n                        \"shopifyId\": null,\n                        \"mmUserId\": null,\n                        \"mmTeamId\": null,\n                        \"mmPersonalToken\": null,\n                        \"exemption\": \"1\",\n                        \"asAdmin\": null,\n                        \"pnCount\": 0,\n                        \"trialEnd\": \"2023-01-01T00:00:00\",\n                        \"cancelling\": null,\n                        \"createdAt\": \"2023-01-01T00:00:00\",\n                        \"updatedAt\": \"2023-01-01T00:00:00\",\n                        \"shopifyApiKey\": null,\n                        \"shopifyShopOrderHook\": null,\n                        \"stripeCard\": \"stripeCard\",\n                        \"address2\": null,\n                        \"shopifySecret\": null,\n                        \"shopifyName\": \"shopifyName\",\n                        \"emailsNotice\": [],\n                        \"fdaPhoneNumber\": \"123456789090\",\n                        \"paymentFailedAt\": null,\n                        \"woocommerceConnection\": null,\n                        \"magentoConnection\": null,\n                        \"modalsStatuses\": {\n                            \"appPlusDetailsModal\": false\n                        },\n                        \"prestashopConnection\": {\n                            \"host\": \"host\"\n                        },\n                        \"secondPnsiUsername\": \"secondFdaUsername\",\n                        \"secondPnsiPassword\": \"secondFdaPassword\"\n                    },\n                    \"relatedShipper\": null,\n                    \"isAssociatedWithPnPlus\": true\n                },\n                \"userToPay\": {\n                    \"id\": 8753,\n                    \"paymentFailedAt\": null,\n                    \"role\": 10,\n                    \"type\": 1\n                },\n                \"isValid\": {\n                    \"recipient\": true,\n                    \"product\": true\n                }\n            },\n            {\n                \"id\": 2,\n                \"name\": null,\n                \"description\": null,\n                \"status\": 3,\n                \"webEntry\": null,\n                \"userId\": 2,\n                \"producer\": null,\n                \"createdAt\": \"2023-01-01T00:00:00\",\n                \"updatedAt\": \"2023-01-01T00:00:00\",\n                \"noPackage\": null,\n                \"unitsNumber\": 1,\n                \"entryType\": null,\n                \"shipDate\": \"01/01/2023\",\n                \"trackingNumber\": null,\n                \"baseUnit\": null,\n                \"packageTypes\": null,\n                \"packageItems\": null,\n                \"shipper\": null,\n                \"freeze\": false,\n                \"notified\": true,\n                \"shipmentDateAddedAt\": \"2023-01-01T00:00:00\",\n                \"activatedAt\": \"2023-01-01T00:00:00\",\n                \"methodOfTransport\": \"methodOfTransport\",\n                \"quantity\": 1,\n                \"measure\": null,\n                \"packages\": [\n                    {\n                        \"type\": \"Bag\",\n                        \"number\": 1\n                    },\n                    {\n                        \"type\": \"\",\n                        \"number\": 0\n                    },\n                    {\n                        \"type\": \"\",\n                        \"number\": 0\n                    },\n                    {\n                        \"type\": \"\",\n                        \"number\": 0\n                    },\n                    {\n                        \"type\": \"\",\n                        \"number\": 0\n                    }\n                ],\n                \"sources\": null,\n                \"assortmentId\": null,\n                \"submitterId\": null,\n                \"isLocked\": false,\n                \"pnDocumentPath\": null,\n                \"paidAt\": null,\n                \"facilitySetAt\": null,\n                \"pnConfirmationNumber\": null,\n                \"submittedAt\": null,\n                \"airwayBill\": null,\n                \"containerNumber\": null,\n                \"billOfLading\": null,\n                \"shippingSpeed\": null,\n                \"webEntryDocumentPath\": null,\n                \"productName\": \"productName\",\n                \"recipientName\": \"recipientName\",\n                \"deletable\": true,\n                \"statusType\": \"statusType\",\n                \"relatedCarrier\": null,\n                \"relatedRecipient\": {\n                    \"id\": \"2\",\n                    \"email\": \"email\",\n                    \"firstName\": \"firstName\",\n                    \"lastName\": \"lastName\",\n                    \"phone\": \"1234567890\",\n                    \"address1\": \"address1\",\n                    \"address2\": \"address2\",\n                    \"city\": \"city\",\n                    \"state\": \"state\",\n                    \"zipCode\": \"zipCode\",\n                    \"company\": \"company\",\n                    \"userId\": 2,\n                    \"createdAt\": \"2023-01-01T00:00:00\",\n                    \"updatedAt\": \"2023-01-01T00:00:00\"\n                },\n                \"relatedProduct\": {\n                    \"id\": 2,\n                    \"name\": \"name\",\n                    \"description\": \"description\",\n                    \"fdaProductCode\": \"fdaProductCode\",\n                    \"optionalProductId\": \"optionalProductId\",\n                    \"width\": null,\n                    \"height\": null,\n                    \"depth\": null,\n                    \"totalWeight\": 1,\n                    \"productWeight\": null,\n                    \"unitOfWeight\": \"unitOfWeight\",\n                    \"countryOfOrigin\": \"countryOfOrigin\",\n                    \"price\": \"0\",\n                    \"needPn\": true,\n                    \"unitOfMeasure\": null,\n                    \"producer\": 2,\n                    \"userId\": 2,\n                    \"createdAt\": \"2023-01-01T00:00:00\",\n                    \"updatedAt\": \"2023-01-01T00:00:00\",\n                    \"merchant\": 2,\n                    \"shipper\": 2,\n                    \"packAndShip\": 3,\n                    \"isBulkSold\": false,\n                    \"sources\": {\n                        \"woocommerce\": {\n                            \"id\": 2,\n                            \"host\": \"host\",\n                            \"consumerKey\": \"consumerKey\",\n                            \"consumerSecret\": \"consumerSecret\"\n                        }\n                    },\n                    \"deletedAt\": null,\n                    \"wholesalePrice\": null,\n                    \"usaCustomsCode\": null,\n                    \"unitValue\": 0,\n                    \"shippingCost\": [],\n                    \"relatedProducer\": {\n                        \"id\": 2,\n                        \"email\": \"email\",\n                        \"firstName\": \"firstName\",\n                        \"lastName\": \"lastName\",\n                        \"phone\": \"12345678909\",\n                        \"role\": 10,\n                        \"type\": 2,\n                        \"useAuthy\": 0,\n                        \"authyCode\": null,\n                        \"hash\": \"hash\",\n                        \"salt\": \"salt\",\n                        \"tempHash\": \"tempHash\",\n                        \"stripeCustomerId\": \"stripeCustomerId\",\n                        \"activated\": \"2023-01-01T00:00:00\",\n                        \"parent\": 2,\n                        \"country\": \"country\",\n                        \"company\": \"company\",\n                        \"companyType\": null,\n                        \"registrationNumber\": null,\n                        \"state\": \"state\",\n                        \"city\": \"city\",\n                        \"postalCode\": \"11111\",\n                        \"address\": \"11111\",\n                        \"pnsiUsername\": \"fdaUsername\",\n                        \"pnsiPassword\": \"fdaPassword\",\n                        \"stripeSubscriptionId\": null,\n                        \"stripeCardLast\": \"stripeCardLast\",\n                        \"shopifyId\": null,\n                        \"mmUserId\": null,\n                        \"mmTeamId\": null,\n                        \"mmPersonalToken\": null,\n                        \"exemption\": \"2\",\n                        \"asAdmin\": null,\n                        \"pnCount\": 0,\n                        \"trialEnd\": null,\n                        \"cancelling\": null,\n                        \"createdAt\": \"2023-01-01T00:00:00\",\n                        \"updatedAt\": \"2023-01-01T00:00:00\",\n                        \"shopifyApiKey\": null,\n                        \"shopifyShopOrderHook\": null,\n                        \"stripeCard\": \"stripeCard\",\n                        \"address2\": \"11111\",\n                        \"shopifySecret\": null,\n                        \"shopifyName\": null,\n                        \"emailsNotice\": [],\n                        \"fdaPhoneNumber\": \"12345678909\",\n                        \"paymentFailedAt\": null,\n                        \"woocommerceConnection\": null,\n                        \"magentoConnection\": null,\n                        \"modalsStatuses\": {\n                            \"appPlusDetailsModal\": false\n                        },\n                        \"prestashopConnection\": null,\n                        \"secondPnsiUsername\": \"secondFdaUsername\",\n                        \"secondPnsiPassword\": \"secondFdaPassword\"\n                    },\n                    \"relatedMerchant\": {\n                        \"id\": 2,\n                        \"email\": \"email\",\n                        \"firstName\": \"firstName\",\n                        \"lastName\": \"lastName\",\n                        \"phone\": \"12345678909\",\n                        \"role\": 10,\n                        \"type\": 1,\n                        \"useAuthy\": 0,\n                        \"authyCode\": null,\n                        \"hash\": \"hash\",\n                        \"salt\": \"salt\",\n                        \"tempHash\": \"tempHash\",\n                        \"stripeCustomerId\": \"stripeCustomerId\",\n                        \"activated\": \"2023-01-01T00:00:00\",\n                        \"parent\": 0,\n                        \"country\": \"country\",\n                        \"company\": \"company\",\n                        \"companyType\": null,\n                        \"registrationNumber\": null,\n                        \"state\": \"state\",\n                        \"city\": \"city\",\n                        \"postalCode\": \"11111\",\n                        \"address\": \"11111\",\n                        \"pnsiUsername\": \"fdaUsername\",\n                        \"pnsiPassword\": \"fdaPassword\",\n                        \"stripeSubscriptionId\": null,\n                        \"stripeCardLast\": \"4242\",\n                        \"shopifyId\": null,\n                        \"mmUserId\": null,\n                        \"mmTeamId\": null,\n                        \"mmPersonalToken\": null,\n                        \"exemption\": \"1\",\n                        \"asAdmin\": null,\n                        \"pnCount\": 0,\n                        \"trialEnd\": \"2023-01-01T00:00:00\",\n                        \"cancelling\": null,\n                        \"createdAt\": \"2023-01-01T00:00:00\",\n                        \"updatedAt\": \"2023-01-01T00:00:00\",\n                        \"shopifyApiKey\": null,\n                        \"shopifyShopOrderHook\": null,\n                        \"stripeCard\": \"stripeCard\",\n                        \"address2\": null,\n                        \"shopifySecret\": null,\n                        \"shopifyName\": \"shopifyName\",\n                        \"emailsNotice\": [],\n                        \"fdaPhoneNumber\": \"12345667890\",\n                        \"paymentFailedAt\": null,\n                        \"woocommerceConnection\": null,\n                        \"magentoConnection\": null,\n                        \"modalsStatuses\": {\n                            \"appPlusDetailsModal\": false\n                        },\n                        \"prestashopConnection\": {\n                            \"host\": \"host\"\n                        },\n                        \"secondPnsiUsername\": \"secondFdaUsername\",\n                        \"secondPnsiPassword\": \"secondFdaPassword\"\n                    },\n                    \"relatedShipper\": {\n                        \"id\": 2,\n                        \"email\": \"email\",\n                        \"firstName\": \"firstName\",\n                        \"lastName\": \"lastName\",\n                        \"phone\": \"12345678909\",\n                        \"role\": 1,\n                        \"type\": 3,\n                        \"useAuthy\": 0,\n                        \"authyCode\": null,\n                        \"hash\": \"hash\",\n                        \"salt\": \"salt\",\n                        \"tempHash\": \"tempHash\",\n                        \"stripeCustomerId\": null,\n                        \"activated\": \"2023-01-01T00:00:00\",\n                        \"parent\": 2,\n                        \"country\": \"country\",\n                        \"company\": \"company\",\n                        \"companyType\": null,\n                        \"registrationNumber\": null,\n                        \"state\": \"state\",\n                        \"city\": \"city\",\n                        \"postalCode\": \"11111\",\n                        \"address\": \"1\",\n                        \"pnsiUsername\": null,\n                        \"pnsiPassword\": null,\n                        \"stripeSubscriptionId\": null,\n                        \"stripeCardLast\": null,\n                        \"shopifyId\": null,\n                        \"mmUserId\": null,\n                        \"mmTeamId\": null,\n                        \"mmPersonalToken\": null,\n                        \"exemption\": \"1\",\n                        \"asAdmin\": null,\n                        \"pnCount\": 0,\n                        \"trialEnd\": \"2023-01-01T00:00:00\",\n                        \"cancelling\": null,\n                        \"createdAt\": \"2023-01-01T00:00:00\",\n                        \"updatedAt\": \"2023-01-01T00:00:00\",\n                        \"shopifyApiKey\": null,\n                        \"shopifyShopOrderHook\": null,\n                        \"stripeCard\": null,\n                        \"address2\": \"1\",\n                        \"shopifySecret\": null,\n                        \"shopifyName\": null,\n                        \"emailsNotice\": [],\n                        \"fdaPhoneNumber\": \"12345678909\",\n                        \"paymentFailedAt\": null,\n                        \"woocommerceConnection\": null,\n                        \"magentoConnection\": null,\n                        \"modalsStatuses\": {\n                            \"appPlusDetailsModal\": false\n                        },\n                        \"prestashopConnection\": null,\n                        \"secondPnsiUsername\": \"secondFdaUsername\",\n                        \"secondPnsiPassword\": \"secondFdaPassword\"\n                    },\n                    \"isAssociatedWithPnPlus\": true\n                },\n                \"userToPay\": {\n                    \"id\": 8753,\n                    \"paymentFailedAt\": null,\n                    \"role\": 10,\n                    \"type\": 1\n                },\n                \"isValid\": {\n                    \"recipient\": true,\n                    \"product\": true\n                }\n            }\n        ],\n        \"count\": 28\n    }\n}"}],"_postman_id":"93c4c1ba-b9ac-4a89-984b-03eae1b86336"},{"name":"Get All Orders/Notices (CSV)","id":"468edb04-1f09-4762-96e2-d8ba8adce6c0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://portal.priornotify.com/notices/export-json","description":"<h2 id=\"filtering\">Filtering</h2>\n<p>Requests that return multiple items can be filtered by fields.<br />Notices that want to return can be specified with the parameter</p>\n<p>Example:<br /><code>https://portal.priornotify.com/notices/export-csv?confirmationNumber=000000000000</code></p>\n<h5 id=\"notice\">Notice</h5>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Key</strong></th>\n<th><strong>Value</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>start</td>\n<td><code>2023-01-01 00:00:00</code></td>\n</tr>\n<tr>\n<td>end</td>\n<td><code>2023-01-01 23:59:59</code></td>\n</tr>\n<tr>\n<td>product</td>\n<td><code>Apple</code></td>\n</tr>\n<tr>\n<td>recipient</td>\n<td><code>FirstName LastName</code></td>\n</tr>\n<tr>\n<td>confirmationNumber</td>\n<td><code>000000000000</code></td>\n</tr>\n<tr>\n<td>status</td>\n<td><code>received</code> <code>accepted</code> <code>ready_to_submit</code> <code>waiting_for_shipper</code> <code>completed</code> <code>cancelled</code></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"Here must be your generated API Key"}]},"isInherited":true,"source":{"_postman_id":"a4166285-bd00-4d27-8625-5acc0663e2f1","id":"a4166285-bd00-4d27-8625-5acc0663e2f1","name":"PriorNotify API Documentation","type":"collection"}},"urlObject":{"protocol":"https","path":["notices","export-json"],"host":["portal","priornotify","com"],"query":[],"variable":[]}},"response":[{"id":"183c2a3b-5eb2-48be-8bfe-4d635b855a52","name":"Get All Notices (CSV)","originalRequest":{"method":"GET","header":[],"url":"https://portal.priornotify.com/notices/export-csv"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":"export_notices.csv"}],"_postman_id":"468edb04-1f09-4762-96e2-d8ba8adce6c0"},{"name":"Get Notice's Web Entry Document","id":"ce1c5bb4-6035-4621-8327-b2f7d11df21a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://portal.priornotify.com/notices/:noticeId/web-entry-document","description":"<p>Request that returns notice's web-entry document in PDF format.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"Here must be your generated API Key"}]},"isInherited":true,"source":{"_postman_id":"a4166285-bd00-4d27-8625-5acc0663e2f1","id":"a4166285-bd00-4d27-8625-5acc0663e2f1","name":"PriorNotify API Documentation","type":"collection"}},"urlObject":{"protocol":"https","path":["notices",":noticeId","web-entry-document"],"host":["portal","priornotify","com"],"query":[],"variable":[{"id":"2ccaa90b-2bbc-48ac-96a3-51691773ab74","type":"any","value":null,"key":"noticeId"}]}},"response":[{"id":"9b17cf84-9987-46d7-9307-1f2b1c51a3e3","name":"Get Notice's Web Entry Document","originalRequest":{"method":"GET","header":[],"url":"https://portal.priornotify.com/notices/42395/web-entry-document"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":"response.pdf"}],"_postman_id":"ce1c5bb4-6035-4621-8327-b2f7d11df21a"},{"name":"Get Notice's Confirmation Document","id":"4079cc83-fa12-40db-b6fd-0308a9ee6f11","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://portal.priornotify.com/notices/:noticeId/pn-confirmation-document","description":"<p>Request that returns notice's confirmation document in PDF format.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"Here must be your generated API Key"}]},"isInherited":true,"source":{"_postman_id":"a4166285-bd00-4d27-8625-5acc0663e2f1","id":"a4166285-bd00-4d27-8625-5acc0663e2f1","name":"PriorNotify API Documentation","type":"collection"}},"urlObject":{"protocol":"https","path":["notices",":noticeId","pn-confirmation-document"],"host":["portal","priornotify","com"],"query":[],"variable":[{"id":"2eadedf9-9d9f-47f0-8c37-293d70cd1776","type":"any","value":null,"key":"noticeId"}]}},"response":[{"id":"40258bc1-2bd6-4c68-867f-66ebce8a7d39","name":"Get Notice's Confirmation Document","originalRequest":{"method":"GET","header":[],"url":"https://portal.priornotify.com/notices/42395/pn-confirmation-document"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":"response.pdf"}],"_postman_id":"4079cc83-fa12-40db-b6fd-0308a9ee6f11"},{"name":"Add/Update Product Packaging for Order (JSON)","id":"2b77b8ae-e49f-4bf1-8e40-a1b4f90ce9cc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"default_packages\",\n    \"value\": {\n        \"quantity\":\"quantity\",\n        \"packages\": [{\"type\":\"packaging type\",\"number\":\"packaging number\"},{\"type\":\"packaging type\",\"number\":\"packaging number\"},{\"type\":\"packaging type\",\"number\":\"packaging number\"},{\"type\":\"packaging type\",\"number\":\"packaging number\"},{\"type\":\"packaging type\",\"number\":\"packaging number\"}]\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://portal.priornotify.com/notices/orderId/settings","description":"<p><strong>Please refer to Step 3 in our User Interface.</strong></p>\n<p>The “First Layer” refers to the most exterior layer of the packaging used for the order.</p>\n<p>The name used for the “Packaging Type” must be exactly the same as one of the options shown in Step 3 in our User Interface.</p>\n<p>The number used for the “Number of Packaging” must be a natural number (greater than zero, no decimal numbers).</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"Here must be your generated API Key"}]},"isInherited":true,"source":{"_postman_id":"a4166285-bd00-4d27-8625-5acc0663e2f1","id":"a4166285-bd00-4d27-8625-5acc0663e2f1","name":"PriorNotify API Documentation","type":"collection"}},"urlObject":{"protocol":"https","path":["notices","orderId","settings"],"host":["portal","priornotify","com"],"query":[],"variable":[]}},"response":[{"id":"01da1a5f-92fc-4ab0-8f65-aa9679c64dde","name":"Add/Update Product Packaging for Order","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"default_packages\",\n    \"value\": {\n        \"quantity\":1,\n        \"packages\": [{\"type\":\"Bin\",\"number\":1},{\"type\":\"\",\"number\":0},{\"type\":\"\",\"number\":0},{\"type\":\"\",\"number\":0},{\"type\":\"\",\"number\":0}]\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://portal.priornotify.com/notices/4444/settings"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"2b77b8ae-e49f-4bf1-8e40-a1b4f90ce9cc"},{"name":"Submit Existing Orders (by Order ID)","id":"d9c3df45-3454-4a07-ab28-ecddb967a0f3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[],"url":"https://portal.priornotify.com/notices/orderId/submit","description":"<p>This route allows to submit order by Identifier. Just input order Identifier to URL.</p>\n","urlObject":{"protocol":"https","path":["notices","orderId","submit"],"host":["portal","priornotify","com"],"query":[],"variable":[]}},"response":[{"id":"7b151b68-3244-4afd-bbd3-8c9a9fb3ae71","name":"https://portal.priornotify.com//notices/noticeId/submit","originalRequest":{"method":"POST","header":[],"url":"https://portal.priornotify.com/notices/4444/submit"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"data\": [\n            {\n                \"noticeId\": 4444,\n                \"isActive\": true\n            }\n        ]\n    }\n}"}],"_postman_id":"d9c3df45-3454-4a07-ab28-ecddb967a0f3"}],"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"Here must be your generated API Key"}]}},"event":[{"listen":"prerequest","script":{"id":"72cb8499-38ae-43d0-a7f2-2a1f46670326","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"004fb170-2063-4176-8b1f-f39b6098ea47","type":"text/javascript","exec":[""]}}],"variable":[{"id":"3712e818-5b8c-49eb-8ce2-89f41ef17c3b","key":"auth_key","value":"Authorization"},{"id":"2178ab8a-89c6-493f-afcc-9d28e0a9cffa","key":"AuthHeader","value":"Here must be your generated API Key"}]}