{"info":{"_postman_id":"6d23f17c-77ff-4680-81e7-7d2f5b8601c3","name":"User","description":"<html><head></head><body><h3 id=\"overview\">Overview</h3>\n<p>This collection contains endpoints used by <strong>Users</strong> to manage the <strong>shipping order lifecycle</strong> (create, track, cancel, return, ETA change, payment retry, charge calculation) and to run <strong>admin configuration lookups</strong> (country/state/shop/shop-location lists).</p>\n<hr>\n<h3 id=\"base-url--variables\">Base URL &amp; variables</h3>\n<p>This collection is parameterized using Postman variables.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Variable</th>\n<th>Purpose</th>\n<th>Example</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>https://staginglogistic.legallyng.com</code></td>\n<td>Base URL for the API host</td>\n<td><code>https://api.your-domain.com</code></td>\n</tr>\n<tr>\n<td><code>eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJfaWQiOiI2NzA2NTJkMmU1ZTNlY2ZiYzAwZDA5NGIiLCJpYXQiOjE3NDY0NTI4NDcsImV4cCI6ODY0MDAxNzQ2MzY2NDQ3fQ.w88QYHoNSU2mcaQRXv05ts_TDCdoZxQz8SBO8jagCnw</code></td>\n<td>Bearer token used by user shipping endpoints</td>\n<td><code>eyJhbGciOi...</code></td>\n</tr>\n</tbody>\n</table>\n</div><blockquote>\n<p>Tip: Set <code>URL</code> and <code>TOKEN</code> in an Environment (recommended) or as Collection variables. </p>\n</blockquote>\n<hr>\n<h3 id=\"authentication\">Authentication</h3>\n<p>The collection is configured with <strong>Bearer Token</strong> authentication at collection level:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-http\">Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJfaWQiOiI2NzA2NTJkMmU1ZTNlY2ZiYzAwZDA5NGIiLCJpYXQiOjE3NDY0NTI4NDcsImV4cCI6ODY0MDAxNzQ2MzY2NDQ3fQ.w88QYHoNSU2mcaQRXv05ts_TDCdoZxQz8SBO8jagCnw\n\n</code></pre>\n<p>Some endpoints may require <strong>Basic</strong> authentication depending on your deployment. If so, override auth at the request level.</p>\n<hr>\n<h3 id=\"common-headers\">Common headers</h3>\n<p>Most requests are JSON <code>POST</code> requests.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Header</th>\n<th>Required</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Authorization</code></td>\n<td>Usually</td>\n<td><code>Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJfaWQiOiI2NzA2NTJkMmU1ZTNlY2ZiYzAwZDA5NGIiLCJpYXQiOjE3NDY0NTI4NDcsImV4cCI6ODY0MDAxNzQ2MzY2NDQ3fQ.w88QYHoNSU2mcaQRXv05ts_TDCdoZxQz8SBO8jagCnw</code> for <code>/api/shipping-order/\\\\\\\\\\\\\\\\*</code>. Some <code>/admin/\\\\\\\\\\\\\\\\*</code> endpoints may use Basic auth.</td>\n</tr>\n<tr>\n<td><code>Content-Type</code></td>\n<td>Yes</td>\n<td><code>application/json</code></td>\n</tr>\n<tr>\n<td><code>Accept</code></td>\n<td>Recommended</td>\n<td><code>application/json</code></td>\n</tr>\n</tbody>\n</table>\n</div><hr>\n<h3 id=\"common-request-body-patterns\">Common request body patterns</h3>\n<p>Many list/config endpoints accept paging/search fields. If your backend supports them, standardize on:</p>\n<hr>\n<h3 id=\"notes\">Notes</h3>\n<ul>\n<li><p>All endpoints in this collection are <code>POST</code> and accept JSON bodies unless stated otherwise.</p>\n</li>\n<li><p>Save Examples for success (<code>200</code>) and common error cases (<code>400/401/403/422</code>) to improve documentation and mocks.</p>\n</li>\n</ul>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"48878402","collectionId":"6d23f17c-77ff-4680-81e7-7d2f5b8601c3","publishedId":"2sBXihrZ7L","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"},"publishDate":"2026-03-20T06:35:11.000Z"},"item":[{"name":"User Login","event":[{"listen":"test","script":{"exec":["var d = pm.response.json();\r","pm.collectionVariables.set('TOKEN', d?.data?.accessToken);\r",""],"type":"text/javascript","packages":{},"requests":{},"id":"9520da12-f15b-4896-ad69-f80fa5804e7d"}},{"listen":"prerequest","script":{"exec":[""],"type":"text/javascript","packages":{},"requests":{},"id":"02772ea8-cc7b-4c82-9b03-159bc8a64282"}}],"id":"4a8d63dc-1438-4e05-b361-a18a8156ae41","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"email\": \"merchant1@yopmail.com\",\r\n    \"password\": \"12345678\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://staginglogistic.legallyng.com/admin/auth/login/merchant","description":"<p>Retrieves the list of countries available for admin configuration (e.g., dropdown population and input validation).</p>\n<ul>\n<li><p><strong>Method</strong>: <code>POST</code></p>\n</li>\n<li><p><strong>Endpoint</strong>: <code>https://staginglogistic.legallyng.com/admin/auth/login/merchant</code></p>\n</li>\n</ul>\n<h2 id=\"headers\">Headers</h2>\n<ul>\n<li><p><code>Content-Type: application/json</code></p>\n</li>\n<li><p><code>Accept: application/json</code></p>\n</li>\n</ul>\n<h2 id=\"parameters\">Parameters</h2>\n<ul>\n<li><p><code>email</code> (string, <strong>required</strong>)</p>\n</li>\n<li><p><code>password</code> (string, <strong>required</strong>)</p>\n</li>\n</ul>\n","urlObject":{"path":["admin","auth","login","merchant"],"host":["https://staginglogistic.legallyng.com"],"query":[],"variable":[]}},"response":[{"id":"550e5daa-8f01-4b7c-9e2a-70247d3999fc","name":"200 OK (example)","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"email\": \"merchant1@yopmail.com\",\r\n    \"password\": \"12345678\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://staginglogistic.legallyng.com/admin/auth/login/merchant"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Server","value":"nginx/1.24.0 (Ubuntu)"},{"key":"Date","value":"Thu, 19 Mar 2026 10:29:16 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"562"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"W/\"232-cLogRPV3KN7vz6hzsIiEYqC+aUE\""},{"key":"X-Powered-By","value":"Express"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": \"0000\",\n    \"message\": \"Login successful!\",\n    \"data\": {\n        \"accessToken\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJfaWQiOiI2OThmMGNmNzJkNDFjNmNlNWRiMGE4OTgiLCJpYXQiOjE3NzM5MTYxNTYsImV4cCI6ODY0MDAxNzczODI5NzU2fQ.4D9CF70xW01mG0bnmn4TWWYakitW2Hm1orlq_WZ-4m0\",\n        \"id\": \"698f0cf72d41c6ce5db0a898\",\n        \"firstName\": \"Dev\",\n        \"lastName\": \"Merchant\",\n        \"email\": \"merchant1@yopmail.com\",\n        \"isEmailVerified\": true,\n        \"profileImageUrl\": \"https://legally-logistic-backend-staging.s3.us-west-1.amazonaws.com/default/profile.svg\",\n        \"status\": {\n            \"key\": \"APPROVED\",\n            \"label\": \"Approved\"\n        },\n        \"reason\": \"\",\n        \"isMerchant\": true\n    }\n}"}],"_postman_id":"4a8d63dc-1438-4e05-b361-a18a8156ae41"},{"name":"Country List","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"requests":{},"id":"96fbef09-2f72-4e55-b69b-131e9dd9b6ef"}},{"listen":"prerequest","script":{"exec":[""],"type":"text/javascript","packages":{},"requests":{},"id":"f31aa6c9-98ba-4be5-a2ad-43f0cbc42710"}}],"id":"932fc665-63cc-409d-90ad-41a0323aee79","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[],"url":"https://staginglogistic.legallyng.com/admin/config/country/list","description":"<p>Retrieves the list of countries available for admin configuration (e.g., dropdown population and input validation).</p>\n<ul>\n<li><p><strong>Method</strong>: <code>POST</code></p>\n</li>\n<li><p><strong>Endpoint</strong>: <code>https://staginglogistic.legallyng.com/admin/config/country/list</code></p>\n</li>\n</ul>\n<h2 id=\"headers\">Headers</h2>\n<ul>\n<li><p><code>Content-Type: application/json</code></p>\n</li>\n<li><p><code>Accept: application/json</code></p>\n</li>\n</ul>\n","urlObject":{"path":["admin","config","country","list"],"host":["https://staginglogistic.legallyng.com"],"query":[],"variable":[]}},"response":[{"id":"4041dea8-9a0e-42c5-8417-265cba44d956","name":"200 OK (example)","originalRequest":{"method":"POST","header":[],"url":"https://staginglogistic.legallyng.com/admin/config/country/list"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"X-Powered-By","value":"Express"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"26669"},{"key":"ETag","value":"W/\"682d-IvqFQEMa0+aWW/W3pj1dP9CM9sE\""},{"key":"Date","value":"Thu, 19 Mar 2026 06:10:41 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": \"0000\",\n    \"message\": \"Data found\",\n    \"data\": {\n        \"countries\": [\n            {\n                \"id\": \"6891cae07adb781182431e25\",\n                \"shortName\": \"AF\",\n                \"fullName\": \"Afghanistan\",\n                \"phoneCode\": \"93\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431e00\",\n                \"shortName\": \"AL\",\n                \"fullName\": \"Albania\",\n                \"phoneCode\": \"355\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431dc9\",\n                \"shortName\": \"DZ\",\n                \"fullName\": \"Algeria\",\n                \"phoneCode\": \"213\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431dc4\",\n                \"shortName\": \"AS\",\n                \"fullName\": \"American Samoa\",\n                \"phoneCode\": \"1684\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431dbc\",\n                \"shortName\": \"AD\",\n                \"fullName\": \"Andorra\",\n                \"phoneCode\": \"376\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431da9\",\n                \"shortName\": \"AO\",\n                \"fullName\": \"Angola\",\n                \"phoneCode\": \"244\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431da7\",\n                \"shortName\": \"AI\",\n                \"fullName\": \"Anguilla\",\n                \"phoneCode\": \"1264\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431d9f\",\n                \"shortName\": \"AQ\",\n                \"fullName\": \"Antarctica\",\n                \"phoneCode\": \"0\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431d97\",\n                \"shortName\": \"AG\",\n                \"fullName\": \"Antigua And Barbuda\",\n                \"phoneCode\": \"1268\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431d7e\",\n                \"shortName\": \"AR\",\n                \"fullName\": \"Argentina\",\n                \"phoneCode\": \"54\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431d71\",\n                \"shortName\": \"AM\",\n                \"fullName\": \"Armenia\",\n                \"phoneCode\": \"374\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431d6f\",\n                \"shortName\": \"AW\",\n                \"fullName\": \"Aruba\",\n                \"phoneCode\": \"297\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431d4e\",\n                \"shortName\": \"AU\",\n                \"fullName\": \"Australia\",\n                \"phoneCode\": \"61\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431d3b\",\n                \"shortName\": \"AT\",\n                \"fullName\": \"Austria\",\n                \"phoneCode\": \"43\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431d2b\",\n                \"shortName\": \"AZ\",\n                \"fullName\": \"Azerbaijan\",\n                \"phoneCode\": \"994\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431d19\",\n                \"shortName\": \"BS\",\n                \"fullName\": \"Bahamas The\",\n                \"phoneCode\": \"1242\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431d0e\",\n                \"shortName\": \"BH\",\n                \"fullName\": \"Bahrain\",\n                \"phoneCode\": \"973\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431ccc\",\n                \"shortName\": \"BD\",\n                \"fullName\": \"Bangladesh\",\n                \"phoneCode\": \"880\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431cc0\",\n                \"shortName\": \"BB\",\n                \"fullName\": \"Barbados\",\n                \"phoneCode\": \"1246\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431cb6\",\n                \"shortName\": \"BY\",\n                \"fullName\": \"Belarus\",\n                \"phoneCode\": \"375\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431ca4\",\n                \"shortName\": \"BE\",\n                \"fullName\": \"Belgium\",\n                \"phoneCode\": \"32\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431c9d\",\n                \"shortName\": \"BZ\",\n                \"fullName\": \"Belize\",\n                \"phoneCode\": \"501\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431c90\",\n                \"shortName\": \"BJ\",\n                \"fullName\": \"Benin\",\n                \"phoneCode\": \"229\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431c8d\",\n                \"shortName\": \"BM\",\n                \"fullName\": \"Bermuda\",\n                \"phoneCode\": \"1441\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431c7a\",\n                \"shortName\": \"BT\",\n                \"fullName\": \"Bhutan\",\n                \"phoneCode\": \"975\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431c70\",\n                \"shortName\": \"BO\",\n                \"fullName\": \"Bolivia\",\n                \"phoneCode\": \"591\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431c6d\",\n                \"shortName\": \"BA\",\n                \"fullName\": \"Bosnia and Herzegovina\",\n                \"phoneCode\": \"387\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431c55\",\n                \"shortName\": \"BW\",\n                \"fullName\": \"Botswana\",\n                \"phoneCode\": \"267\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431c53\",\n                \"shortName\": \"BV\",\n                \"fullName\": \"Bouvet Island\",\n                \"phoneCode\": \"0\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431c36\",\n                \"shortName\": \"BR\",\n                \"fullName\": \"Brazil\",\n                \"phoneCode\": \"55\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431c34\",\n                \"shortName\": \"IO\",\n                \"fullName\": \"British Indian Ocean Territory\",\n                \"phoneCode\": \"246\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431c2f\",\n                \"shortName\": \"BN\",\n                \"fullName\": \"Brunei\",\n                \"phoneCode\": \"673\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431c10\",\n                \"shortName\": \"BG\",\n                \"fullName\": \"Bulgaria\",\n                \"phoneCode\": \"359\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431be8\",\n                \"shortName\": \"BF\",\n                \"fullName\": \"Burkina Faso\",\n                \"phoneCode\": \"226\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431bd8\",\n                \"shortName\": \"BI\",\n                \"fullName\": \"Burundi\",\n                \"phoneCode\": \"257\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431bbf\",\n                \"shortName\": \"KH\",\n                \"fullName\": \"Cambodia\",\n                \"phoneCode\": \"855\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431bb4\",\n                \"shortName\": \"CM\",\n                \"fullName\": \"Cameroon\",\n                \"phoneCode\": \"237\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431ba6\",\n                \"shortName\": \"CA\",\n                \"fullName\": \"Canada\",\n                \"phoneCode\": \"1\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431b9c\",\n                \"shortName\": \"CV\",\n                \"fullName\": \"Cape Verde\",\n                \"phoneCode\": \"238\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431b9a\",\n                \"shortName\": \"KY\",\n                \"fullName\": \"Cayman Islands\",\n                \"phoneCode\": \"1345\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431b88\",\n                \"shortName\": \"CF\",\n                \"fullName\": \"Central African Republic\",\n                \"phoneCode\": \"236\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431b79\",\n                \"shortName\": \"TD\",\n                \"fullName\": \"Chad\",\n                \"phoneCode\": \"235\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431b6a\",\n                \"shortName\": \"CL\",\n                \"fullName\": \"Chile\",\n                \"phoneCode\": \"56\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431b47\",\n                \"shortName\": \"CN\",\n                \"fullName\": \"China\",\n                \"phoneCode\": \"86\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431b45\",\n                \"shortName\": \"CX\",\n                \"fullName\": \"Christmas Island\",\n                \"phoneCode\": \"61\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431b43\",\n                \"shortName\": \"CC\",\n                \"fullName\": \"Cocos (Keeling) Islands\",\n                \"phoneCode\": \"672\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431b21\",\n                \"shortName\": \"CO\",\n                \"fullName\": \"Colombia\",\n                \"phoneCode\": \"57\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431b1d\",\n                \"shortName\": \"KM\",\n                \"fullName\": \"Comoros\",\n                \"phoneCode\": \"269\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431afa\",\n                \"shortName\": \"CK\",\n                \"fullName\": \"Cook Islands\",\n                \"phoneCode\": \"682\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431af2\",\n                \"shortName\": \"CR\",\n                \"fullName\": \"Costa Rica\",\n                \"phoneCode\": \"506\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431add\",\n                \"shortName\": \"CI\",\n                \"fullName\": \"Cote D'Ivoire (Ivory Coast)\",\n                \"phoneCode\": \"225\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431ac5\",\n                \"shortName\": \"HR\",\n                \"fullName\": \"Croatia (Hrvatska)\",\n                \"phoneCode\": \"385\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431ab4\",\n                \"shortName\": \"CU\",\n                \"fullName\": \"Cuba\",\n                \"phoneCode\": \"53\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431aae\",\n                \"shortName\": \"CY\",\n                \"fullName\": \"Cyprus\",\n                \"phoneCode\": \"357\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431a92\",\n                \"shortName\": \"CZ\",\n                \"fullName\": \"Czech Republic\",\n                \"phoneCode\": \"420\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431b06\",\n                \"shortName\": \"CD\",\n                \"fullName\": \"Democratic Republic Of The Congo\",\n                \"phoneCode\": \"242\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431a7a\",\n                \"shortName\": \"DK\",\n                \"fullName\": \"Denmark\",\n                \"phoneCode\": \"45\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431a74\",\n                \"shortName\": \"DJ\",\n                \"fullName\": \"Djibouti\",\n                \"phoneCode\": \"253\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431a69\",\n                \"shortName\": \"DM\",\n                \"fullName\": \"Dominica\",\n                \"phoneCode\": \"1767\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431a4a\",\n                \"shortName\": \"DO\",\n                \"fullName\": \"Dominican Republic\",\n                \"phoneCode\": \"1809\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431a3c\",\n                \"shortName\": \"TP\",\n                \"fullName\": \"East Timor\",\n                \"phoneCode\": \"670\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431a25\",\n                \"shortName\": \"EC\",\n                \"fullName\": \"Ecuador\",\n                \"phoneCode\": \"593\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431a03\",\n                \"shortName\": \"EG\",\n                \"fullName\": \"Egypt\",\n                \"phoneCode\": \"20\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb7811824319f4\",\n                \"shortName\": \"SV\",\n                \"fullName\": \"El Salvador\",\n                \"phoneCode\": \"503\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb7811824319ec\",\n                \"shortName\": \"GQ\",\n                \"fullName\": \"Equatorial Guinea\",\n                \"phoneCode\": \"240\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb7811824319e5\",\n                \"shortName\": \"ER\",\n                \"fullName\": \"Eritrea\",\n                \"phoneCode\": \"291\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb7811824319d5\",\n                \"shortName\": \"EE\",\n                \"fullName\": \"Estonia\",\n                \"phoneCode\": \"372\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb7811824319c7\",\n                \"shortName\": \"ET\",\n                \"fullName\": \"Ethiopia\",\n                \"phoneCode\": \"251\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb7811824319c3\",\n                \"shortName\": \"XA\",\n                \"fullName\": \"External Territories of Australia\",\n                \"phoneCode\": \"61\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb7811824319c0\",\n                \"shortName\": \"FK\",\n                \"fullName\": \"Falkland Islands\",\n                \"phoneCode\": \"500\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb7811824319b6\",\n                \"shortName\": \"FO\",\n                \"fullName\": \"Faroe Islands\",\n                \"phoneCode\": \"298\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb7811824319b0\",\n                \"shortName\": \"FJ\",\n                \"fullName\": \"Fiji Islands\",\n                \"phoneCode\": \"679\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431991\",\n                \"shortName\": \"FI\",\n                \"fullName\": \"Finland\",\n                \"phoneCode\": \"358\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb78118243190a\",\n                \"shortName\": \"FR\",\n                \"fullName\": \"France\",\n                \"phoneCode\": \"33\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431907\",\n                \"shortName\": \"GF\",\n                \"fullName\": \"French Guiana\",\n                \"phoneCode\": \"594\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431901\",\n                \"shortName\": \"PF\",\n                \"fullName\": \"French Polynesia\",\n                \"phoneCode\": \"689\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb7811824318fd\",\n                \"shortName\": \"TF\",\n                \"fullName\": \"French Southern Territories\",\n                \"phoneCode\": \"0\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb7811824318f3\",\n                \"shortName\": \"GA\",\n                \"fullName\": \"Gabon\",\n                \"phoneCode\": \"241\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb7811824318ea\",\n                \"shortName\": \"GM\",\n                \"fullName\": \"Gambia The\",\n                \"phoneCode\": \"220\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb7811824318dd\",\n                \"shortName\": \"GE\",\n                \"fullName\": \"Georgia\",\n                \"phoneCode\": \"995\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb7811824318ad\",\n                \"shortName\": \"DE\",\n                \"fullName\": \"Germany\",\n                \"phoneCode\": \"49\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb7811824318a2\",\n                \"shortName\": \"GH\",\n                \"fullName\": \"Ghana\",\n                \"phoneCode\": \"233\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb7811824318a0\",\n                \"shortName\": \"GI\",\n                \"fullName\": \"Gibraltar\",\n                \"phoneCode\": \"350\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431861\",\n                \"shortName\": \"GR\",\n                \"fullName\": \"Greece\",\n                \"phoneCode\": \"30\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb78118243184d\",\n                \"shortName\": \"GL\",\n                \"fullName\": \"Greenland\",\n                \"phoneCode\": \"299\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431845\",\n                \"shortName\": \"GD\",\n                \"fullName\": \"Grenada\",\n                \"phoneCode\": \"1473\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb78118243183d\",\n                \"shortName\": \"GP\",\n                \"fullName\": \"Guadeloupe\",\n                \"phoneCode\": \"590\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb78118243182c\",\n                \"shortName\": \"GU\",\n                \"fullName\": \"Guam\",\n                \"phoneCode\": \"1671\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431815\",\n                \"shortName\": \"GT\",\n                \"fullName\": \"Guatemala\",\n                \"phoneCode\": \"502\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431808\",\n                \"shortName\": \"XU\",\n                \"fullName\": \"Guernsey and Alderney\",\n                \"phoneCode\": \"44\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb7811824317e7\",\n                \"shortName\": \"GN\",\n                \"fullName\": \"Guinea\",\n                \"phoneCode\": \"224\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb7811824317de\",\n                \"shortName\": \"GW\",\n                \"fullName\": \"Guinea-Bissau\",\n                \"phoneCode\": \"245\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb7811824317d3\",\n                \"shortName\": \"GY\",\n                \"fullName\": \"Guyana\",\n                \"phoneCode\": \"592\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb7811824317c9\",\n                \"shortName\": \"HT\",\n                \"fullName\": \"Haiti\",\n                \"phoneCode\": \"509\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb7811824317c7\",\n                \"shortName\": \"HM\",\n                \"fullName\": \"Heard and McDonald Islands\",\n                \"phoneCode\": \"0\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb7811824317b3\",\n                \"shortName\": \"HN\",\n                \"fullName\": \"Honduras\",\n                \"phoneCode\": \"504\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb7811824317b1\",\n                \"shortName\": \"HK\",\n                \"fullName\": \"Hong Kong S.A.R.\",\n                \"phoneCode\": \"852\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb78118243179c\",\n                \"shortName\": \"HU\",\n                \"fullName\": \"Hungary\",\n                \"phoneCode\": \"36\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431792\",\n                \"shortName\": \"IS\",\n                \"fullName\": \"Iceland\",\n                \"phoneCode\": \"354\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431768\",\n                \"shortName\": \"IN\",\n                \"fullName\": \"India\",\n                \"phoneCode\": \"91\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431745\",\n                \"shortName\": \"ID\",\n                \"fullName\": \"Indonesia\",\n                \"phoneCode\": \"62\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431727\",\n                \"shortName\": \"IR\",\n                \"fullName\": \"Iran\",\n                \"phoneCode\": \"98\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431712\",\n                \"shortName\": \"IQ\",\n                \"fullName\": \"Iraq\",\n                \"phoneCode\": \"964\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb7811824316f2\",\n                \"shortName\": \"IE\",\n                \"fullName\": \"Ireland\",\n                \"phoneCode\": \"353\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb7811824316db\",\n                \"shortName\": \"IL\",\n                \"fullName\": \"Israel\",\n                \"phoneCode\": \"972\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431676\",\n                \"shortName\": \"IT\",\n                \"fullName\": \"Italy\",\n                \"phoneCode\": \"39\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431666\",\n                \"shortName\": \"JM\",\n                \"fullName\": \"Jamaica\",\n                \"phoneCode\": \"1876\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431635\",\n                \"shortName\": \"JP\",\n                \"fullName\": \"Japan\",\n                \"phoneCode\": \"81\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431629\",\n                \"shortName\": \"XJ\",\n                \"fullName\": \"Jersey\",\n                \"phoneCode\": \"44\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb78118243161c\",\n                \"shortName\": \"JO\",\n                \"fullName\": \"Jordan\",\n                \"phoneCode\": \"962\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb78118243160c\",\n                \"shortName\": \"KZ\",\n                \"fullName\": \"Kazakhstan\",\n                \"phoneCode\": \"7\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431603\",\n                \"shortName\": \"KE\",\n                \"fullName\": \"Kenya\",\n                \"phoneCode\": \"254\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb7811824315eb\",\n                \"shortName\": \"KI\",\n                \"fullName\": \"Kiribati\",\n                \"phoneCode\": \"686\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb7811824315de\",\n                \"shortName\": \"KP\",\n                \"fullName\": \"Korea North\",\n                \"phoneCode\": \"850\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb7811824315ba\",\n                \"shortName\": \"KR\",\n                \"fullName\": \"Korea South\",\n                \"phoneCode\": \"82\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb7811824315af\",\n                \"shortName\": \"KW\",\n                \"fullName\": \"Kuwait\",\n                \"phoneCode\": \"965\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb7811824315a6\",\n                \"shortName\": \"KG\",\n                \"fullName\": \"Kyrgyzstan\",\n                \"phoneCode\": \"996\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431594\",\n                \"shortName\": \"LA\",\n                \"fullName\": \"Laos\",\n                \"phoneCode\": \"856\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431572\",\n                \"shortName\": \"LV\",\n                \"fullName\": \"Latvia\",\n                \"phoneCode\": \"371\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431568\",\n                \"shortName\": \"LB\",\n                \"fullName\": \"Lebanon\",\n                \"phoneCode\": \"961\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb78118243155d\",\n                \"shortName\": \"LS\",\n                \"fullName\": \"Lesotho\",\n                \"phoneCode\": \"266\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431550\",\n                \"shortName\": \"LR\",\n                \"fullName\": \"Liberia\",\n                \"phoneCode\": \"231\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431535\",\n                \"shortName\": \"LY\",\n                \"fullName\": \"Libya\",\n                \"phoneCode\": \"218\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431529\",\n                \"shortName\": \"LI\",\n                \"fullName\": \"Liechtenstein\",\n                \"phoneCode\": \"423\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb78118243151b\",\n                \"shortName\": \"LT\",\n                \"fullName\": \"Lithuania\",\n                \"phoneCode\": \"370\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb78118243150e\",\n                \"shortName\": \"LU\",\n                \"fullName\": \"Luxembourg\",\n                \"phoneCode\": \"352\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb78118243150c\",\n                \"shortName\": \"MO\",\n                \"fullName\": \"Macau S.A.R.\",\n                \"phoneCode\": \"853\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb7811824314ed\",\n                \"shortName\": \"MK\",\n                \"fullName\": \"Macedonia\",\n                \"phoneCode\": \"389\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb7811824314e6\",\n                \"shortName\": \"MG\",\n                \"fullName\": \"Madagascar\",\n                \"phoneCode\": \"261\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb7811824314ca\",\n                \"shortName\": \"MW\",\n                \"fullName\": \"Malawi\",\n                \"phoneCode\": \"265\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb7811824314b7\",\n                \"shortName\": \"MY\",\n                \"fullName\": \"Malaysia\",\n                \"phoneCode\": \"60\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb7811824314a1\",\n                \"shortName\": \"MV\",\n                \"fullName\": \"Maldives\",\n                \"phoneCode\": \"960\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431497\",\n                \"shortName\": \"ML\",\n                \"fullName\": \"Mali\",\n                \"phoneCode\": \"223\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb78118243148f\",\n                \"shortName\": \"MT\",\n                \"fullName\": \"Malta\",\n                \"phoneCode\": \"356\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431486\",\n                \"shortName\": \"XM\",\n                \"fullName\": \"Man (Isle of)\",\n                \"phoneCode\": \"44\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb78118243146c\",\n                \"shortName\": \"MH\",\n                \"fullName\": \"Marshall Islands\",\n                \"phoneCode\": \"692\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431467\",\n                \"shortName\": \"MQ\",\n                \"fullName\": \"Martinique\",\n                \"phoneCode\": \"596\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431459\",\n                \"shortName\": \"MR\",\n                \"fullName\": \"Mauritania\",\n                \"phoneCode\": \"222\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb78118243144b\",\n                \"shortName\": \"MU\",\n                \"fullName\": \"Mauritius\",\n                \"phoneCode\": \"230\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431448\",\n                \"shortName\": \"YT\",\n                \"fullName\": \"Mayotte\",\n                \"phoneCode\": \"269\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431426\",\n                \"shortName\": \"MX\",\n                \"fullName\": \"Mexico\",\n                \"phoneCode\": \"52\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431421\",\n                \"shortName\": \"FM\",\n                \"fullName\": \"Micronesia\",\n                \"phoneCode\": \"691\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431413\",\n                \"shortName\": \"MD\",\n                \"fullName\": \"Moldova\",\n                \"phoneCode\": \"373\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb78118243140e\",\n                \"shortName\": \"MC\",\n                \"fullName\": \"Monaco\",\n                \"phoneCode\": \"377\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb7811824313f7\",\n                \"shortName\": \"MN\",\n                \"fullName\": \"Mongolia\",\n                \"phoneCode\": \"976\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb7811824313f5\",\n                \"shortName\": \"MS\",\n                \"fullName\": \"Montserrat\",\n                \"phoneCode\": \"1664\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb7811824313de\",\n                \"shortName\": \"MA\",\n                \"fullName\": \"Morocco\",\n                \"phoneCode\": \"212\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb7811824313d2\",\n                \"shortName\": \"MZ\",\n                \"fullName\": \"Mozambique\",\n                \"phoneCode\": \"258\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb7811824313c2\",\n                \"shortName\": \"MM\",\n                \"fullName\": \"Myanmar\",\n                \"phoneCode\": \"95\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb7811824313b4\",\n                \"shortName\": \"NA\",\n                \"fullName\": \"Namibia\",\n                \"phoneCode\": \"264\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb7811824313b2\",\n                \"shortName\": \"NR\",\n                \"fullName\": \"Nauru\",\n                \"phoneCode\": \"674\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb7811824313a3\",\n                \"shortName\": \"NP\",\n                \"fullName\": \"Nepal\",\n                \"phoneCode\": \"977\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb78118243139d\",\n                \"shortName\": \"AN\",\n                \"fullName\": \"Netherlands Antilles\",\n                \"phoneCode\": \"599\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb78118243138d\",\n                \"shortName\": \"NL\",\n                \"fullName\": \"Netherlands The\",\n                \"phoneCode\": \"31\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431389\",\n                \"shortName\": \"NC\",\n                \"fullName\": \"New Caledonia\",\n                \"phoneCode\": \"687\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431375\",\n                \"shortName\": \"NZ\",\n                \"fullName\": \"New Zealand\",\n                \"phoneCode\": \"64\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431363\",\n                \"shortName\": \"NI\",\n                \"fullName\": \"Nicaragua\",\n                \"phoneCode\": \"505\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb78118243135a\",\n                \"shortName\": \"NE\",\n                \"fullName\": \"Niger\",\n                \"phoneCode\": \"227\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431334\",\n                \"shortName\": \"NG\",\n                \"fullName\": \"Nigeria\",\n                \"phoneCode\": \"234\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431332\",\n                \"shortName\": \"NU\",\n                \"fullName\": \"Niue\",\n                \"phoneCode\": \"683\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431330\",\n                \"shortName\": \"NF\",\n                \"fullName\": \"Norfolk Island\",\n                \"phoneCode\": \"672\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb78118243132b\",\n                \"shortName\": \"MP\",\n                \"fullName\": \"Northern Mariana Islands\",\n                \"phoneCode\": \"1670\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431313\",\n                \"shortName\": \"NO\",\n                \"fullName\": \"Norway\",\n                \"phoneCode\": \"47\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431308\",\n                \"shortName\": \"OM\",\n                \"fullName\": \"Oman\",\n                \"phoneCode\": \"968\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431300\",\n                \"shortName\": \"PK\",\n                \"fullName\": \"Pakistan\",\n                \"phoneCode\": \"92\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb7811824312ef\",\n                \"shortName\": \"PW\",\n                \"fullName\": \"Palau\",\n                \"phoneCode\": \"680\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb7811824312dd\",\n                \"shortName\": \"PS\",\n                \"fullName\": \"Palestinian Territory Occupied\",\n                \"phoneCode\": \"970\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb7811824312d0\",\n                \"shortName\": \"PA\",\n                \"fullName\": \"Panama\",\n                \"phoneCode\": \"507\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb7811824312bc\",\n                \"shortName\": \"PG\",\n                \"fullName\": \"Papua new Guinea\",\n                \"phoneCode\": \"675\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb7811824312a9\",\n                \"shortName\": \"PY\",\n                \"fullName\": \"Paraguay\",\n                \"phoneCode\": \"595\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431290\",\n                \"shortName\": \"PE\",\n                \"fullName\": \"Peru\",\n                \"phoneCode\": \"51\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431278\",\n                \"shortName\": \"PH\",\n                \"fullName\": \"Philippines\",\n                \"phoneCode\": \"63\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431276\",\n                \"shortName\": \"PN\",\n                \"fullName\": \"Pitcairn Island\",\n                \"phoneCode\": \"0\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431251\",\n                \"shortName\": \"PL\",\n                \"fullName\": \"Poland\",\n                \"phoneCode\": \"48\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431242\",\n                \"shortName\": \"PT\",\n                \"fullName\": \"Portugal\",\n                \"phoneCode\": \"351\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431237\",\n                \"shortName\": \"PR\",\n                \"fullName\": \"Puerto Rico\",\n                \"phoneCode\": \"1787\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb78118243122c\",\n                \"shortName\": \"QA\",\n                \"fullName\": \"Qatar\",\n                \"phoneCode\": \"974\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431b12\",\n                \"shortName\": \"CG\",\n                \"fullName\": \"Republic Of The Congo\",\n                \"phoneCode\": \"242\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431227\",\n                \"shortName\": \"RE\",\n                \"fullName\": \"Reunion\",\n                \"phoneCode\": \"262\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb7811824311fb\",\n                \"shortName\": \"RO\",\n                \"fullName\": \"Romania\",\n                \"phoneCode\": \"40\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431199\",\n                \"shortName\": \"RU\",\n                \"fullName\": \"Russia\",\n                \"phoneCode\": \"70\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb78118243118e\",\n                \"shortName\": \"RW\",\n                \"fullName\": \"Rwanda\",\n                \"phoneCode\": \"250\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431189\",\n                \"shortName\": \"SH\",\n                \"fullName\": \"Saint Helena\",\n                \"phoneCode\": \"290\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb78118243117a\",\n                \"shortName\": \"KN\",\n                \"fullName\": \"Saint Kitts And Nevis\",\n                \"phoneCode\": \"1869\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb78118243116f\",\n                \"shortName\": \"LC\",\n                \"fullName\": \"Saint Lucia\",\n                \"phoneCode\": \"1758\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb78118243116c\",\n                \"shortName\": \"PM\",\n                \"fullName\": \"Saint Pierre and Miquelon\",\n                \"phoneCode\": \"508\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431165\",\n                \"shortName\": \"VC\",\n                \"fullName\": \"Saint Vincent And The Grenadines\",\n                \"phoneCode\": \"1784\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431159\",\n                \"shortName\": \"WS\",\n                \"fullName\": \"Samoa\",\n                \"phoneCode\": \"684\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb78118243114f\",\n                \"shortName\": \"SM\",\n                \"fullName\": \"San Marino\",\n                \"phoneCode\": \"378\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431148\",\n                \"shortName\": \"ST\",\n                \"fullName\": \"Sao Tome and Principe\",\n                \"phoneCode\": \"239\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431135\",\n                \"shortName\": \"SA\",\n                \"fullName\": \"Saudi Arabia\",\n                \"phoneCode\": \"966\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb78118243112a\",\n                \"shortName\": \"SN\",\n                \"fullName\": \"Senegal\",\n                \"phoneCode\": \"221\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431126\",\n                \"shortName\": \"RS\",\n                \"fullName\": \"Serbia\",\n                \"phoneCode\": \"381\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431120\",\n                \"shortName\": \"SC\",\n                \"fullName\": \"Seychelles\",\n                \"phoneCode\": \"248\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb78118243111b\",\n                \"shortName\": \"SL\",\n                \"fullName\": \"Sierra Leone\",\n                \"phoneCode\": \"232\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431119\",\n                \"shortName\": \"SG\",\n                \"fullName\": \"Singapore\",\n                \"phoneCode\": \"65\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431110\",\n                \"shortName\": \"SK\",\n                \"fullName\": \"Slovakia\",\n                \"phoneCode\": \"421\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb7811824310ff\",\n                \"shortName\": \"SI\",\n                \"fullName\": \"Slovenia\",\n                \"phoneCode\": \"386\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb7811824310fd\",\n                \"shortName\": \"XG\",\n                \"fullName\": \"Smaller Territories of the UK\",\n                \"phoneCode\": \"44\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb7811824310f3\",\n                \"shortName\": \"SB\",\n                \"fullName\": \"Solomon Islands\",\n                \"phoneCode\": \"677\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb7811824310e1\",\n                \"shortName\": \"SO\",\n                \"fullName\": \"Somalia\",\n                \"phoneCode\": \"252\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb7811824310d2\",\n                \"shortName\": \"ZA\",\n                \"fullName\": \"South Africa\",\n                \"phoneCode\": \"27\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb7811824310d0\",\n                \"shortName\": \"GS\",\n                \"fullName\": \"South Georgia\",\n                \"phoneCode\": \"0\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb7811824310ce\",\n                \"shortName\": \"SS\",\n                \"fullName\": \"South Sudan\",\n                \"phoneCode\": \"211\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431098\",\n                \"shortName\": \"ES\",\n                \"fullName\": \"Spain\",\n                \"phoneCode\": \"34\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431076\",\n                \"shortName\": \"LK\",\n                \"fullName\": \"Sri Lanka\",\n                \"phoneCode\": \"94\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431059\",\n                \"shortName\": \"SD\",\n                \"fullName\": \"Sudan\",\n                \"phoneCode\": \"249\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb78118243104f\",\n                \"shortName\": \"SR\",\n                \"fullName\": \"Suriname\",\n                \"phoneCode\": \"597\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb78118243104d\",\n                \"shortName\": \"SJ\",\n                \"fullName\": \"Svalbard And Jan Mayen Islands\",\n                \"phoneCode\": \"47\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431048\",\n                \"shortName\": \"SZ\",\n                \"fullName\": \"Swaziland\",\n                \"phoneCode\": \"268\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb78118243102a\",\n                \"shortName\": \"SE\",\n                \"fullName\": \"Sweden\",\n                \"phoneCode\": \"46\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182431009\",\n                \"shortName\": \"CH\",\n                \"fullName\": \"Switzerland\",\n                \"phoneCode\": \"41\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182430ff9\",\n                \"shortName\": \"SY\",\n                \"fullName\": \"Syria\",\n                \"phoneCode\": \"963\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182430fe2\",\n                \"shortName\": \"TW\",\n                \"fullName\": \"Taiwan\",\n                \"phoneCode\": \"886\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182430fdc\",\n                \"shortName\": \"TJ\",\n                \"fullName\": \"Tajikistan\",\n                \"phoneCode\": \"992\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182430fc6\",\n                \"shortName\": \"TZ\",\n                \"fullName\": \"Tanzania\",\n                \"phoneCode\": \"255\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182430f77\",\n                \"shortName\": \"TH\",\n                \"fullName\": \"Thailand\",\n                \"phoneCode\": \"66\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182430f71\",\n                \"shortName\": \"TG\",\n                \"fullName\": \"Togo\",\n                \"phoneCode\": \"228\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182430f6d\",\n                \"shortName\": \"TK\",\n                \"fullName\": \"Tokelau\",\n                \"phoneCode\": \"690\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182430f67\",\n                \"shortName\": \"TO\",\n                \"fullName\": \"Tonga\",\n                \"phoneCode\": \"676\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182430f56\",\n                \"shortName\": \"TT\",\n                \"fullName\": \"Trinidad And Tobago\",\n                \"phoneCode\": \"1868\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182430f37\",\n                \"shortName\": \"TN\",\n                \"fullName\": \"Tunisia\",\n                \"phoneCode\": \"216\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182430ee3\",\n                \"shortName\": \"TR\",\n                \"fullName\": \"Turkey\",\n                \"phoneCode\": \"90\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182430edc\",\n                \"shortName\": \"TM\",\n                \"fullName\": \"Turkmenistan\",\n                \"phoneCode\": \"7370\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182430ed9\",\n                \"shortName\": \"TC\",\n                \"fullName\": \"Turks And Caicos Islands\",\n                \"phoneCode\": \"1649\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182430ed0\",\n                \"shortName\": \"TV\",\n                \"fullName\": \"Tuvalu\",\n                \"phoneCode\": \"688\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182430ecb\",\n                \"shortName\": \"UG\",\n                \"fullName\": \"Uganda\",\n                \"phoneCode\": \"256\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182430eac\",\n                \"shortName\": \"UA\",\n                \"fullName\": \"Ukraine\",\n                \"phoneCode\": \"380\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182430ea2\",\n                \"shortName\": \"AE\",\n                \"fullName\": \"United Arab Emirates\",\n                \"phoneCode\": \"971\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182430e2f\",\n                \"shortName\": \"GB\",\n                \"fullName\": \"United Kingdom\",\n                \"phoneCode\": \"44\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182430df2\",\n                \"shortName\": \"US\",\n                \"fullName\": \"United States\",\n                \"phoneCode\": \"1\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182430df0\",\n                \"shortName\": \"UM\",\n                \"fullName\": \"United States Minor Outlying Islands\",\n                \"phoneCode\": \"1\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182430ddc\",\n                \"shortName\": \"UY\",\n                \"fullName\": \"Uruguay\",\n                \"phoneCode\": \"598\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182430dcd\",\n                \"shortName\": \"UZ\",\n                \"fullName\": \"Uzbekistan\",\n                \"phoneCode\": \"998\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182430dc6\",\n                \"shortName\": \"VU\",\n                \"fullName\": \"Vanuatu\",\n                \"phoneCode\": \"678\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182430dc4\",\n                \"shortName\": \"VA\",\n                \"fullName\": \"Vatican City State (Holy See)\",\n                \"phoneCode\": \"39\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182430dab\",\n                \"shortName\": \"VE\",\n                \"fullName\": \"Venezuela\",\n                \"phoneCode\": \"58\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182430d96\",\n                \"shortName\": \"VN\",\n                \"fullName\": \"Vietnam\",\n                \"phoneCode\": \"84\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182430d92\",\n                \"shortName\": \"VG\",\n                \"fullName\": \"Virgin Islands (British)\",\n                \"phoneCode\": \"1284\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182430d8e\",\n                \"shortName\": \"VI\",\n                \"fullName\": \"Virgin Islands (US)\",\n                \"phoneCode\": \"1340\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182430d8a\",\n                \"shortName\": \"WF\",\n                \"fullName\": \"Wallis And Futuna Islands\",\n                \"phoneCode\": \"681\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182430d85\",\n                \"shortName\": \"EH\",\n                \"fullName\": \"Western Sahara\",\n                \"phoneCode\": \"212\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182430d71\",\n                \"shortName\": \"YE\",\n                \"fullName\": \"Yemen\",\n                \"phoneCode\": \"967\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182430d6a\",\n                \"shortName\": \"YU\",\n                \"fullName\": \"Yugoslavia\",\n                \"phoneCode\": \"38\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182430d60\",\n                \"shortName\": \"ZM\",\n                \"fullName\": \"Zambia\",\n                \"phoneCode\": \"260\",\n                \"deletedAt\": \"\"\n            },\n            {\n                \"id\": \"6891cae07adb781182430d55\",\n                \"shortName\": \"ZW\",\n                \"fullName\": \"Zimbabwe\",\n                \"phoneCode\": \"263\",\n                \"deletedAt\": \"\"\n            }\n        ]\n    }\n}"}],"_postman_id":"932fc665-63cc-409d-90ad-41a0323aee79"},{"name":"State List","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"requests":{},"id":"0c4d05a6-ade4-4187-8877-507f7a1ab11f"}},{"listen":"prerequest","script":{"exec":[""],"type":"text/javascript","packages":{},"requests":{},"id":"41490659-0476-4ae5-94f0-19217b6b4c41"}}],"id":"af074e7c-1b0d-4f9d-875b-ba59240c38ad","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"countryId\": \"6891cae07adb781182431334\" // Nigeria\r\n}","options":{"raw":{"language":"json"}}},"url":"https://staginglogistic.legallyng.com/admin/config/state/list","description":"<p>Retrieves the list of states/provinces for a given country (used for admin configuration lookups and UI dropdowns).</p>\n<ul>\n<li><p><strong>Method</strong>: <code>POST</code></p>\n</li>\n<li><p><strong>Endpoint</strong>: <code>https://staginglogistic.legallyng.com/admin/config/state/list</code></p>\n</li>\n</ul>\n<h2 id=\"headers\">Headers</h2>\n<ul>\n<li><p><code>Content-Type: application/json</code></p>\n</li>\n<li><p><code>Accept: application/json</code></p>\n</li>\n</ul>\n<h2 id=\"parameters\">Parameters</h2>\n<ul>\n<li><code>countryId</code> (string, <strong>optional</strong>)</li>\n</ul>\n","urlObject":{"path":["admin","config","state","list"],"host":["https://staginglogistic.legallyng.com"],"query":[],"variable":[]}},"response":[{"id":"a1fa804e-46f8-4aaa-afe1-471aec2fc26b","name":"200 OK (example)","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"countryId\": \"6891cae07adb781182431334\" // Nigeria\r\n}","options":{"raw":{"language":"json"}}},"url":"https://staginglogistic.legallyng.com/admin/config/state/list"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"X-Powered-By","value":"Express"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"241"},{"key":"ETag","value":"W/\"f1-FtSIFp8LZOVhO8Xb7A2snC6IGZQ\""},{"key":"Date","value":"Thu, 19 Mar 2026 06:11:04 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": \"0000\",\n    \"message\": \"Data found\",\n    \"data\": {\n        \"states\": [\n            {\n                \"id\": \"6891d53033196d6fb87cfcdb\",\n                \"country\": {\n                    \"id\": \"6891cae07adb781182431334\",\n                    \"shortName\": \"NG\",\n                    \"fullName\": \"Nigeria\",\n                    \"phoneCode\": \"234\",\n                    \"deletedAt\": \"\"\n                },\n                \"fullName\": \"Lagos\",\n                \"deletedAt\": \"\"\n            }\n        ]\n    }\n}"}],"_postman_id":"af074e7c-1b0d-4f9d-875b-ba59240c38ad"},{"name":"Shop Location List","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"requests":{},"id":"4bbc9427-f43b-4b46-8d29-bd731d275707"}},{"listen":"prerequest","script":{"exec":[""],"type":"text/javascript","packages":{},"requests":{},"id":"8d493b34-931d-4105-8fb9-04755068c16b"}}],"id":"c9a08192-22b0-4f2c-a64b-5b61e4b36ab4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"countryId\": \"\",\r\n    \"stateId\": [],\r\n    \"shopType\": [], // DEPOT or SHOP\r\n    \"depotLocationId\": [] // if shopType: SHOP\r\n}","options":{"raw":{"language":"json"}}},"url":"https://staginglogistic.legallyng.com/admin/config/shop-location/list","description":"<p>Returns available shop/depot locations used by admin configuration and order flows (e.g., location dropdowns and validations).</p>\n<ul>\n<li><p><strong>Method</strong>: <code>POST</code></p>\n</li>\n<li><p><strong>Endpoint</strong>: <code>https://staginglogistic.legallyng.com/admin/config/shop-location/list</code></p>\n</li>\n</ul>\n<h2 id=\"headers\">Headers</h2>\n<ul>\n<li><p><code>Content-Type: application/json</code></p>\n</li>\n<li><p><code>Accept: application/json</code></p>\n</li>\n</ul>\n<h2 id=\"parameters\">Parameters</h2>\n<ul>\n<li><p><code>countryId</code> (string, <strong>optional</strong>)</p>\n</li>\n<li><p><code>stateId</code> (array, <strong>optional</strong>)</p>\n</li>\n<li><p><code>shopType</code> (array, <strong>optional</strong>)</p>\n</li>\n<li><p><code>depotLocationId</code> (array, <strong>optional</strong>)</p>\n</li>\n</ul>\n","urlObject":{"path":["admin","config","shop-location","list"],"host":["https://staginglogistic.legallyng.com"],"query":[],"variable":[]}},"response":[{"id":"bd0d4bd3-76e2-467c-b88b-b5a8041e0493","name":"200 OK (example)","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"countryId\": \"\",\r\n    \"stateId\": [],\r\n    \"shopType\": [], // DEPOT or SHOP\r\n    \"depotLocationId\": [] // if shopType: SHOP\r\n}","options":{"raw":{"language":"json"}}},"url":"https://staginglogistic.legallyng.com/admin/config/shop-location/list"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"X-Powered-By","value":"Express"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"3282"},{"key":"ETag","value":"W/\"cd2-KPpLS3OlmqZV7ScOeWZoikDkqtE\""},{"key":"Date","value":"Thu, 19 Mar 2026 06:11:17 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": \"0000\",\n    \"message\": \"Data found\",\n    \"data\": {\n        \"shopLocations\": [\n            {\n                \"id\": \"68dcd80d1d9f2289be2beb10\",\n                \"shopType\": {\n                    \"key\": \"SHOP\",\n                    \"label\": \"Shop\"\n                },\n                \"name\": \"Abraham Adesanya\",\n                \"sequence\": \"6\",\n                \"status\": true\n            },\n            {\n                \"id\": \"68dcd7f81d9f2289be2beb0d\",\n                \"shopType\": {\n                    \"key\": \"SHOP\",\n                    \"label\": \"Shop\"\n                },\n                \"name\": \"Admiralty Way\",\n                \"sequence\": \"3\",\n                \"status\": true\n            },\n            {\n                \"id\": \"68dcd8071d9f2289be2beb0f\",\n                \"shopType\": {\n                    \"key\": \"SHOP\",\n                    \"label\": \"Shop\"\n                },\n                \"name\": \"Ajah Market\",\n                \"sequence\": \"5\",\n                \"status\": true\n            },\n            {\n                \"id\": \"68dcc1c71d9f2289be2bea7d\",\n                \"shopType\": {\n                    \"key\": \"DEPOT\",\n                    \"label\": \"Depot\"\n                },\n                \"name\": \"Ajao\",\n                \"sequence\": \"0\",\n                \"status\": true\n            },\n            {\n                \"id\": \"694007d89186d326bc4fa905\",\n                \"shopType\": {\n                    \"key\": \"SHOP\",\n                    \"label\": \"Shop\"\n                },\n                \"name\": \"Ajao Estate\",\n                \"sequence\": \"5\",\n                \"status\": true\n            },\n            {\n                \"id\": \"68dcd3cb1d9f2289be2beb04\",\n                \"shopType\": {\n                    \"key\": \"SHOP\",\n                    \"label\": \"Shop\"\n                },\n                \"name\": \"Alaba International Market Ojo\",\n                \"sequence\": \"5\",\n                \"status\": true\n            },\n            {\n                \"id\": \"68dcd65d1d9f2289be2beb06\",\n                \"shopType\": {\n                    \"key\": \"SHOP\",\n                    \"label\": \"Shop\"\n                },\n                \"name\": \"Balogun\",\n                \"sequence\": \"1\",\n                \"status\": true\n            },\n            {\n                \"id\": \"68dcce401d9f2289be2bead2\",\n                \"shopType\": {\n                    \"key\": \"SHOP\",\n                    \"label\": \"Shop\"\n                },\n                \"name\": \"Berger\",\n                \"sequence\": \"1\",\n                \"status\": true\n            },\n            {\n                \"id\": \"68dccfa31d9f2289be2beae5\",\n                \"shopType\": {\n                    \"key\": \"SHOP\",\n                    \"label\": \"Shop\"\n                },\n                \"name\": \"Costain\",\n                \"sequence\": \"1\",\n                \"status\": true\n            },\n            {\n                \"id\": \"68dcd81a1d9f2289be2beb12\",\n                \"shopType\": {\n                    \"key\": \"SHOP\",\n                    \"label\": \"Shop\"\n                },\n                \"name\": \"Eputu\",\n                \"sequence\": \"8\",\n                \"status\": true\n            },\n            {\n                \"id\": \"68dccc1c1d9f2289be2beac3\",\n                \"shopType\": {\n                    \"key\": \"SHOP\",\n                    \"label\": \"Shop\"\n                },\n                \"name\": \"Idi iroko\",\n                \"sequence\": \"3\",\n                \"status\": true\n            },\n            {\n                \"id\": \"68dcc60a1d9f2289be2bea9e\",\n                \"shopType\": {\n                    \"key\": \"SHOP\",\n                    \"label\": \"Shop\"\n                },\n                \"name\": \"Ikeja Along\",\n                \"sequence\": \"3\",\n                \"status\": true\n            },\n            {\n                \"id\": \"68dccbbd1d9f2289be2beab6\",\n                \"shopType\": {\n                    \"key\": \"SHOP\",\n                    \"label\": \"Shop\"\n                },\n                \"name\": \"Ikorodu\",\n                \"sequence\": \"1\",\n                \"status\": true\n            },\n            {\n                \"id\": \"68dcc6031d9f2289be2bea9d\",\n                \"shopType\": {\n                    \"key\": \"SHOP\",\n                    \"label\": \"Shop\"\n                },\n                \"name\": \"Iyano Ipaja\",\n                \"sequence\": \"2\",\n                \"status\": true\n            },\n            {\n                \"id\": \"68dcd7ff1d9f2289be2beb0e\",\n                \"shopType\": {\n                    \"key\": \"SHOP\",\n                    \"label\": \"Shop\"\n                },\n                \"name\": \"Jakande\",\n                \"sequence\": \"4\",\n                \"status\": true\n            },\n            {\n                \"id\": \"68dcc51a1d9f2289be2bea84\",\n                \"shopType\": {\n                    \"key\": \"SHOP\",\n                    \"label\": \"Shop\"\n                },\n                \"name\": \"Kola\",\n                \"sequence\": \"1\",\n                \"status\": true\n            },\n            {\n                \"id\": \"68dccc161d9f2289be2beac2\",\n                \"shopType\": {\n                    \"key\": \"SHOP\",\n                    \"label\": \"Shop\"\n                },\n                \"name\": \"Mile 12\",\n                \"sequence\": \"2\",\n                \"status\": true\n            },\n            {\n                \"id\": \"68dcd69c1d9f2289be2beb0c\",\n                \"shopType\": {\n                    \"key\": \"SHOP\",\n                    \"label\": \"Shop\"\n                },\n                \"name\": \"Muri Okunola\",\n                \"sequence\": \"2\",\n                \"status\": true\n            },\n            {\n                \"id\": \"68dcce841d9f2289be2bead3\",\n                \"shopType\": {\n                    \"key\": \"SHOP\",\n                    \"label\": \"Shop\"\n                },\n                \"name\": \"Ogudu\",\n                \"sequence\": \"2\",\n                \"status\": true\n            },\n            {\n                \"id\": \"68dcc6181d9f2289be2beaa0\",\n                \"shopType\": {\n                    \"key\": \"SHOP\",\n                    \"label\": \"Shop\"\n                },\n                \"name\": \"Oshodi\",\n                \"sequence\": \"4\",\n                \"status\": true\n            },\n            {\n                \"id\": \"68dcce8f1d9f2289be2bead4\",\n                \"shopType\": {\n                    \"key\": \"SHOP\",\n                    \"label\": \"Shop\"\n                },\n                \"name\": \"Oworoshoki\",\n                \"sequence\": \"3\",\n                \"status\": true\n            },\n            {\n                \"id\": \"68dcc5131d9f2289be2bea83\",\n                \"shopType\": {\n                    \"key\": \"SHOP\",\n                    \"label\": \"Shop\"\n                },\n                \"name\": \"Sango Ota\",\n                \"sequence\": \"1\",\n                \"status\": true\n            },\n            {\n                \"id\": \"68dcd8141d9f2289be2beb11\",\n                \"shopType\": {\n                    \"key\": \"SHOP\",\n                    \"label\": \"Shop\"\n                },\n                \"name\": \"Sangotedo\",\n                \"sequence\": \"7\",\n                \"status\": true\n            },\n            {\n                \"id\": \"68dcd0f41d9f2289be2beaf0\",\n                \"shopType\": {\n                    \"key\": \"SHOP\",\n                    \"label\": \"Shop\"\n                },\n                \"name\": \"Satellite Town\",\n                \"sequence\": \"3\",\n                \"status\": true\n            },\n            {\n                \"id\": \"68dcd0cc1d9f2289be2beaea\",\n                \"shopType\": {\n                    \"key\": \"SHOP\",\n                    \"label\": \"Shop\"\n                },\n                \"name\": \"Suru Alaba\",\n                \"sequence\": \"2\",\n                \"status\": true\n            },\n            {\n                \"id\": \"68dcd1161d9f2289be2beaf6\",\n                \"shopType\": {\n                    \"key\": \"SHOP\",\n                    \"label\": \"Shop\"\n                },\n                \"name\": \"Trade Fair\",\n                \"sequence\": \"4\",\n                \"status\": true\n            }\n        ]\n    }\n}"}],"_postman_id":"c9a08192-22b0-4f2c-a64b-5b61e4b36ab4"},{"name":"Shop List","event":[{"listen":"test","script":{"id":"e8510291-ab10-494a-b707-866c6bbcd25d","exec":[""],"type":"text/javascript","packages":{},"requests":{}}},{"listen":"prerequest","script":{"id":"dff8c97e-a07f-44ef-942b-c8eb2253367c","exec":[""],"type":"text/javascript","packages":{},"requests":{}}}],"id":"073506af-0855-4e64-8f8a-e446ca294564","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"shopLocationId\": [\"68dcc5131d9f2289be2bea83\"]\r\n}","options":{"raw":{"language":"json"}}},"url":"https://staginglogistic.legallyng.com/admin/config/shop/list","description":"<p>Returns shops/depots matching the provided filters (used for admin configuration lookups and order/shipping flows).</p>\n<ul>\n<li><p><strong>Method</strong>: <code>POST</code></p>\n</li>\n<li><p><strong>Endpoint</strong>: <code>https://staginglogistic.legallyng.com/admin/config/shop/list</code></p>\n</li>\n</ul>\n<h2 id=\"headers\">Headers</h2>\n<ul>\n<li><p><code>Content-Type: application/json</code></p>\n</li>\n<li><p><code>Accept: application/json</code></p>\n</li>\n</ul>\n<h2 id=\"parameters\">Parameters</h2>\n<ul>\n<li><code>shopLocationId</code> (array, <strong>optional</strong>)</li>\n</ul>\n","urlObject":{"path":["admin","config","shop","list"],"host":["https://staginglogistic.legallyng.com"],"query":[],"variable":[]}},"response":[{"id":"e3a21e7c-9804-43c3-be41-4cfc93105f69","name":"200 OK (example)","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"shopLocationId\": [\"68dcc5131d9f2289be2bea83\"]\r\n}","options":{"raw":{"language":"json"}}},"url":"https://staginglogistic.legallyng.com/admin/config/shop/list"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"X-Powered-By","value":"Express"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1593"},{"key":"ETag","value":"W/\"639-8+Gt2mw5eRdNa7McOY1FACAUKN0\""},{"key":"Date","value":"Thu, 19 Mar 2026 06:11:42 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": \"0000\",\n    \"message\": \"Data found\",\n    \"data\": {\n        \"shops\": [\n            {\n                \"id\": \"68dcee271d9f2289be2beb4e\",\n                \"shopLocation\": {\n                    \"id\": \"68dcc1c71d9f2289be2bea7d\",\n                    \"name\": \"Ajao\"\n                },\n                \"shopType\": {\n                    \"key\": \"DEPOT\",\n                    \"label\": \"Depot\"\n                },\n                \"firstName\": \"Ajao\",\n                \"lastName\": \"Depot\",\n                \"shopName\": \"Ajao (Depot)\",\n                \"email\": \"ajao@yopmail.com\",\n                \"phoneCode\": \"+234\",\n                \"phone\": \"9652310487\",\n                \"profileImageUrl\": \"http://localhost:3000/storage/default/profile.svg\",\n                \"location\": {\n                    \"stateId\": \"6891d53033196d6fb87cfcdb\",\n                    \"state\": \"\",\n                    \"countryId\": \"6891cae07adb781182431334\",\n                    \"country\": \"\",\n                    \"address1\": \"Ikeja Way 89\",\n                    \"address2\": \"Ikeja Way\",\n                    \"city\": \"Lagos\",\n                    \"postcode\": \"10\",\n                    \"latitude\": \"6.460573\",\n                    \"longitude\": \"3.417272\",\n                    \"distance\": {\n                        \"error\": \"Could not find a matching segment for input coordinates\",\n                        \"label\": \"\",\n                        \"meter\": \"\",\n                        \"km\": \"\"\n                    }\n                },\n                \"fullAddress\": \"Ikeja Way 89, Ikeja Way, Lagos, , 10\"\n            },\n            {\n                \"id\": \"68dcdb5d1d9f2289be2beb36\",\n                \"shopLocation\": {\n                    \"id\": \"68dcc5131d9f2289be2bea83\",\n                    \"name\": \"Sango Ota\"\n                },\n                \"shopType\": {\n                    \"key\": \"SHOP\",\n                    \"label\": \"Shop\"\n                },\n                \"firstName\": \"Sango\",\n                \"lastName\": \"Shop\",\n                \"shopName\": \"Sango Shop (Shop)\",\n                \"email\": \"sango@yopmail.com\",\n                \"phoneCode\": \"+234\",\n                \"phone\": \"909999888\",\n                \"profileImageUrl\": \"http://localhost:3000/storage/default/profile.svg\",\n                \"location\": {\n                    \"stateId\": \"6891d53033196d6fb87cfcdb\",\n                    \"state\": \"Lagos\",\n                    \"countryId\": \"6891cae07adb781182431334\",\n                    \"country\": \"Nigeria\",\n                    \"address1\": \"Abeokuta Street\",\n                    \"address2\": \"Abeokuta Street\",\n                    \"city\": \"Lagos\",\n                    \"postcode\": \"10\",\n                    \"latitude\": \"6.5326219\",\n                    \"longitude\": \"3.3940281\",\n                    \"distance\": {\n                        \"error\": \"Could not find a matching segment for input coordinates\",\n                        \"label\": \"\",\n                        \"meter\": \"\",\n                        \"km\": \"\"\n                    }\n                },\n                \"fullAddress\": \"Abeokuta Street, Abeokuta Street, Lagos, Lagos, Nigeria, 10\"\n            }\n        ]\n    }\n}"}],"_postman_id":"073506af-0855-4e64-8f8a-e446ca294564"},{"name":"Charge Calculate","event":[{"listen":"test","script":{"id":"99f8b81d-94ec-4d5b-bc55-e8803f08b6d8","exec":[""],"type":"text/javascript","packages":{},"requests":{}}},{"listen":"prerequest","script":{"id":"31643fa9-1685-4e1c-8d44-068132001431","exec":[""],"type":"text/javascript","packages":{},"requests":{}}}],"id":"d0ef1898-1613-4c10-9740-aaaa75c79b6e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"pickupAddress\": {\r\n        \"address1\": \"Joel Ogunnaike Street\",\r\n        \"address2\": \"Joel Ogunnaike Street\",\r\n        \"city\": \"Lagos\",\r\n        \"state\": \"Lagos\",\r\n        \"country\": \"Nigeria\",\r\n        \"postcode\": \"10\",\r\n        \"shopLocationId\": \"68dcc5131d9f2289be2bea83\",\r\n        \"shopId\": \"68dcee271d9f2289be2beb4e\"\r\n    },\r\n    \"deliveryAddress\": {\r\n        \"address1\": \"Lawrence Daniel Close 26\",\r\n        \"address2\": \"Lawrence Daniel Close\",\r\n        \"city\": \"Lagos\",\r\n        \"state\": \"Lagos\",\r\n        \"country\": \"Nigeria\",\r\n        \"postcode\": \"10\",\r\n        \"shopLocationId\": \"68dcc5131d9f2289be2bea83\",\r\n        \"shopId\": \"68dcee271d9f2289be2beb4e\"\r\n    },\r\n    \"parcelDetails\": {\r\n        \"deliveryType\": \"STANDARD\", // STANDARD, EXPRESS\r\n        \"isFragileCharge\": true,\r\n        \"isRiderPickupCharge\": true,\r\n        \"isBuyerPickupCharge\": false\r\n    },\r\n    \"packageDetails\": [\r\n        {\r\n            \"productName\": \"IFB 24L Black Microwave Oven 24PM2B\",\r\n            \"quantity\": 1,\r\n            \"weight\": 0.8,\r\n            \"width\": 40,\r\n            \"height\": 30,\r\n            \"length\": 80\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"https://staginglogistic.legallyng.com/api/shipping-order/charge/calculate","description":"<p>Calculates shipping charges for a prospective shipment based on pickup/delivery addresses and package/parcel details.</p>\n<ul>\n<li><p><strong>Method</strong>: <code>POST</code></p>\n</li>\n<li><p><strong>Endpoint</strong>: <code>https://staginglogistic.legallyng.com/api/shipping-order/shipping-charge/calculate</code></p>\n</li>\n</ul>\n<h2 id=\"authentication\">Authentication</h2>\n<ul>\n<li><strong>Auth</strong>: Bearer (accessToken)</li>\n</ul>\n<h2 id=\"headers\">Headers</h2>\n<ul>\n<li><p><code>Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJfaWQiOiI2NzA2NTJkMmU1ZTNlY2ZiYzAwZDA5NGIiLCJpYXQiOjE3NDY0NTI4NDcsImV4cCI6ODY0MDAxNzQ2MzY2NDQ3fQ.w88QYHoNSU2mcaQRXv05ts_TDCdoZxQz8SBO8jagCnw</code></p>\n</li>\n<li><p><code>Content-Type: application/json</code></p>\n</li>\n<li><p><code>Accept: application/json</code></p>\n</li>\n</ul>\n<h2 id=\"parameters\">Parameters</h2>\n<ul>\n<li><p><code>pickupAddress</code> (object, <strong>required</strong>)</p>\n</li>\n<li><p><code>deliveryAddress</code> (object, <strong>required</strong>)</p>\n</li>\n<li><p><code>parcelDetails</code> (object, <strong>required</strong>)</p>\n</li>\n<li><p><code>packageDetails</code> (object, <strong>required</strong>)</p>\n</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJfaWQiOiI2NzA2NTJkMmU1ZTNlY2ZiYzAwZDA5NGIiLCJpYXQiOjE3NDY0NTI4NDcsImV4cCI6ODY0MDAxNzQ2MzY2NDQ3fQ.w88QYHoNSU2mcaQRXv05ts_TDCdoZxQz8SBO8jagCnw"}]},"isInherited":true,"source":{"_postman_id":"6d23f17c-77ff-4680-81e7-7d2f5b8601c3","id":"6d23f17c-77ff-4680-81e7-7d2f5b8601c3","name":"User","type":"collection"}},"urlObject":{"path":["api","shipping-order","charge","calculate"],"host":["https://staginglogistic.legallyng.com"],"query":[],"variable":[]}},"response":[{"id":"3d045ae1-ba8d-4d22-9cb4-ddd71c584120","name":"200 OK (example)","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"pickupAddress\": {\r\n        \"address1\": \"Joel Ogunnaike Street\",\r\n        \"address2\": \"Joel Ogunnaike Street\",\r\n        \"city\": \"Lagos\",\r\n        \"state\": \"Lagos\",\r\n        \"country\": \"Nigeria\",\r\n        \"postcode\": \"10\",\r\n        \"shopLocationId\": \"68dcc5131d9f2289be2bea83\",\r\n        \"shopId\": \"68dcee271d9f2289be2beb4e\" // 68dcdb5d1d9f2289be2beb36\r\n    },\r\n    \"deliveryAddress\": {\r\n        \"address1\": \"Lawrence Daniel Close 26\",\r\n        \"address2\": \"Lawrence Daniel Close\",\r\n        \"city\": \"Lagos\",\r\n        \"state\": \"Lagos\",\r\n        \"country\": \"Nigeria\",\r\n        \"postcode\": \"10\",\r\n        \"shopLocationId\": \"68dcc5131d9f2289be2bea83\",\r\n        \"shopId\": \"68dcee271d9f2289be2beb4e\" // 6940ab059186d326bc4ff90f\r\n    },\r\n    \"parcelDetails\": {\r\n        \"deliveryType\": \"STANDARD\", // STANDARD, EXPRESS\r\n        \"isFragileCharge\": true,\r\n        \"isRiderPickupCharge\": true,\r\n        \"isBuyerPickupCharge\": false\r\n    },\r\n    \"packageDetails\": [\r\n        {\r\n            \"productName\": \"IFB 24L Black Microwave Oven 24PM2B\",\r\n            \"quantity\": 1,\r\n            \"weight\": 0.8,\r\n            \"width\": 40,\r\n            \"height\": 30,\r\n            \"length\": 80\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"https://staginglogistic.legallyng.com/api/shipping-order/shipping-charge/calculate"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"X-Powered-By","value":"Express"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"108"},{"key":"ETag","value":"W/\"6c-5GqFrR4Nv9wejNG1KTSjMMcN3/g\""},{"key":"Date","value":"Thu, 19 Mar 2026 06:11:58 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": \"0000\",\n    \"message\": \"Shipping charge found\",\n    \"data\": {\n        \"shippingCharge\": \"5280\",\n        \"sellerRiderCharge\": \"300\"\n    }\n}"}],"_postman_id":"d0ef1898-1613-4c10-9740-aaaa75c79b6e"},{"name":"Order Create","event":[{"listen":"test","script":{"id":"887fc7b4-0179-4f47-a159-b576ecd0a2be","exec":[""],"type":"text/javascript","packages":{},"requests":{}}},{"listen":"prerequest","script":{"id":"f72fd0d8-9aa2-46bb-b0a2-4e716a9f9e4e","exec":[""],"type":"text/javascript","packages":{},"requests":{}}}],"id":"d50ab0de-a82e-4dde-8e89-bc3488460a9d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"buyerPinNumber\": \"123456\", // delivery pin number\r\n    \"pickupAddress\": {\r\n        \"firstName\": \"Seller\",\r\n        \"lastName\": \"Dev\",\r\n        \"phone\": \"9685741203\",\r\n        \"email\": \"gaurav.digitalrooar@gmail.com\",\r\n        \"address1\": \"Joel Ogunnaike Street\",\r\n        \"address2\": \"Joel Ogunnaike Street\",\r\n        \"city\": \"Lagos\",\r\n        \"state\": \"Lagos\",\r\n        \"country\": \"Nigeria\",\r\n        \"postcode\": \"10\",\r\n        \"shopLocationId\": \"68dcc5131d9f2289be2bea83\",\r\n        \"shopId\": \"68dcee271d9f2289be2beb4e\"\r\n    },\r\n    \"deliveryAddress\": {\r\n        \"firstName\": \"Buyer\",\r\n        \"lastName\": \"Dev\",\r\n        \"email\": \"gaurav.digitalrooar@gmail.com\",\r\n        \"phone\": \"9685741203\",\r\n        \"address1\": \"Lawrence Daniel Close 26\",\r\n        \"address2\": \"Lawrence Daniel Close\",\r\n        \"city\": \"Lagos\",\r\n        \"state\": \"Lagos\",\r\n        \"country\": \"Nigeria\",\r\n        \"postcode\": \"10\",\r\n        \"shopLocationId\": \"68dcc5131d9f2289be2bea83\",\r\n        \"shopId\": \"68dcee271d9f2289be2beb4e\"\r\n    },\r\n    \"parcelDetails\": {\r\n        \"deliveryType\": \"STANDARD\", // STANDARD, EXPRESS\r\n        \"isFragileCharge\": true,\r\n        \"isRiderPickupCharge\": true,\r\n        \"isBuyerPickupCharge\": false\r\n    },\r\n    \"packageDetails\": [\r\n        {\r\n            \"productName\": \"IFB 24L Black Microwave Oven 24PM2B\",\r\n            \"quantity\": 1,\r\n            \"weight\": 0.8,\r\n            \"width\": 40,\r\n            \"height\": 30,\r\n            \"length\": 80\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"https://staginglogistic.legallyng.com/api/shipping-order/create","description":"<p>Creates a new shipping order using buyer/seller addresses, parcel details, and package line items.</p>\n<ul>\n<li><p><strong>Method</strong>: <code>POST</code></p>\n</li>\n<li><p><strong>Endpoint</strong>: <code>https://staginglogistic.legallyng.com/api/shipping-order/create</code></p>\n</li>\n</ul>\n<h2 id=\"authentication\">Authentication</h2>\n<ul>\n<li><strong>Auth</strong>: Bearer (accessToken)</li>\n</ul>\n<h2 id=\"headers\">Headers</h2>\n<ul>\n<li><p><code>Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJfaWQiOiI2NzA2NTJkMmU1ZTNlY2ZiYzAwZDA5NGIiLCJpYXQiOjE3NDY0NTI4NDcsImV4cCI6ODY0MDAxNzQ2MzY2NDQ3fQ.w88QYHoNSU2mcaQRXv05ts_TDCdoZxQz8SBO8jagCnw</code></p>\n</li>\n<li><p><code>Content-Type: application/json</code></p>\n</li>\n<li><p><code>Accept: application/json</code></p>\n</li>\n</ul>\n<h2 id=\"parameters\">Parameters</h2>\n<ul>\n<li><p><code>buyerNumber</code> (string, <strong>required</strong>)</p>\n</li>\n<li><p><code>pickupAddress</code> (object, <strong>required</strong>)</p>\n</li>\n<li><p><code>deliveryAddress</code> (object, <strong>required</strong>)</p>\n</li>\n<li><p><code>parcelDetails</code> (object, <strong>required</strong>)</p>\n</li>\n<li><p><code>packageDetails</code> (object, <strong>required</strong>)</p>\n</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJfaWQiOiI2NzA2NTJkMmU1ZTNlY2ZiYzAwZDA5NGIiLCJpYXQiOjE3NDY0NTI4NDcsImV4cCI6ODY0MDAxNzQ2MzY2NDQ3fQ.w88QYHoNSU2mcaQRXv05ts_TDCdoZxQz8SBO8jagCnw"}]},"isInherited":true,"source":{"_postman_id":"6d23f17c-77ff-4680-81e7-7d2f5b8601c3","id":"6d23f17c-77ff-4680-81e7-7d2f5b8601c3","name":"User","type":"collection"}},"urlObject":{"path":["api","shipping-order","create"],"host":["https://staginglogistic.legallyng.com"],"query":[],"variable":[]}},"response":[{"id":"db988b9c-259e-447c-a45f-9da03e8b0d16","name":"200 OK (example)","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"buyerPinNumber\": \"123456\",\r\n    \"pickupAddress\": { // seller address\r\n        \"firstName\": \"Seller\",\r\n        \"lastName\": \"Dev\",\r\n        \"phone\": \"9685741203\",\r\n        \"email\": \"gaurav.digitalrooar@gmail.com\",\r\n        \"address1\": \"Joel Ogunnaike Street\",\r\n        \"address2\": \"Joel Ogunnaike Street\",\r\n        \"city\": \"Lagos\",\r\n        \"state\": \"Lagos\",\r\n        \"country\": \"Nigeria\",\r\n        \"postcode\": \"10\",\r\n        \"shopLocationId\": \"68dcc5131d9f2289be2bea83\",\r\n        \"shopId\": \"68dcee271d9f2289be2beb4e\"\r\n    },\r\n    \"deliveryAddress\": { // buyer address\r\n        \"firstName\": \"Buyer\",\r\n        \"lastName\": \"Dev\",\r\n        \"email\": \"gaurav.digitalrooar@gmail.com\",\r\n        \"phone\": \"9685741203\",\r\n        \"address1\": \"Lawrence Daniel Close 26\",\r\n        \"address2\": \"Lawrence Daniel Close\",\r\n        \"city\": \"Lagos\",\r\n        \"state\": \"Lagos\",\r\n        \"country\": \"Nigeria\",\r\n        \"postcode\": \"10\",\r\n        \"shopLocationId\": \"68dcc5131d9f2289be2bea83\",\r\n        \"shopId\": \"68dcee271d9f2289be2beb4e\"\r\n    },\r\n    \"parcelDetails\": {\r\n        \"deliveryType\": \"STANDARD\", // STANDARD, EXPRESS\r\n        \"isFragileCharge\": true,\r\n        \"isRiderPickupCharge\": true,\r\n        \"isBuyerPickupCharge\": false\r\n    },\r\n    \"packageDetails\": [\r\n        {\r\n            \"productName\": \"IFB 24L Black Microwave Oven 24PM2B\",\r\n            \"quantity\": 1,\r\n            \"weight\": 0.8,\r\n            \"width\": 40,\r\n            \"height\": 30,\r\n            \"length\": 80\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"https://staginglogistic.legallyng.com/api/shipping-order/create"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"X-Powered-By","value":"Express"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1748"},{"key":"ETag","value":"W/\"6d4-Tc3kIUR/ahUKZi4/ZSU1fQYDwhU\""},{"key":"Set-Cookie","value":"connect.sid=s%3AicBzYXnnRvCA_PWtOq1kk-7fTUOavnBo.vgOqVDxPzwahLvv2pagDkPucFOE3uJTJ%2BiKnbco3zis; Path=/; Expires=Wed, 31 Dec 2025 06:58:26 GMT; HttpOnly"},{"key":"Date","value":"Wed, 24 Dec 2025 06:58:26 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"code\": \"0000\",\n    \"message\": \"Shipping order saved successfully\",\n    \"data\": {\n        \"id\": \"69bb93ba33e8bf7bd8868114\",\n        \"orderNumber\": \"SA-1773900730245\",\n        \"orderType\": {\n            \"key\": \"NEW-ORDER\",\n            \"label\": \"NEW-ORDER\"\n        },\n        \"applyCoupon\": {\n            \"name\": \"\",\n            \"code\": \"\",\n            \"discountPercentage\": \"0\",\n            \"startDate\": \"\",\n            \"endDate\": \"\"\n        },\n        \"subTotal\": \"5280\",\n        \"discountCharge\": \"0\",\n        \"totalCharge\": \"5280\",\n        \"createdAt\": \"2026-03-19T06:12:10.251Z\",\n        \"shippingOrderParcels\": [\n            {\n                \"trackingID\": \"1773900730266\",\n                \"trackingUrl\": \"https://logistics.legallyng.com/tracking/?track_parcel=1773900730266\",\n                \"orderType\": {\n                    \"key\": \"NEW-ORDER\",\n                    \"label\": \"NEW-ORDER\"\n                },\n                \"slip\": {\n                    \"number\": \"LAG-D0-1773900731385\",\n                    \"name\": \"package-slip-1773900730266.pdf\",\n                    \"fileUrl\": \"http://localhost:3000/storage/shipping-order-attachment/package-slip-1773900730266.pdf\"\n                },\n                \"packageDetails\": {\n                    \"productName\": \"IFB 24L Black Microwave Oven 24PM2B\",\n                    \"width\": \"40\",\n                    \"height\": \"30\",\n                    \"length\": \"80\",\n                    \"totalWeightKg\": \"0.8\",\n                    \"isFragileCharge\": true,\n                    \"isParcelShopOrderCharge\": false,\n                    \"isRiderPickupCharge\": true,\n                    \"isBuyerPickupCharge\": false,\n                    \"parcelNo\": \"1-1\",\n                    \"packageSize\": \"XL\",\n                    \"quantity\": \"1\",\n                    \"instruction\": \"\"\n                }\n            }\n        ],\n        \"etaDate\": \"2026-03-26T00:00:00.000Z\",\n        \"sellerAddress\": {\n            \"firstName\": \"Seller\",\n            \"lastName\": \"Dev\",\n            \"email\": \"gaurav.digitalrooar@gmail.com\",\n            \"phone\": \"9685741203\",\n            \"fullAddress\": \"Joel Ogunnaike Street, Joel Ogunnaike Street, Lagos, Lagos, Nigeria, 10,\",\n            \"latitude\": \"6.5853308\",\n            \"longitude\": \"3.3520137\"\n        },\n        \"sellerShopAddress\": {\n            \"id\": \"68dcee271d9f2289be2beb4e\",\n            \"shopName\": \"Ajao\",\n            \"fullAddress\": \"Ikeja Way 89, Ikeja Way, Lagos, , 10\",\n            \"latitude\": \"6.460573\",\n            \"longitude\": \"3.417272\"\n        },\n        \"buyerAddress\": {\n            \"firstName\": \"Buyer\",\n            \"lastName\": \"Dev\",\n            \"email\": \"gaurav.digitalrooar@gmail.com\",\n            \"phone\": \"9685741203\",\n            \"fullAddress\": \"Lawrence Daniel Close 26, Lawrence Daniel Close, Lagos, Lagos, Nigeria, 10\",\n            \"latitude\": \"6.552463599999999\",\n            \"longitude\": \"3.3223563\"\n        },\n        \"buyerShopAddress\": {\n            \"id\": \"68dcee271d9f2289be2beb4e\",\n            \"shopName\": \"Ajao\",\n            \"fullAddress\": \"Ikeja Way 89, Ikeja Way, Lagos, , 10\",\n            \"latitude\": \"6.460573\",\n            \"longitude\": \"3.417272\"\n        }\n    }\n}"}],"_postman_id":"d50ab0de-a82e-4dde-8e89-bc3488460a9d"},{"name":"Order Cancel","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"requests":{},"id":"add799ac-0029-47f2-bf43-0f56126545a7"}},{"listen":"prerequest","script":{"exec":[""],"type":"text/javascript","packages":{},"requests":{},"id":"a626b1aa-5352-402a-b136-6601e88cac7d"}}],"id":"174ead0d-3dfe-4830-b47e-95f7d8c6cd83","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"orderNumber\": \"SA-1773900730245\",\r\n    \"reason\": \"Messing my product\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://staginglogistic.legallyng.com/api/shipping-order/cancel","description":"<p>Cancels an existing shipping order.</p>\n<ul>\n<li><p><strong>Method</strong>: <code>POST</code></p>\n</li>\n<li><p><strong>Endpoint</strong>: <code>https://staginglogistic.legallyng.com/api/shipping-order/cancel</code></p>\n</li>\n</ul>\n<h2 id=\"authentication\">Authentication</h2>\n<ul>\n<li><strong>Auth</strong>: Bearer (accessToken)</li>\n</ul>\n<h2 id=\"headers\">Headers</h2>\n<ul>\n<li><p><code>Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJfaWQiOiI2NzA2NTJkMmU1ZTNlY2ZiYzAwZDA5NGIiLCJpYXQiOjE3NDY0NTI4NDcsImV4cCI6ODY0MDAxNzQ2MzY2NDQ3fQ.w88QYHoNSU2mcaQRXv05ts_TDCdoZxQz8SBO8jagCnw</code></p>\n</li>\n<li><p><code>Content-Type: application/json</code></p>\n</li>\n<li><p><code>Accept: application/json</code></p>\n</li>\n</ul>\n<h2 id=\"parameters\">Parameters</h2>\n<ul>\n<li><p><code>orderNumber</code> (string, <strong>required</strong>)</p>\n</li>\n<li><p><code>reason</code> (string, <strong>required</strong>)</p>\n</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJfaWQiOiI2NzA2NTJkMmU1ZTNlY2ZiYzAwZDA5NGIiLCJpYXQiOjE3NDY0NTI4NDcsImV4cCI6ODY0MDAxNzQ2MzY2NDQ3fQ.w88QYHoNSU2mcaQRXv05ts_TDCdoZxQz8SBO8jagCnw"}]},"isInherited":true,"source":{"_postman_id":"6d23f17c-77ff-4680-81e7-7d2f5b8601c3","id":"6d23f17c-77ff-4680-81e7-7d2f5b8601c3","name":"User","type":"collection"}},"urlObject":{"path":["api","shipping-order","cancel"],"host":["https://staginglogistic.legallyng.com"],"query":[],"variable":[]}},"response":[{"id":"e096159a-22af-41e6-ab24-3bb110404413","name":"200 OK (example)","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"orderNumber\": \"SA-1773900730245\",\r\n    \"reason\": \"Messing my product\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://staginglogistic.legallyng.com/api/shipping-order/cancel"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"X-Powered-By","value":"Express"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"106"},{"key":"ETag","value":"W/\"6a-icaeORawc96eBcr7nuFLKkqlJdo\""},{"key":"Date","value":"Thu, 19 Mar 2026 06:12:59 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": \"0000\",\n    \"message\": \"Shipping order found\",\n    \"data\": {\n        \"status\": {\n            \"key\": \"CANCELLED\",\n            \"label\": \"Cancelled\"\n        }\n    }\n}"}],"_postman_id":"174ead0d-3dfe-4830-b47e-95f7d8c6cd83"},{"name":"ETA Change","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"requests":{},"id":"5495d113-72ca-40ea-90bf-bec0d11c512e"}},{"listen":"prerequest","script":{"exec":[""],"type":"text/javascript","packages":{},"requests":{},"id":"c191edac-b27d-4095-a08a-eefb8ee9a930"}}],"id":"b5517203-9326-4d78-8931-81582b0b7e6c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"orderNumber\": \"SA-1773900730245\",\r\n    \"deliveryDate\": \"2026-03-26\",\r\n    \"reason\": \"Test resone\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://staginglogistic.legallyng.com/api/shipping-order/eta-change","description":"<p>Requests an ETA/delivery date change for an existing shipping order.</p>\n<ul>\n<li><p><strong>Method</strong>: <code>POST</code></p>\n</li>\n<li><p><strong>Endpoint</strong>: <code>https://staginglogistic.legallyng.com/api/shipping-order/eta-change</code></p>\n</li>\n</ul>\n<h2 id=\"authentication\">Authentication</h2>\n<ul>\n<li><strong>Auth</strong>: Bearer (accessToken)</li>\n</ul>\n<h2 id=\"headers\">Headers</h2>\n<ul>\n<li><p><code>Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJfaWQiOiI2NzA2NTJkMmU1ZTNlY2ZiYzAwZDA5NGIiLCJpYXQiOjE3NDY0NTI4NDcsImV4cCI6ODY0MDAxNzQ2MzY2NDQ3fQ.w88QYHoNSU2mcaQRXv05ts_TDCdoZxQz8SBO8jagCnw</code></p>\n</li>\n<li><p><code>Content-Type: application/json</code></p>\n</li>\n<li><p><code>Accept: application/json</code></p>\n</li>\n</ul>\n<h2 id=\"parameters\">Parameters</h2>\n<ul>\n<li><p><code>orderNumber</code> (string, <strong>required</strong>)</p>\n</li>\n<li><p><code>deliveryDate</code> (string, <strong>required</strong>)</p>\n</li>\n<li><p><code>reason</code> (string, <strong>required</strong>)</p>\n</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJfaWQiOiI2NzA2NTJkMmU1ZTNlY2ZiYzAwZDA5NGIiLCJpYXQiOjE3NDY0NTI4NDcsImV4cCI6ODY0MDAxNzQ2MzY2NDQ3fQ.w88QYHoNSU2mcaQRXv05ts_TDCdoZxQz8SBO8jagCnw"}]},"isInherited":true,"source":{"_postman_id":"6d23f17c-77ff-4680-81e7-7d2f5b8601c3","id":"6d23f17c-77ff-4680-81e7-7d2f5b8601c3","name":"User","type":"collection"}},"urlObject":{"path":["api","shipping-order","eta-change"],"host":["https://staginglogistic.legallyng.com"],"query":[],"variable":[]}},"response":[{"id":"20bdb37b-86d1-4d76-a781-2e4ce47c5e3c","name":"200 OK (example)","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"orderNumber\": \"SA-1773900730245\",\r\n    \"deliveryDate\": \"2026-03-26\",\r\n    \"reason\": \"Test resone\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://staginglogistic.legallyng.com/api/shipping-order/eta-change"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"X-Powered-By","value":"Express"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"173"},{"key":"ETag","value":"W/\"ad-cNoXxGupYrTTisr0QNYAHd0s2ZI\""},{"key":"Set-Cookie","value":"connect.sid=s%3AW_JcKoJvrFwFyP3hhtEaDxj9YA1krpwQ.jYmseFDuRvQ8MvdvkFvNoa8FHV%2FNvF3%2BYTFR50%2BsA5I; Path=/; Expires=Thu, 26 Mar 2026 06:24:30 GMT; HttpOnly"},{"key":"Date","value":"Thu, 19 Mar 2026 06:24:30 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": \"0000\",\n    \"message\": \"Shipping order saved successfully\",\n    \"data\": {\n        \"parcels\": [\n            {\n                \"trackingID\": \"1773900730266\",\n                \"etaDate\": \"2026-03-26T00:00:00.000Z\",\n                \"reason\": \"Test resone\"\n            }\n        ]\n    }\n}"}],"_postman_id":"b5517203-9326-4d78-8931-81582b0b7e6c"},{"name":"Re Attempt Payment","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"requests":{},"id":"d88d3361-8230-4a69-acd8-cfc9ff822da8"}},{"listen":"prerequest","script":{"exec":[""],"type":"text/javascript","packages":{},"requests":{},"id":"ea488191-75d7-4d1b-8ed0-ab4b294ac007"}}],"id":"1a897290-9def-4804-b0b2-f19655b9ba2a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"orderNumber\": \"SA-1773900730245\",\r\n    \"paymentOption\": \"PAY-NOW\", // PAY-NOW, PAY-BY-SELLER, PAY-ON-DELIVERY\r\n\r\n    // only paymentOption: PAY-NOW, PAY-BY-SELLER\r\n    \"paymentType\": \"PAYSTACK\",\r\n    \"paymentStatus\": \"SUCCESS\",\r\n    \"paymentResponse\": {\r\n        \"reference\": \"SS-1768307991580\",\r\n        \"trans\": \"5601189093\",\r\n        \"status\": \"success\",\r\n        \"message\": \"Approved\",\r\n        \"transaction\": \"5601189093\",\r\n        \"trxref\": \"SS-1768307991580\",\r\n        \"redirecturl\": \"?trxref=SS-1768307991580&reference=SS-1768307991580\"\r\n    }\r\n    // only paymentOption: PAY-NOW, PAY-BY-SELLER\r\n}","options":{"raw":{"language":"json"}}},"url":"https://staginglogistic.legallyng.com/api/shipping-order/re-attempt/payment","description":"<p>Re-attempts payment for an existing shipping order (e.g., retry after failure or change payment option).</p>\n<ul>\n<li><p><strong>Method</strong>: <code>POST</code></p>\n</li>\n<li><p><strong>Endpoint</strong>: <code>https://staginglogistic.legallyng.com/api/shipping-order/re-attempt/payment</code></p>\n</li>\n</ul>\n<h2 id=\"authentication\">Authentication</h2>\n<ul>\n<li><strong>Auth</strong>: Bearer (accessToken)</li>\n</ul>\n<h2 id=\"headers\">Headers</h2>\n<ul>\n<li><p><code>Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJfaWQiOiI2NzA2NTJkMmU1ZTNlY2ZiYzAwZDA5NGIiLCJpYXQiOjE3NDY0NTI4NDcsImV4cCI6ODY0MDAxNzQ2MzY2NDQ3fQ.w88QYHoNSU2mcaQRXv05ts_TDCdoZxQz8SBO8jagCnw</code></p>\n</li>\n<li><p><code>Content-Type: application/json</code></p>\n</li>\n<li><p><code>Accept: application/json</code></p>\n</li>\n</ul>\n<h2 id=\"parameters\">Parameters</h2>\n<ul>\n<li><p><code>orderNumber</code> (string, <strong>required</strong>)</p>\n</li>\n<li><p><code>paymentOption</code> (string, <strong>required</strong>)</p>\n</li>\n<li><p><code>paymentType</code> (string, <strong>required</strong>)</p>\n</li>\n<li><p><code>paymentStatus</code> (string, <strong>required</strong>)</p>\n</li>\n<li><p><code>paymentResponse</code> (object, <strong>required</strong>)</p>\n</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJfaWQiOiI2NzA2NTJkMmU1ZTNlY2ZiYzAwZDA5NGIiLCJpYXQiOjE3NDY0NTI4NDcsImV4cCI6ODY0MDAxNzQ2MzY2NDQ3fQ.w88QYHoNSU2mcaQRXv05ts_TDCdoZxQz8SBO8jagCnw"}]},"isInherited":true,"source":{"_postman_id":"6d23f17c-77ff-4680-81e7-7d2f5b8601c3","id":"6d23f17c-77ff-4680-81e7-7d2f5b8601c3","name":"User","type":"collection"}},"urlObject":{"path":["api","shipping-order","re-attempt","payment"],"host":["https://staginglogistic.legallyng.com"],"query":[],"variable":[]}},"response":[{"id":"b4e4956d-e4d4-4ad5-81e0-e7e4b75caab9","name":"200 OK (example)","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"orderNumber\": \"SA-1773900730245\",\r\n    \"paymentOption\": \"PAY-NOW\", // PAY-NOW, PAY-BY-SELLER, PAY-ON-DELIVERY\r\n\r\n    // only paymentOption: PAY-NOW, PAY-BY-SELLER\r\n    \"paymentType\": \"PAYSTACK\",\r\n    \"paymentStatus\": \"SUCCESS\",\r\n    \"paymentResponse\": {\r\n        \"reference\": \"SS-1768307991580\",\r\n        \"trans\": \"5601189093\",\r\n        \"status\": \"success\",\r\n        \"message\": \"Approved\",\r\n        \"transaction\": \"5601189093\",\r\n        \"trxref\": \"SS-1768307991580\",\r\n        \"redirecturl\": \"?trxref=SS-1768307991580&reference=SS-1768307991580\"\r\n    }\r\n    // only paymentOption: PAY-NOW, PAY-BY-SELLER\r\n}","options":{"raw":{"language":"json"}}},"url":"https://staginglogistic.legallyng.com/api/shipping-order/re-attempt/payment"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"X-Powered-By","value":"Express"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"71"},{"key":"ETag","value":"W/\"47-Vs5nG4jZy4U4JqNdginejxt8j5Y\""},{"key":"Date","value":"Thu, 19 Mar 2026 06:15:55 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": \"0000\",\n    \"message\": \"Shipping order payment successful\",\n    \"data\": {}\n}"}],"_postman_id":"1a897290-9def-4804-b0b2-f19655b9ba2a"},{"name":"Order Return","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"requests":{},"id":"cbb4044d-a495-451d-ad2c-8a1cc5623856"}},{"listen":"prerequest","script":{"exec":[""],"type":"text/javascript","packages":{},"requests":{},"id":"2c680b18-8200-4fd0-8b3d-bc23603d346c"}}],"id":"e8b5f9ec-0924-4f3e-be54-2e08f6b02b61","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"trackingID\": [\"1773900730266\"],\r\n    \"pinNumber\": \"123456\",\r\n    \"reason\": \"Test return resone\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://staginglogistic.legallyng.com/api/shipping-order/return","description":"<p>Initiates a return for one or more shipped items using tracking ID(s) and buyer PIN.</p>\n<ul>\n<li><p><strong>Method</strong>: <code>POST</code></p>\n</li>\n<li><p><strong>Endpoint</strong>: <code>https://staginglogistic.legallyng.com/api/shipping-order/return</code></p>\n</li>\n</ul>\n<h2 id=\"authentication\">Authentication</h2>\n<ul>\n<li><strong>Auth</strong>: Bearer (accessToken)</li>\n</ul>\n<h3 id=\"headers\">Headers</h3>\n<ul>\n<li><p><code>Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJfaWQiOiI2NzA2NTJkMmU1ZTNlY2ZiYzAwZDA5NGIiLCJpYXQiOjE3NDY0NTI4NDcsImV4cCI6ODY0MDAxNzQ2MzY2NDQ3fQ.w88QYHoNSU2mcaQRXv05ts_TDCdoZxQz8SBO8jagCnw</code></p>\n</li>\n<li><p><code>Content-Type: application/json</code></p>\n</li>\n</ul>\n<h2 id=\"parameters\">Parameters</h2>\n<ul>\n<li><p><code>trackingId</code> (string, <strong>required</strong>)</p>\n</li>\n<li><p><code>pinNumber</code> (string, <strong>required</strong>)</p>\n</li>\n<li><p><code>reason</code> (string, <strong>required</strong>)</p>\n</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJfaWQiOiI2NzA2NTJkMmU1ZTNlY2ZiYzAwZDA5NGIiLCJpYXQiOjE3NDY0NTI4NDcsImV4cCI6ODY0MDAxNzQ2MzY2NDQ3fQ.w88QYHoNSU2mcaQRXv05ts_TDCdoZxQz8SBO8jagCnw"}]},"isInherited":true,"source":{"_postman_id":"6d23f17c-77ff-4680-81e7-7d2f5b8601c3","id":"6d23f17c-77ff-4680-81e7-7d2f5b8601c3","name":"User","type":"collection"}},"urlObject":{"path":["api","shipping-order","return"],"host":["https://staginglogistic.legallyng.com"],"query":[],"variable":[]}},"response":[{"id":"8488aff5-2969-44df-8bfa-80c50579f250","name":"200 OK (example)","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"trackingID\": [\"1770808809757\"],\r\n    \"pinNumber\": \"123456\",\r\n    \"reason\": \"Test return resone\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://staginglogistic.legallyng.com/api/shipping-order/return"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"X-Powered-By","value":"Express"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1686"},{"key":"ETag","value":"W/\"696-xgHhIC3yAUy0Q3Wf/bXYhqE3Miw\""},{"key":"Set-Cookie","value":"connect.sid=s%3Asz6jhZdCS_iWO-mwmEYhs2vBFjqLJZIR.mAVVqwj8bqVtd6JsKnbH7rKi0%2BkcBA1deSMIv7y3Vew; Path=/; Expires=Thu, 18 Dec 2025 06:42:28 GMT; HttpOnly"},{"key":"Date","value":"Thu, 11 Dec 2025 06:42:28 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": \"0000\",\n    \"message\": \"Shipping order saved successfully\",\n    \"data\": {\n        \"id\": \"69bb9d157a119c8290d9d791\",\n        \"orderNumber\": \"SA-1773903127850\",\n        \"orderType\": {\n            \"key\": \"RETURNED\",\n            \"label\": \"RETURNED\"\n        },\n        \"applyCoupon\": {\n            \"name\": \"\",\n            \"code\": \"\",\n            \"discountPercentage\": \"\",\n            \"startDate\": \"\",\n            \"endDate\": \"\"\n        },\n        \"subTotal\": \"5280\",\n        \"discountCharge\": \"0\",\n        \"totalCharge\": \"5280\",\n        \"createdAt\": \"2026-03-19T06:52:05.553Z\",\n        \"shippingOrderParcels\": [\n            {\n                \"trackingID\": \"1773903125579\",\n                \"trackingUrl\": \"https://logistics.legallyng.com/tracking/?track_parcel=1773903125579\",\n                \"orderType\": {\n                    \"key\": \"RETURNED\",\n                    \"label\": \"RETURNED\"\n                },\n                \"slip\": {\n                    \"number\": \"LAG-D0-1773903126159\",\n                    \"name\": \"package-slip-1773903125579.pdf\",\n                    \"fileUrl\": \"http://localhost:3000/storage/shipping-order-attachment/package-slip-1773903125579.pdf\"\n                },\n                \"packageDetails\": {\n                    \"productName\": \"IFB 24L Black Microwave Oven 24PM2B\",\n                    \"width\": \"40\",\n                    \"height\": \"30\",\n                    \"length\": \"80\",\n                    \"totalWeightKg\": \"0.8\",\n                    \"isFragileCharge\": true,\n                    \"isParcelShopOrderCharge\": false,\n                    \"isRiderPickupCharge\": true,\n                    \"isBuyerPickupCharge\": false,\n                    \"parcelNo\": \"1-1\",\n                    \"packageSize\": \"XL\",\n                    \"quantity\": \"1\",\n                    \"instruction\": \"Test return resone\"\n                }\n            }\n        ],\n        \"etaDate\": \"2026-03-26T00:00:00.000Z\",\n        \"sellerAddress\": {\n            \"firstName\": \"Buyer\",\n            \"lastName\": \"Dev\",\n            \"email\": \"gaurav.digitalrooar@gmail.com\",\n            \"phone\": \"9685741203\",\n            \"fullAddress\": \"Lawrence Daniel Close 26, Lawrence Daniel Close, Lagos, Lagos, Nigeria, 10,\",\n            \"latitude\": \"6.552463599999999\",\n            \"longitude\": \"3.3223563\"\n        },\n        \"sellerShopAddress\": {\n            \"id\": \"68dcee271d9f2289be2beb4e\",\n            \"shopName\": \"Ajao\",\n            \"fullAddress\": \"Ikeja Way 89, Ikeja Way, Lagos, , 10\",\n            \"latitude\": \"6.460573\",\n            \"longitude\": \"3.417272\"\n        },\n        \"buyerAddress\": {\n            \"firstName\": \"Seller\",\n            \"lastName\": \"Dev\",\n            \"email\": \"gaurav.digitalrooar@gmail.com\",\n            \"phone\": \"9685741203\",\n            \"fullAddress\": \"Joel Ogunnaike Street, Joel Ogunnaike Street, Lagos, Lagos, Nigeria, 10\",\n            \"latitude\": \"6.5853308\",\n            \"longitude\": \"3.3520137\"\n        },\n        \"buyerShopAddress\": {\n            \"id\": \"68dcee271d9f2289be2beb4e\",\n            \"shopName\": \"Ajao\",\n            \"fullAddress\": \"Ikeja Way 89, Ikeja Way, Lagos, , 10\",\n            \"latitude\": \"6.460573\",\n            \"longitude\": \"3.417272\"\n        }\n    }\n}"}],"_postman_id":"e8b5f9ec-0924-4f3e-be54-2e08f6b02b61"},{"name":"Order Track","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"requests":{},"id":"d8fbd7f6-64f4-4dc6-851d-f2c79f781f0d"}},{"listen":"prerequest","script":{"exec":[""],"type":"text/javascript","packages":{},"requests":{},"id":"ff3fbf83-ca35-40cc-9ac0-94f776ca9dbb"}}],"id":"e59643f9-8d9d-43d6-b31c-a18fb4780cca","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"trackingID\": \"1773900730266\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://staginglogistic.legallyng.com/api/shipping-order/track","description":"<p>Tracks a shipping order by tracking ID and returns the current shipment status and progress.</p>\n<ul>\n<li><p><strong>Method</strong>: <code>POST</code></p>\n</li>\n<li><p><strong>Endpoint</strong>: <code>https://staginglogistic.legallyng.com/api/shipping-order/track</code></p>\n</li>\n</ul>\n<h2 id=\"headers\">Headers</h2>\n<ul>\n<li><p><code>Content-Type: application/json</code></p>\n</li>\n<li><p><code>Accept: application/json</code></p>\n</li>\n</ul>\n<h2 id=\"parameters\">Parameters</h2>\n<ul>\n<li><code>trackingId</code> (string, <strong>required</strong>)</li>\n</ul>\n","urlObject":{"path":["api","shipping-order","track"],"host":["https://staginglogistic.legallyng.com"],"query":[],"variable":[]}},"response":[{"id":"64e5c750-6aed-4292-9d58-77148961912f","name":"200 OK (example)","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"trackingID\": \"1773900730266\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://staginglogistic.legallyng.com/api/shipping-order/track"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"X-Powered-By","value":"Express"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1811"},{"key":"ETag","value":"W/\"713-W7tCW1+SOTRNow7UnS0JlO9j0l8\""},{"key":"Date","value":"Thu, 19 Mar 2026 06:26:53 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": \"0000\",\n    \"message\": \"Shipping order found\",\n    \"data\": {\n        \"trackingID\": \"1773900730266\",\n        \"trackingUrl\": \"https://logistics.legallyng.com/tracking/?track_parcel=1773900730266\",\n        \"pickupAddress\": {\n            \"firstName\": \"Seller\",\n            \"lastName\": \"Dev\",\n            \"email\": \"gaurav.digitalrooar@gmail.com\",\n            \"phone\": \"9685741203\",\n            \"address1\": \"Joel Ogunnaike Street\",\n            \"address2\": \"Joel Ogunnaike Street\",\n            \"city\": \"Lagos\",\n            \"state\": \"Lagos\",\n            \"country\": \"Nigeria\",\n            \"postcode\": \"10\",\n            \"latitude\": \"6.5853308\",\n            \"longitude\": \"3.3520137\",\n            \"shop\": {\n                \"id\": \"68dcee271d9f2289be2beb4e\",\n                \"shopName\": \"Ajao\"\n            }\n        },\n        \"deliveryAddress\": {\n            \"firstName\": \"Buyer\",\n            \"lastName\": \"Dev\",\n            \"email\": \"gaurav.digitalrooar@gmail.com\",\n            \"phone\": \"9685741203\",\n            \"address1\": \"Lawrence Daniel Close 26\",\n            \"address2\": \"Lawrence Daniel Close\",\n            \"city\": \"Lagos\",\n            \"state\": \"Lagos\",\n            \"country\": \"Nigeria\",\n            \"postcode\": \"10\",\n            \"latitude\": \"6.552463599999999\",\n            \"longitude\": \"3.3223563\",\n            \"shop\": {\n                \"id\": \"68dcee271d9f2289be2beb4e\",\n                \"shopName\": \"Ajao\"\n            }\n        },\n        \"packageDetails\": {\n            \"productName\": \"IFB 24L Black Microwave Oven 24PM2B\",\n            \"isFragileCharge\": true,\n            \"isParcelShopOrderCharge\": false,\n            \"isRiderPickupCharge\": true,\n            \"isBuyerPickupCharge\": false,\n            \"parcelNo\": \"1-1\",\n            \"packageSize\": \"XL\",\n            \"quantity\": \"1\"\n        },\n        \"etaDate\": \"2026-03-26T00:00:00.000Z\",\n        \"shippingOrderStatus\": {\n            \"key\": \"OFF-LOADING\",\n            \"label\": \"Off Loaded\",\n            \"scanLabel\": \"Off Loading\"\n        },\n        \"trackingLog\": [\n            {\n                \"message\": \"Your order has been placed\",\n                \"description\": \"Your shipment order has been confirmed and registered in our system.\",\n                \"currentLocation\": \"Joel Ogunnaike Street, Joel Ogunnaike Street Lagos, Lagos, Nigeria, 10\",\n                \"reason\": \"\",\n                \"createdAt\": \"2026-03-19T06:12:14.078Z\"\n            },\n            {\n                \"message\": \"Your order delivery date has changed #SA-1773900730245\",\n                \"description\": \"Your order delivery date has changed to Thu Mar 26 2026 05:30:00 GMT+0530 (India Standard Time)\",\n                \"currentLocation\": \"\",\n                \"reason\": \"Test resone\",\n                \"createdAt\": \"2026-03-19T06:24:30.727Z\"\n            }\n        ]\n    }\n}"}],"_postman_id":"e59643f9-8d9d-43d6-b31c-a18fb4780cca"}],"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJfaWQiOiI2NzA2NTJkMmU1ZTNlY2ZiYzAwZDA5NGIiLCJpYXQiOjE3NDY0NTI4NDcsImV4cCI6ODY0MDAxNzQ2MzY2NDQ3fQ.w88QYHoNSU2mcaQRXv05ts_TDCdoZxQz8SBO8jagCnw"}]}},"event":[{"listen":"prerequest","script":{"id":"cc8d93ad-f1e4-424e-a94c-f0499c6eb6fd","type":"text/javascript","packages":{},"requests":{},"exec":[""]}},{"listen":"test","script":{"id":"5a6d1398-e250-4401-b5ec-79fc484a215b","type":"text/javascript","packages":{},"requests":{},"exec":[""]}}],"variable":[{"key":"URL-LIVE","value":"","disabled":true},{"key":"URL-STAGING","value":"","disabled":true},{"key":"URL-LOCAL","value":"","disabled":true},{"key":"URL","value":"https://staginglogistic.legallyng.com"},{"key":"TOKEN","value":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJfaWQiOiI2NzA2NTJkMmU1ZTNlY2ZiYzAwZDA5NGIiLCJpYXQiOjE3NDY0NTI4NDcsImV4cCI6ODY0MDAxNzQ2MzY2NDQ3fQ.w88QYHoNSU2mcaQRXv05ts_TDCdoZxQz8SBO8jagCnw"}]}