{"info":{"_postman_id":"215116bc-8e64-49f0-92d1-3a5428c708f5","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><strong>-1</strong></p>\n<p><strong>For submissions using the \"Submit\" endpoints (\"Bulk Submit Orders\", and \"Submit Existing Orders (by Order ID)\"):</strong></p>\n<p>The FDA system used with this option requires multifactor authentication. The FDA system emails the security code to the user'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 user'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<p><strong>-2</strong></p>\n<p><strong>For submissions using our \"Submit Automatically\" option:</strong></p>\n<p>The Multifactor Authentication security code is not required when you use this option.</p>\n<p>However, you should make sure your account in our app is secured, including by using Multifactor Authentication to secure access to your account in our app and by rotating and updating your password and API key in our app frequently.</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":"215116bc-8e64-49f0-92d1-3a5428c708f5","publishedId":"Uz5MFE8R","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"293A5F"},"publishDate":"2022-06-10T11:53:13.000Z"},"item":[{"name":"Create Orders (CSV)","id":"ba963d7c-605b-441b-9f23-91db940e1e69","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. 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":"215116bc-8e64-49f0-92d1-3a5428c708f5","id":"215116bc-8e64-49f0-92d1-3a5428c708f5","name":"PriorNotify API Documentation","type":"collection"}},"urlObject":{"protocol":"https","path":["notices","import-csv"],"host":["portal","priornotify","com"],"query":[],"variable":[]}},"response":[{"id":"d23d59cd-5b33-457e-a034-9e618831a844","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":"ba963d7c-605b-441b-9f23-91db940e1e69"},{"name":"Create Orders (JSON)","id":"f5b5f8ff-35e0-4296-94ac-ea0b1ed2d5cb","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":"215116bc-8e64-49f0-92d1-3a5428c708f5","id":"215116bc-8e64-49f0-92d1-3a5428c708f5","name":"PriorNotify API Documentation","type":"collection"}},"urlObject":{"protocol":"https","path":["notices","import-json"],"host":["portal","priornotify","com"],"query":[],"variable":[]}},"response":[{"id":"63aeefd7-0e94-4113-aa13-33048d72a314","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":"f5b5f8ff-35e0-4296-94ac-ea0b1ed2d5cb"},{"name":"Bulk Submit Orders","id":"1442c99c-3bb2-4f98-86da-7e83be6cbcd5","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":"215116bc-8e64-49f0-92d1-3a5428c708f5","id":"215116bc-8e64-49f0-92d1-3a5428c708f5","name":"PriorNotify API Documentation","type":"collection"}},"urlObject":{"protocol":"https","path":["notices","bulk-submit"],"host":["portal","priornotify","com"],"query":[],"variable":[]}},"response":[{"id":"b37c79aa-6a49-42f3-ade4-bcddf8ac98e4","name":"Bulk Submit Notices","originalRequest":{"method":"POST","header":[]},"_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":"1442c99c-3bb2-4f98-86da-7e83be6cbcd5"},{"name":"Create Recipients (CSV)","id":"61e7ce9f-9b30-45f0-99bb-eced6771662f","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>StartFragment</p>\n<p>This endpoint requires CSV files in a specific format with UTF-8 encoding. 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<p>EndFragment</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":"215116bc-8e64-49f0-92d1-3a5428c708f5","id":"215116bc-8e64-49f0-92d1-3a5428c708f5","name":"PriorNotify API Documentation","type":"collection"}},"urlObject":{"protocol":"https","path":["recipients","import-csv"],"host":["portal","priornotify","com"],"query":[],"variable":[]}},"response":[{"id":"ad6bb5b2-0bae-4919-ae0a-326270986d48","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":"5f7712af-8b51-4e94-b360-259a9cd9ba58","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":null,"header":null,"cookie":[],"responseTime":null,"body":"Api key is invalid"}],"_postman_id":"61e7ce9f-9b30-45f0-99bb-eced6771662f"},{"name":"Create Recipients (JSON)","id":"5c183fc1-f33c-4703-83a5-ad5d4c701d85","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":"215116bc-8e64-49f0-92d1-3a5428c708f5","id":"215116bc-8e64-49f0-92d1-3a5428c708f5","name":"PriorNotify API Documentation","type":"collection"}},"urlObject":{"protocol":"https","path":["recipients","import-json"],"host":["portal","priornotify","com"],"query":[],"variable":[]}},"response":[{"id":"901497ff-2db5-433d-b9ee-ba66a3cf6867","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":"5c183fc1-f33c-4703-83a5-ad5d4c701d85"},{"name":"Create Products (CSV)","id":"ed452d10-fb8d-4254-a19a-0aa7ae5495ff","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. 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":"215116bc-8e64-49f0-92d1-3a5428c708f5","id":"215116bc-8e64-49f0-92d1-3a5428c708f5","name":"PriorNotify API Documentation","type":"collection"}},"urlObject":{"protocol":"https","path":["products","import.csv"],"host":["portal","priornotify","com"],"query":[],"variable":[]}},"response":[{"id":"224aa895-5668-4dab-833e-b45a2cd78d78","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":"ed452d10-fb8d-4254-a19a-0aa7ae5495ff"},{"name":"Get All Products","id":"11107c32-7bae-48d0-a2f1-e997595db58b","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":"215116bc-8e64-49f0-92d1-3a5428c708f5","id":"215116bc-8e64-49f0-92d1-3a5428c708f5","name":"PriorNotify API Documentation","type":"collection"}},"urlObject":{"protocol":"https","path":["products"],"host":["portal","priornotify","com"],"query":[],"variable":[]}},"response":[{"id":"59b8efe7-b461-4bc7-b33c-d1565f226a37","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":"11107c32-7bae-48d0-a2f1-e997595db58b"},{"name":"Get Product by Identifier","id":"1a3d0ffb-34f4-4220-8574-ab14a5b160f2","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":"e5ad71a4-01c6-4741-8aec-36443c9c68f5","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":"1a3d0ffb-34f4-4220-8574-ab14a5b160f2"},{"name":"Update Product by Identifier","id":"db78ce93-9bc8-4649-a72c-4ae2216c6c52","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":"d5381a22-d3bb-4e72-af57-dfaf92dbd231","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":"db78ce93-9bc8-4649-a72c-4ae2216c6c52"},{"name":"Bulk Update Products by Identifier","id":"634d72a6-387b-4d82-99ee-7c3d0d6ac2d4","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":"215116bc-8e64-49f0-92d1-3a5428c708f5","id":"215116bc-8e64-49f0-92d1-3a5428c708f5","name":"PriorNotify API Documentation","type":"collection"}},"urlObject":{"protocol":"https","path":["products","bulk-update"],"host":["portal","priornotify","com"],"query":[],"variable":[]}},"response":[{"id":"ac04ca5e-74a8-4b8e-8a0c-7eecd7c994ed","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":"634d72a6-387b-4d82-99ee-7c3d0d6ac2d4"},{"name":"Get All Orders/Notices (JSON)","id":"946cb36d-aa08-4b35-a56a-34b6bbff9585","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":"215116bc-8e64-49f0-92d1-3a5428c708f5","id":"215116bc-8e64-49f0-92d1-3a5428c708f5","name":"PriorNotify API Documentation","type":"collection"}},"urlObject":{"protocol":"https","path":["notices","export-json"],"host":["portal","priornotify","com"],"query":[],"variable":[]}},"response":[{"id":"081db351-4473-4a8d-85d2-02b346d0d237","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":"946cb36d-aa08-4b35-a56a-34b6bbff9585"},{"name":"Get All Orders/Notices (CSV)","id":"e866537b-6cfd-4e02-8157-c60372ac97bf","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":"215116bc-8e64-49f0-92d1-3a5428c708f5","id":"215116bc-8e64-49f0-92d1-3a5428c708f5","name":"PriorNotify API Documentation","type":"collection"}},"urlObject":{"protocol":"https","path":["notices","export-json"],"host":["portal","priornotify","com"],"query":[],"variable":[]}},"response":[{"id":"bb07321e-4945-423f-b142-2fb37211c042","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":"e866537b-6cfd-4e02-8157-c60372ac97bf"},{"name":"Get Notice's Web Entry Document","id":"0afda3ec-62c7-40a0-b04c-57b6303619cb","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":"215116bc-8e64-49f0-92d1-3a5428c708f5","id":"215116bc-8e64-49f0-92d1-3a5428c708f5","name":"PriorNotify API Documentation","type":"collection"}},"urlObject":{"protocol":"https","path":["notices",":noticeId","web-entry-document"],"host":["portal","priornotify","com"],"query":[],"variable":[{"type":"any","value":null,"key":"noticeId"}]}},"response":[{"id":"5d1a590a-c061-4c18-ba45-ed4cbb96333d","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":null,"header":null,"cookie":[],"responseTime":null,"body":"response.pdf"}],"_postman_id":"0afda3ec-62c7-40a0-b04c-57b6303619cb"},{"name":"Get Notice's Confirmation Document","id":"5c620926-d909-43f4-9ea4-60817a450472","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":"215116bc-8e64-49f0-92d1-3a5428c708f5","id":"215116bc-8e64-49f0-92d1-3a5428c708f5","name":"PriorNotify API Documentation","type":"collection"}},"urlObject":{"protocol":"https","path":["notices",":noticeId","pn-confirmation-document"],"host":["portal","priornotify","com"],"query":[],"variable":[{"type":"any","value":null,"key":"noticeId"}]}},"response":[{"id":"138d2a4d-a865-4c73-8ae1-161d6b4d7ca6","name":"Get Notice's Confirmation Document","originalRequest":{"method":"GET","header":[],"url":"https://portal.priornotify.com/notices/42395/pn-confirmation-document"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"response.pdf"}],"_postman_id":"5c620926-d909-43f4-9ea4-60817a450472"},{"name":"Add/Update Product Packaging for Order (JSON)","id":"f92a15c0-9aba-4578-b2f1-591eb02bc11e","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","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"Here must be your generated API Key"}]},"isInherited":true,"source":{"_postman_id":"215116bc-8e64-49f0-92d1-3a5428c708f5","id":"215116bc-8e64-49f0-92d1-3a5428c708f5","name":"PriorNotify API Documentation","type":"collection"}},"urlObject":{"protocol":"https","path":["notices","orderId","settings"],"host":["portal","priornotify","com"],"query":[],"variable":[]}},"response":[{"id":"bbcdc4fb-81ce-41cf-9003-0eae32e00c4b","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":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"f92a15c0-9aba-4578-b2f1-591eb02bc11e"},{"name":"Submit Existing Orders (by Order ID)","id":"b4564e84-1b1a-488b-896b-488247a65df8","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":"3917fe9c-b4b1-4b9b-8220-93a24e1df865","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":"b4564e84-1b1a-488b-896b-488247a65df8"}],"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":[{"key":"auth_key","value":"Authorization"},{"key":"AuthHeader","value":"Here must be your generated API Key"}]}