{"info":{"_postman_id":"8cfff0aa-ab07-3467-f734-135fd127b313","name":"XOver Orchestra API - Production","description":"<html><head></head><body><h2>Orchestra</h2>\n\n<ul>\n\n<li>This is the master orchestration layer for the system. All requests from Imobtek client applications must be sent to this module; all responses must be sent from it.</li>\n\n<li>The first call from a client app to Orchestra must be for authorization. This is the only endpoint that's accessible without authorization; all other endpoints require a JSON Web Token that authorizes the user.</li>\n\n<li>When an app requests data that requires making requests to more than one service, Orchestra should make the requests to the various services, wait to receive all the data, and then assemble their responses into a package which it then delivers to the client app. As with all modules, never send the client more data than it needs to have.</li>\n\n<li>If a third-party app needs to interface with the Imobtek system, add a separate controller named after the customer (e.g. 'ShoppersDrugMartController') with functions for requesting the required data.</li>\n</ul></body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"2269493","collectionId":"8cfff0aa-ab07-3467-f734-135fd127b313","publishedId":"6fYTiGC","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"EF5B25"},"publishDate":"2017-12-13T22:42:06.000Z"},"item":[{"name":"Authentication Service","item":[{"name":"/authorize","id":"d5267a36-1f73-d30d-ecac-d5072ea7138b","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"info@acquireenterprises.com\",\n    \"password\": \"ChangeMeOnProd23!!\"\n}"},"url":"https://api.xovertechnologies.com/authorize","description":"<p>Request authorization (jwt token)</p>\n","urlObject":{"protocol":"https","path":["authorize"],"host":["api","xovertechnologies","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"d5267a36-1f73-d30d-ecac-d5072ea7138b"},{"name":"/authorize/api","id":"a65ae5f4-7495-900c-8b21-79bc51d10c86","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"app_settings_id\" : \"231819a8-50d5-4bce-a812-11b2ef3e320f\",\n\t\"secret_key\" : \"letmein\",\n\t\"nonce\" : \"2344\",\n\t\"timestamp\" : \"1512084467\",\n\t\"signature\" : \"ZTU1MGU1OGIzOTVmMTZhMjliZDEwOGIwM2MyN2Q5NzkwNzZhODcxMmNiZjZlZDc2MzQxNDMzYWNjZWE1NTY2Nw%3D%3D\"\n}"},"url":"https://api.xovertechnologies.com/authorize/api","description":"<p>Request authorization. This authorization uses a combination of HMAC and JWT. </p>\n<p>To setup your authentication request: you will find the <code>app_settings_id</code> and <code>secret_key</code> in the Merchant Portal under the settings menu. \nThe request also requires: </p>\n<ul>\n<li>a <code>nonce</code> (random number between 1 and 9999) </li>\n<li>a Unix UTC <code>timestamp</code>. </li>\n<li>a <code>signature</code> based on the above parameters</li>\n</ul>\n<p><strong>To calculate the signature (PHP EXAMPLE):</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>// Formulate a request string as follows \n$request_string = \"POST+/authorize/api\"+\".$app_settings_id.\"+\".$nonce.\"+\".$timestamp;\n\n// Encode the request string using HMAC and algorithm SHA256, Base64 encode the result, and finally URL encode\n$signature = urlencode(base64_encode(hash_hmac(\"sha256\", $request_string, $secret_key)));\n</code></pre>","urlObject":{"protocol":"https","path":["authorize","api"],"host":["api","xovertechnologies","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"a65ae5f4-7495-900c-8b21-79bc51d10c86"},{"name":"/logout","id":"e5308bbe-3b7d-0603-a1d7-be3964783952","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I..."}],"body":{"mode":"raw","raw":"{\n    \"user_id\": \"7befc130-2957-11e7-a4ac-03ca02d5f796\",\n    \"merchant_id\": \"\",\n    \"location_id\": \"\"\n}"},"url":"https://api.xovertechnologies.com/logout","description":"<p>Log a user out of an application</p>\n","urlObject":{"protocol":"https","path":["logout"],"host":["api","xovertechnologies","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"e5308bbe-3b7d-0603-a1d7-be3964783952"},{"name":"/customer/login","id":"a85eeab2-ffed-3393-65ab-d16d6aa9231a","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"scott.vrooman@acquireenterprises.com\",\n    \"user_password\": \"awesomeman\",\n    \"app_settings_id\": \"\"\n}"},"url":"https://api.xovertechnologies.com/customer/login","description":"<p>Customer login</p>\n","urlObject":{"protocol":"https","path":["customer","login"],"host":["api","xovertechnologies","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"a85eeab2-ffed-3393-65ab-d16d6aa9231a"}],"id":"2a5eaa35-9d0f-5f87-155b-c853f954c20f","_postman_id":"2a5eaa35-9d0f-5f87-155b-c853f954c20f","description":""},{"name":"Campaigns Service","item":[{"name":"/campaigns/{type}/get","id":"cfa4030b-3ec0-0704-9168-662dd0b65757","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I...","description":"<p>Requires a valid JWT authorization token with [ merchant or manager or staff or customer ] access.</p>\n"}],"body":{"mode":"raw","raw":"{}"},"url":"https://api.acquireenterprises.com/campaigns/{type}/get","description":"<p>Retrieve campaigns by type.</p>\n","urlObject":{"protocol":"https","path":["campaigns","{type}","get"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"cfa4030b-3ec0-0704-9168-662dd0b65757"},{"name":"/campaign/get/{id}","id":"e02390fe-08bd-dc58-cba5-8f8e17b48f1f","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I...","description":"<p>Requires a valid JWT authorization token with [ merchant or manager or staff or customer ] access.</p>\n"}],"body":{"mode":"raw","raw":"{}"},"url":"https://api.acquireenterprises.com/campaign/get/{id}","description":"<p>Retrieve a campaign by id.</p>\n","urlObject":{"protocol":"https","path":["campaign","get","{id}"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"e02390fe-08bd-dc58-cba5-8f8e17b48f1f"},{"name":"/campaign/create","id":"e209170f-c7e6-6d31-944a-17c737c3b912","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I...","description":"<p>Requires a valid JWT authorization token with [ merchant or manager  ] access.</p>\n"}],"body":{"mode":"raw","raw":"{}"},"url":"https://api.acquireenterprises.com/campaign/create","description":"<p>Create a campaign.</p>\n","urlObject":{"protocol":"https","path":["campaign","create"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"e209170f-c7e6-6d31-944a-17c737c3b912"},{"name":"/campaign/update","id":"a54317a7-ba75-5815-0f8c-c030728c26cd","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I...","description":"<p>Requires a valid JWT authorization token with [ merchant or manager  ] access.</p>\n"}],"body":{"mode":"raw","raw":"{}"},"url":"https://api.acquireenterprises.com/campaign/update","description":"<p>Update a campaign.</p>\n","urlObject":{"protocol":"https","path":["campaign","update"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"a54317a7-ba75-5815-0f8c-c030728c26cd"},{"name":"/campaign/delete","id":"204c269f-d8a4-c37c-be7a-162f1f63d002","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I...","description":"<p>Requires a valid JWT authorization token with [ merchant or manager  ] access.</p>\n"}],"body":{"mode":"raw","raw":"{}"},"url":"https://api.acquireenterprises.com/campaign/delete","description":"<p>Delete a campaign.</p>\n","urlObject":{"protocol":"https","path":["campaign","delete"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"204c269f-d8a4-c37c-be7a-162f1f63d002"},{"name":"/campaigns/recipients/update-seen-status","id":"927dcebb-bcbb-70be-867e-bc2c456aefcd","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I...","description":"<p>Requires a valid JWT authorization token with [ merchant or manager  ] access.</p>\n"}],"body":{"mode":"raw","raw":"{}"},"url":"https://api.acquireenterprises.com/campaigns/recipients/update-seen-status","description":"<p>Update whether a campaign has been viewed by a recipient(s).</p>\n","urlObject":{"protocol":"https","path":["campaigns","recipients","update-seen-status"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"927dcebb-bcbb-70be-867e-bc2c456aefcd"}],"id":"040fd0ea-ba29-bd8a-084d-de9bd95281f3","description":"<p>Create strategic marketing campaigns via email and push notifications.</p>\n","_postman_id":"040fd0ea-ba29-bd8a-084d-de9bd95281f3"},{"name":"Ecommerce Service","item":[{"name":"/ecommerce/products/all","id":"dbab67b9-a6d6-8deb-e8f1-575e6c836b89","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I..."},{"key":"Content-Type","value":"application/json","description":"<p>Requires a valid JWT authorization token with [ merchant or customer ] access.</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"merchant_id\": {{merchantId}}\n}"},"url":"https://api.acquireenterprises.com/ecommerce/products/all","description":"<p>Get all products.</p>\n","urlObject":{"protocol":"https","path":["ecommerce","products","all"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"dbab67b9-a6d6-8deb-e8f1-575e6c836b89"},{"name":"/ecommerce/purchase","id":"3a977cfc-4678-3aa9-cf00-6494b62b55fc","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I...","description":"<p>Requires a valid JWT authorization token with [ merchant or customer ] access.</p>\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"data\": {{tbd}}\n}"},"url":"https://api.acquireenterprises.com/ecommerce/purchase","description":"<p>Purchase a product from the virtual cart. </p>\n","urlObject":{"protocol":"https","path":["ecommerce","purchase"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"3a977cfc-4678-3aa9-cf00-6494b62b55fc"},{"name":"/ecommerce/tax/calculate","id":"47b57bd2-7b57-0588-6c62-dc28c685ab9a","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I...","description":"<p>Requires a valid JWT authorization token with [ merchant or customer ] access.</p>\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"data\": {{tbd}}\n}"},"url":"https://api.acquireenterprises.com/ecommerce/tax/calculate","description":"<p>Calculate tax on a product.</p>\n","urlObject":{"protocol":"https","path":["ecommerce","tax","calculate"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"47b57bd2-7b57-0588-6c62-dc28c685ab9a"},{"name":"/ecommerce/products/add","id":"ae012767-5c61-2eb7-4cc3-887b482b5ae7","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I...","description":"<p>Requires a valid JWT authorization token with [ merchant ] access.</p>\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"data\": {{tbd}}\n}"},"url":"https://api.acquireenterprises.com/ecommerce/products/add","description":"<p>Add a product.</p>\n","urlObject":{"protocol":"https","path":["ecommerce","products","add"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"ae012767-5c61-2eb7-4cc3-887b482b5ae7"},{"name":"/ecommerce/product/get","id":"e5b46988-18e7-4d87-77cb-62f1fd02ed3f","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I...","description":"<p>Requires a valid JWT authorization token with [ merchant ] access.</p>\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"data\": {{tbd}}\n}"},"url":"https://api.acquireenterprises.com/ecommerce/product/get","description":"<p>Retrieve a product.</p>\n","urlObject":{"protocol":"https","path":["ecommerce","product","get"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"e5b46988-18e7-4d87-77cb-62f1fd02ed3f"},{"name":"/ecommerce/products/delete","id":"fb77b670-47c1-d786-4522-1523b714ba93","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I...","description":"<p>Requires a valid JWT authorization token with [ merchant ] access.</p>\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"data\": {{tbd}}\n}"},"url":"https://api.acquireenterprises.com/ecommerce/products/delete","description":"<p>Retrieve a product.</p>\n","urlObject":{"protocol":"https","path":["ecommerce","products","delete"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"fb77b670-47c1-d786-4522-1523b714ba93"},{"name":"/ecommerce/products/update/system","id":"7f443a0e-dabe-7062-0963-16e37454ac75","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I...","description":"<p>Requires a valid JWT authorization token with [ merchant ] access.</p>\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"data\": {{tbd}}\n}"},"url":"https://api.acquireenterprises.com/ecommerce/products/update/system","description":"<p>Retrieve a product.</p>\n","urlObject":{"protocol":"https","path":["ecommerce","products","update","system"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"7f443a0e-dabe-7062-0963-16e37454ac75"},{"name":"/ecommerce/product/feature","id":"5be9c945-f841-142f-d63c-a4b9839402e2","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I...","description":"<p>Requires a valid JWT authorization token with [ merchant ] access.</p>\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"data\": {{tbd}}\n}"},"url":"https://api.acquireenterprises.com/ecommerce/product/feature","description":"<p>Retrieve a product.</p>\n","urlObject":{"protocol":"https","path":["ecommerce","product","feature"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"5be9c945-f841-142f-d63c-a4b9839402e2"},{"name":"/ecommerce/products/add-to-cart","id":"3efc10d5-518b-5d14-f90a-c4f54c8519f8","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I...","description":"<p>Requires a valid JWT authorization token with [ merchant ] access.</p>\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"data\": {{tbd}}\n}"},"url":"https://api.acquireenterprises.com/ecommerce/products/add-to-cart","description":"<p>Retrieve a product.</p>\n","urlObject":{"protocol":"https","path":["ecommerce","products","add-to-cart"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"3efc10d5-518b-5d14-f90a-c4f54c8519f8"},{"name":"/ecommerce/cart/product/update","id":"1766bca2-29de-4d08-55ec-14517339c4df","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I...","description":"<p>Requires a valid JWT authorization token with [ merchant ] access.</p>\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"data\": {{tbd}}\n}"},"url":"https://api.acquireenterprises.com/ecommerce/cart/product/update","description":"<p>Retrieve a product.</p>\n","urlObject":{"protocol":"https","path":["ecommerce","cart","product","update"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"1766bca2-29de-4d08-55ec-14517339c4df"},{"name":"/ecommerce/products/remove-from-cart","id":"06d69987-4112-cac0-5ae3-4b4614cf66ca","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I...","description":"<p>Requires a valid JWT authorization token with [ merchant ] access.</p>\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"data\": {{tbd}}\n}"},"url":"https://api.acquireenterprises.com/ecommerce/products/remove-from-cart","description":"<p>Retrieve a product.</p>\n","urlObject":{"protocol":"https","path":["ecommerce","products","remove-from-cart"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"06d69987-4112-cac0-5ae3-4b4614cf66ca"},{"name":"/ecommerce/cart/empty","id":"5af5bcaf-80cd-7c5e-9f24-d3875ced7deb","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I...","description":"<p>Requires a valid JWT authorization token with [ merchant ] access.</p>\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"data\": {{tbd}}\n}"},"url":"https://api.acquireenterprises.com/ecommerce/cart/empty","description":"<p>Retrieve a product.</p>\n","urlObject":{"protocol":"https","path":["ecommerce","cart","empty"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"5af5bcaf-80cd-7c5e-9f24-d3875ced7deb"},{"name":"/ecommerce/cart/get/products","id":"d985ae0f-5e0b-2f4a-bf39-bd0791281ee2","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I...","description":"<p>Requires a valid JWT authorization token with [ merchant ] access.</p>\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"data\": {{tbd}}\n}"},"url":"https://api.acquireenterprises.com/ecommerce/cart/get/products","description":"<p>Retrieve a product.</p>\n","urlObject":{"protocol":"https","path":["ecommerce","cart","get","products"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"d985ae0f-5e0b-2f4a-bf39-bd0791281ee2"},{"name":"/ecommerce/categories/add","id":"ba7334b7-76fc-b1ca-16ba-70cc211b5578","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I...","description":"<p>Requires a valid JWT authorization token with [ merchant ] access.</p>\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"data\": {{tbd}}\n}"},"url":"https://api.acquireenterprises.com/ecommerce/categories/add","description":"<p>Retrieve a product.</p>\n","urlObject":{"protocol":"https","path":["ecommerce","categories","add"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"ba7334b7-76fc-b1ca-16ba-70cc211b5578"},{"name":"/ecommerce/categories/delete","id":"060f9c7f-ccaf-4ec0-39d0-2ee071bfa11e","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I...","description":"<p>Requires a valid JWT authorization token with [ merchant ] access.</p>\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"data\": {{tbd}}\n}"},"url":"https://api.acquireenterprises.com/ecommerce/categories/delete","description":"<p>Retrieve a product.</p>\n","urlObject":{"protocol":"https","path":["ecommerce","categories","delete"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"060f9c7f-ccaf-4ec0-39d0-2ee071bfa11e"},{"name":"/ecommerce/categories/edit","id":"063418fa-8422-9b3e-0992-13722f4492d2","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I...","description":"<p>Requires a valid JWT authorization token with [ merchant ] access.</p>\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"data\": {{tbd}}\n}"},"url":"https://api.acquireenterprises.com/ecommerce/categories/edit","description":"<p>Retrieve a product.</p>\n","urlObject":{"protocol":"https","path":["ecommerce","categories","edit"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"063418fa-8422-9b3e-0992-13722f4492d2"},{"name":"/ecommerce/categories/all","id":"77ea2f92-f080-7a8a-774d-7a594498883f","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I...","description":"<p>Requires a valid JWT authorization token with [ merchant ] access.</p>\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"data\": {{tbd}}\n}"},"url":"https://api.acquireenterprises.com/ecommerce/categories/all","description":"<p>Retrieve a product.</p>\n","urlObject":{"protocol":"https","path":["ecommerce","categories","all"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"77ea2f92-f080-7a8a-774d-7a594498883f"},{"name":"/ecommerce/transaction/get","id":"bc293fec-4892-ddcc-f357-c177f70a5ac8","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I...","description":"<p>Requires a valid JWT authorization token with [ merchant ] access.</p>\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"data\": {{tbd}}\n}"},"url":"https://api.acquireenterprises.com/ecommerce/transaction/get","description":"<p>Retrieve a product.</p>\n","urlObject":{"protocol":"https","path":["ecommerce","transaction","get"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"bc293fec-4892-ddcc-f357-c177f70a5ac8"},{"name":"/ecommerce/transactions/customer","id":"479e05ee-367e-be9b-0138-9f6fd74b5ec3","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I...","description":"<p>Requires a valid JWT authorization token with [ merchant ] access.</p>\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"data\": {{tbd}}\n}"},"url":"https://api.acquireenterprises.com/ecommerce/transactions/customer","description":"<p>Retrieve a product.</p>\n","urlObject":{"protocol":"https","path":["ecommerce","transactions","customer"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"479e05ee-367e-be9b-0138-9f6fd74b5ec3"},{"name":"/ecommerce/transactions/all","id":"8f21a1e4-ae91-b115-be78-0cf4be062c20","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I...","description":"<p>Requires a valid JWT authorization token with [ merchant ] access.</p>\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"data\": {{tbd}}\n}"},"url":"https://api.acquireenterprises.com/ecommerce/transactions/all","description":"<p>Retrieve a product.</p>\n","urlObject":{"protocol":"https","path":["ecommerce","transactions","all"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"8f21a1e4-ae91-b115-be78-0cf4be062c20"},{"name":"/credit-cards/get","id":"b165addf-75fd-6026-e300-8ccfb3f4f3f9","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I...","description":"<p>Requires a valid JWT authorization token with [ merchant or manager or staff ] access.</p>\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://api.acquireenterprises.com/ecommerce/order/pickup","description":"<p>Mark an ecommerce as picked up.</p>\n","urlObject":{"protocol":"https","path":["ecommerce","order","pickup"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"b165addf-75fd-6026-e300-8ccfb3f4f3f9"}],"id":"d48721e3-cce8-74be-291d-eb9ec3ec578f","description":"<p>Ecommerce service allows a merchant to sell products in the mobile pop up shop. This has limited ecommerce functionality. </p>\n","_postman_id":"d48721e3-cce8-74be-291d-eb9ec3ec578f"},{"name":"Geo Service","item":[{"name":"https://api.stg.acquireenterprises.com/v2","id":"a976516a-8058-87f5-908d-579820c74071","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I...","description":"<p>Requires a valid JWT authorization token with [] access.</p>\n"}],"body":{"mode":"raw","raw":"{}"},"url":"https://api.stg.acquireenterprises.com/v2","description":"<p>...</p>\n","urlObject":{"protocol":"https","path":["v2"],"host":["api","stg","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"a976516a-8058-87f5-908d-579820c74071"}],"id":"b373ce6c-cfeb-e4dc-90c5-4f15b994ae09","_postman_id":"b373ce6c-cfeb-e4dc-90c5-4f15b994ae09","description":""},{"name":"Gift Cards Service","item":[{"name":"/giftcard/add","id":"b829bc02-74c3-034d-6627-491b146a853a","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I...","description":"<p>Requires a valid JWT authorization token with [ merchant or manager or staff or customer ] access.</p>\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://api.acquireenterprises.com/giftcard/add","description":"<p>Add a gift card.</p>\n","urlObject":{"protocol":"https","path":["giftcard","add"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"b829bc02-74c3-034d-6627-491b146a853a"},{"name":"/giftcards/get-report","id":"5755fd77-d6a1-369e-135b-bc4e3e8d3b91","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I...","description":"<p>Requires a valid JWT authorization token with [ merchant or manager or staff or customer ] access.</p>\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://api.acquireenterprises.com/giftcards/get-report","description":"<p>Retrieve a gift card report.</p>\n","urlObject":{"protocol":"https","path":["giftcards","get-report"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"5755fd77-d6a1-369e-135b-bc4e3e8d3b91"},{"name":"/giftcards/get-cashout-report","id":"43f06658-0ad2-6883-ea2a-16e41470a3bc","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I...","description":"<p>Requires a valid JWT authorization token with [ merchant or manager or staff or customer ] access.</p>\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://api.acquireenterprises.com/giftcards/get-cashout-report","description":"<p>Retrieve a gift card cash out report.</p>\n","urlObject":{"protocol":"https","path":["giftcards","get-cashout-report"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"43f06658-0ad2-6883-ea2a-16e41470a3bc"},{"name":"/promotions/get","id":"4107983b-29c8-0181-497e-74256fb2bed9","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I...","description":"<p>Requires a valid JWT authorization token with [ merchant or manager or staff or customer ] access.</p>\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://api.acquireenterprises.com/promotions/get","description":"<p>Retrieve promotional gift cards.</p>\n","urlObject":{"protocol":"https","path":["promotions","get"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"4107983b-29c8-0181-497e-74256fb2bed9"},{"name":"/giftcards/get-location-report","id":"cafe4cdb-5645-895b-ecda-5ca2db61a401","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I...","description":"<p>Requires a valid JWT authorization token with [ merchant or manager or staff or customer ] access.</p>\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://api.acquireenterprises.com/loyalty/customer-profile/add","description":"<p>Add a loyalty transaction.</p>\n","urlObject":{"protocol":"https","path":["loyalty","customer-profile","add"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"cafe4cdb-5645-895b-ecda-5ca2db61a401"},{"name":"/physical-card/get","id":"10d403c0-32cc-0bcb-4e95-e982a3b3260c","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I...","description":"<p>Requires a valid JWT authorization token with [ \nmerchant or manager or staff ] access.</p>\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://api.acquireenterprises.com/physical-card/get","description":"<p>Retrieve physical card data.</p>\n","urlObject":{"protocol":"https","path":["physical-card","get"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"10d403c0-32cc-0bcb-4e95-e982a3b3260c"},{"name":"/promotion/add","id":"06365b56-430b-9335-2463-13380b94a641","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I...","description":"<p>Requires a valid JWT authorization token with [ merchant or manager ] access.</p>\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://api.acquireenterprises.com/promotion/add","description":"<p>Add a promotional gift card.</p>\n","urlObject":{"protocol":"https","path":["promotion","add"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"06365b56-430b-9335-2463-13380b94a641"},{"name":"/promotion/delete","id":"2d591ed7-8ac4-6615-078b-6b7198eeba07","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I...","description":"<p>Requires a valid JWT authorization token with [ merchant or manager ] access.</p>\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://api.acquireenterprises.com/promotion/delete","description":"<p>Delete a promotional gift card.</p>\n","urlObject":{"protocol":"https","path":["promotion","delete"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"2d591ed7-8ac4-6615-078b-6b7198eeba07"},{"name":"/promotion/issue","id":"b508461c-6229-343f-a5c0-23b71517c356","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I...","description":"<p>Requires a valid JWT authorization token with [ merchant or manager ] access.</p>\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://api.acquireenterprises.com/promotion/issue","description":"<p>Issue a promotional gift card.</p>\n","urlObject":{"protocol":"https","path":["promotion","issue"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"b508461c-6229-343f-a5c0-23b71517c356"},{"name":"/physical-card/restore","id":"0fcf4e3f-eb28-10da-d754-6fc24bf943fd","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I...","description":"<p>Requires a valid JWT authorization token with [ merchant or manager ] access.</p>\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://api.acquireenterprises.com/physical-card/restore","description":"<p>Restore a physical gift card.</p>\n","urlObject":{"protocol":"https","path":["physical-card","restore"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"0fcf4e3f-eb28-10da-d754-6fc24bf943fd"},{"name":"/giftcard/reconciliation","id":"52ec67a5-511b-69b8-4496-d359bb624721","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I...","description":"<p>Requires a valid JWT authorization token with [ staff ] access.</p>\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://api.acquireenterprises.com/giftcard/reconciliation","description":"<p>Reconcile a gift card.</p>\n","urlObject":{"protocol":"https","path":["giftcard","reconciliation"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"52ec67a5-511b-69b8-4496-d359bb624721"},{"name":"/giftcard/issue","id":"37daa62d-4888-c54e-8dcf-02791e98f5a4","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I...","description":"<p>Requires a valid JWT authorization token with [ merchant or manager or staff or customer ] access.</p>\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://api.acquireenterprises.com/giftcard/issue","description":"<p>Issue a gift card.</p>\n","urlObject":{"protocol":"https","path":["giftcard","issue"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"37daa62d-4888-c54e-8dcf-02791e98f5a4"},{"name":"/giftcard/credit","id":"e18a157c-ef30-6acb-20e9-678a59ee5dc6","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I...","description":"<p>Requires a valid JWT authorization token with [ merchant or manager or staff or customer ] access.</p>\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://api.acquireenterprises.com/giftcard/credit","description":"<p>Credit a gift card.</p>\n","urlObject":{"protocol":"https","path":["giftcard","credit"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"e18a157c-ef30-6acb-20e9-678a59ee5dc6"},{"name":"/giftcard/debit","id":"8f772b47-38d1-fabc-436b-b26e1a687e5b","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I...","description":"<p>Requires a valid JWT authorization token with [ merchant or manager or staff or customer ] access.</p>\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://api.acquireenterprises.com/giftcard/debit","description":"<p>Debit a gift card.</p>\n","urlObject":{"protocol":"https","path":["giftcard","debit"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"8f772b47-38d1-fabc-436b-b26e1a687e5b"},{"name":"/occasions/get","id":"e0c0ddee-a052-1a52-f9f3-510d069c0d19","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I...","description":"<p>Requires a valid JWT authorization token with [ merchant or manager or staff or customer ] access.</p>\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://api.acquireenterprises.com/occasions/get","description":"<p>Retrieve occational gift cards.</p>\n","urlObject":{"protocol":"https","path":["occasions","get"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"e0c0ddee-a052-1a52-f9f3-510d069c0d19"},{"name":"/designs/get","id":"6dd63e11-b2cb-a2a5-984c-521ffb117f65","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I...","description":"<p>Requires a valid JWT authorization token with [ merchant or manager or staff or customer ] access.</p>\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://api.acquireenterprises.com/designs/get","description":"<p>Retrieve designs for gift cards.</p>\n","urlObject":{"protocol":"https","path":["designs","get"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"6dd63e11-b2cb-a2a5-984c-521ffb117f65"},{"name":"/giftcard/search","id":"f1b8fd65-a20d-0445-b7c5-1b9420dceab3","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I...","description":"<p>Requires a valid JWT authorization token with [ merchant or manager or staff or customer ] access.</p>\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://api.acquireenterprises.com/giftcard/search","description":"<p>Search for specific gift card.</p>\n","urlObject":{"protocol":"https","path":["giftcard","search"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"f1b8fd65-a20d-0445-b7c5-1b9420dceab3"},{"name":"/giftcard/add-to-customer","id":"5d52c0d7-84df-3ea3-a1ab-664200a3919b","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I...","description":"<p>Requires a valid JWT authorization token with [ merchant or manager or staff or customer ] access.</p>\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://api.acquireenterprises.com/giftcard/add-to-customer","description":"<p>Associate a customer with a gift card.</p>\n","urlObject":{"protocol":"https","path":["giftcard","add-to-customer"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"5d52c0d7-84df-3ea3-a1ab-664200a3919b"},{"name":"/giftcards/get-customer-giftcards","id":"8098b664-6ecb-c035-ead2-829c31816c26","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I...","description":"<p>Requires a valid JWT authorization token with [ merchant or manager or staff or customer ] access.</p>\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://api.acquireenterprises.com/giftcards/get-customer-giftcards","description":"<p>Retrieve all customers associated with a customer.</p>\n","urlObject":{"protocol":"https","path":["giftcards","get-customer-giftcards"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"8098b664-6ecb-c035-ead2-829c31816c26"},{"name":"/giftcards/get-customer-giftcards","id":"8501a0d5-00b2-9162-101f-2af008edba4e","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I...","description":"<p>Requires a valid JWT authorization token with [ merchant or manager or staff or customer ] access.</p>\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://api.acquireenterprises.com/giftcards/get-available-giftcard-types","description":"<p>Retrieve available types of gift cards.</p>\n","urlObject":{"protocol":"https","path":["giftcards","get-available-giftcard-types"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"8501a0d5-00b2-9162-101f-2af008edba4e"},{"name":"/giftcard/reload","id":"908c62ec-1362-1b98-2d0a-9b6ee43f2d71","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I...","description":"<p>Requires a valid JWT authorization token with [ merchant or customer ] access.</p>\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://api.acquireenterprises.com/giftcard/reload","description":"<p>Top up a gift card.</p>\n","urlObject":{"protocol":"https","path":["giftcard","reload"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"908c62ec-1362-1b98-2d0a-9b6ee43f2d71"},{"name":"/giftcard/purchase","id":"327eaf97-c31a-d064-0049-1c77cee7f31e","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I...","description":"<p>Requires a valid JWT authorization token with [ merchant or customer ] access.</p>\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://api.acquireenterprises.com/giftcard/purchase","description":"<p>Purchase a new gift card.</p>\n","urlObject":{"protocol":"https","path":["giftcard","purchase"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"327eaf97-c31a-d064-0049-1c77cee7f31e"},{"name":"/physical-card/add","id":"2a14e75b-bd2b-13a5-656d-e9b333b4052b","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I...","description":"<p>Requires a valid JWT authorization token with [ merchant ] access.</p>\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://api.acquireenterprises.com/physical-card/add","description":"<p>Add a physical gift card.</p>\n","urlObject":{"protocol":"https","path":["physical-card","add"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"2a14e75b-bd2b-13a5-656d-e9b333b4052b"},{"name":"/design/add","id":"17f84a61-4e6d-abc7-a800-1d59b229e026","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I...","description":"<p>Requires a valid JWT authorization token with [ customer ] access.</p>\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://api.acquireenterprises.com/design/add","description":"<p>Add a gift card design.</p>\n","urlObject":{"protocol":"https","path":["design","add"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"17f84a61-4e6d-abc7-a800-1d59b229e026"},{"name":"/design/delete","id":"2d32625c-7e92-987a-babc-b0801464441a","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I...","description":"<p>Requires a valid JWT authorization token with [ customer ] access.</p>\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://api.acquireenterprises.com/design/delete","description":"<p>Delete a gift card design.</p>\n","urlObject":{"protocol":"https","path":["design","delete"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"2d32625c-7e92-987a-babc-b0801464441a"},{"name":"/occasion/delete","id":"6f8e4e57-74e9-3026-224c-59f8981431a6","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I...","description":"<p>Requires a valid JWT authorization token with [ customer ] access.</p>\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://api.acquireenterprises.com/occasion/delete","description":"<p>Delete an occational gift card design.</p>\n","urlObject":{"protocol":"https","path":["occasion","delete"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"6f8e4e57-74e9-3026-224c-59f8981431a6"},{"name":"/giftcard/combine","id":"b2d6db2f-f6af-de38-7e9f-5b5122d8ca6b","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I...","description":"<p>Requires a valid JWT authorization token with [ customer ] access.</p>\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://api.acquireenterprises.com/giftcard/combine","description":"<p>Combine gift cards.</p>\n","urlObject":{"protocol":"https","path":["giftcard","combine"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"b2d6db2f-f6af-de38-7e9f-5b5122d8ca6b"},{"name":"/activate/{protocol}/{giftcard}","id":"8cb235bb-6904-18d4-329d-a67ab285e811","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I...","description":"<p>Requires a valid JWT authorization token with [ customer ] access.</p>\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://api.acquireenterprises.com/activate/{protocol}/{giftcard}","description":"<p>Activate a gift card.</p>\n","urlObject":{"protocol":"https","path":["activate","{protocol}","{giftcard}"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"8cb235bb-6904-18d4-329d-a67ab285e811"}],"id":"fb643d8f-7384-9dfa-63be-7bcce119c0f7","description":"<p>Add giftcards</p>\n","_postman_id":"fb643d8f-7384-9dfa-63be-7bcce119c0f7"},{"name":"IAM Service","item":[{"name":"/iam/message/get-list","id":"68e31633-0a11-b417-44e8-cfe8b6953627","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I...","description":"<p>Requires a valid JWT authorization token with [ merchant or manager or staff or customer ] access.</p>\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://api.acquireenterprises.com/iam/message/get-list","description":"<p>Retrieve a list of iam messages.</p>\n","urlObject":{"protocol":"https","path":["iam","message","get-list"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"68e31633-0a11-b417-44e8-cfe8b6953627"},{"name":"/iam/message/get-details","id":"bb919145-0beb-3a58-f7c2-c9496c5b07d0","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I...","description":"<p>Requires a valid JWT authorization token with [ merchant or manager or staff or customer ] access.</p>\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://api.acquireenterprises.com/iam/message/get-details","description":"<p>Retrieve details of a iam message.</p>\n","urlObject":{"protocol":"https","path":["iam","message","get-details"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"bb919145-0beb-3a58-f7c2-c9496c5b07d0"},{"name":"/iam/message/delete","id":"04ed9afd-cdf7-281f-d887-1dacc7327aa7","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I...","description":"<p>Requires a valid JWT authorization token with [ merchant or manager or staff or customer ] access.</p>\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://api.acquireenterprises.com/iam/message/delete","description":"<p>Delete an iam message.</p>\n","urlObject":{"protocol":"https","path":["iam","message","delete"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"04ed9afd-cdf7-281f-d887-1dacc7327aa7"},{"name":"/iam/message/create","id":"f411803d-d857-09e6-3d64-22960bdcd00f","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I...","description":"<p>Requires a valid JWT authorization token with [ merchant or manager or staff or customer ] access.</p>\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://api.acquireenterprises.com/iam/message/create","description":"<p>Create an iam message.</p>\n","urlObject":{"protocol":"https","path":["iam","message","create"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"f411803d-d857-09e6-3d64-22960bdcd00f"},{"name":"/iam/message/update","id":"f4a4bdbf-11c5-cbf2-9298-0de95b5b054f","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I...","description":"<p>Requires a valid JWT authorization token with [ merchant or manager or staff or customer ] access.</p>\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://api.acquireenterprises.com/iam/message/update","description":"<p>Update an iam message.</p>\n","urlObject":{"protocol":"https","path":["iam","message","update"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"f4a4bdbf-11c5-cbf2-9298-0de95b5b054f"},{"name":"/iam/available-message/get-list","id":"2402ee97-d1ee-ce76-093e-be507562a699","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I...","description":"<p>Requires a valid JWT authorization token with [ merchant or manager or staff or customer ] access.</p>\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://api.acquireenterprises.com/iam/available-message/get-list","description":"<p>Retrieve IAM available message list.</p>\n","urlObject":{"protocol":"https","path":["iam","available-message","get-list"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"2402ee97-d1ee-ce76-093e-be507562a699"},{"name":"/iam/available-message/create","id":"75b93d5e-c05b-f147-1926-a2519bbc9251","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I...","description":"<p>Requires a valid JWT authorization token with [ merchant or manager or staff or customer ] access.</p>\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://api.acquireenterprises.com/iam/available-message/create","description":"<p>Create IAM available message list.</p>\n","urlObject":{"protocol":"https","path":["iam","available-message","create"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"75b93d5e-c05b-f147-1926-a2519bbc9251"},{"name":"/iam/available-message/remaining","id":"8c139288-784d-2f10-3b6f-8b29cb61cf06","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I...","description":"<p>Requires a valid JWT authorization token with [ merchant or manager or staff or customer ] access.</p>\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://api.acquireenterprises.com/iam/available-message/remaining","description":"<p>Retrieve count of available IAM messages remaining.</p>\n","urlObject":{"protocol":"https","path":["iam","available-message","remaining"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"8c139288-784d-2f10-3b6f-8b29cb61cf06"},{"name":"/iam/sent-message/get-list","id":"91877a46-e44c-6d55-9310-4ebc9a0b35f2","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I...","description":"<p>Requires a valid JWT authorization token with [ merchant or manager or staff or customer ] access.</p>\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://api.acquireenterprises.com/iam/sent-message/get-list","description":"<p>Retrieve list and data on sent IAM messages.</p>\n","urlObject":{"protocol":"https","path":["iam","sent-message","get-list"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"91877a46-e44c-6d55-9310-4ebc9a0b35f2"},{"name":"/iam/sent-message/create","id":"4e54ea54-4810-a250-2c9a-b83f6c78df00","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I...","description":"<p>Requires a valid JWT authorization token with [ merchant or manager or staff or customer ] access.</p>\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://api.acquireenterprises.com/iam/sent-message/create","description":"<p>Mark an IAM message as sent.</p>\n","urlObject":{"protocol":"https","path":["iam","sent-message","create"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"4e54ea54-4810-a250-2c9a-b83f6c78df00"},{"name":"/iam/sent-message/delete","id":"af06a496-a542-d5b1-0b06-5f6ec1767dd6","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I...","description":"<p>Requires a valid JWT authorization token with [ merchant or manager or staff or customer ] access.</p>\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://api.acquireenterprises.com/iam/sent-message/create","description":"<p>Delete sent IAM messages.</p>\n","urlObject":{"protocol":"https","path":["iam","sent-message","create"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"af06a496-a542-d5b1-0b06-5f6ec1767dd6"}],"id":"c6fdee71-d55f-5803-fd27-ceffa55987c7","_postman_id":"c6fdee71-d55f-5803-fd27-ceffa55987c7","description":""},{"name":"Location Service","item":[{"name":"/location/get","id":"ac5717ca-a765-0567-4601-be44228ce7df","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I...","description":"<p>Requires a valid JWT authorization token with [ merchant or manager or staff or customer ] access.</p>\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://api.acquireenterprises.com/location/get","description":"<p>Retrieve a list of merchant's locations.</p>\n","urlObject":{"protocol":"https","path":["location","get"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"ac5717ca-a765-0567-4601-be44228ce7df"},{"name":"/location/add","id":"cc89da4a-35d2-dc01-e85c-fdb215ad79ff","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I...","description":"<p>Requires a valid JWT authorization token with [ merchant ] access.</p>\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://api.acquireenterprises.com/location/add","description":"<p>Add a merchant location.</p>\n","urlObject":{"protocol":"https","path":["location","add"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"cc89da4a-35d2-dc01-e85c-fdb215ad79ff"},{"name":"/location/update","id":"b0b1ae28-8609-86a5-5ccb-65166b1c1435","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I...","description":"<p>Requires a valid JWT authorization token with [ merchant ] access.</p>\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://api.acquireenterprises.com/location/update","description":"<p>Update a merchant location.</p>\n","urlObject":{"protocol":"https","path":["location","update"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"b0b1ae28-8609-86a5-5ccb-65166b1c1435"},{"name":"/location/delete","id":"97761b2e-9090-da7a-75f3-233a7d186fe9","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I...","description":"<p>Requires a valid JWT authorization token with [ merchant ] access.</p>\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://api.acquireenterprises.com/location/delete","description":"<p>Delete a merchant location.</p>\n","urlObject":{"protocol":"https","path":["location","delete"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"97761b2e-9090-da7a-75f3-233a7d186fe9"},{"name":"/locator","id":"aaaf7928-6ec4-f8f3-31fb-5fb192006246","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I...","description":"<p>Requires a valid JWT authorization token with [ sales ] access.</p>\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://api.acquireenterprises.com/locator","description":"<p>Retrieve near by locations.</p>\n","urlObject":{"protocol":"https","path":["locator"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"aaaf7928-6ec4-f8f3-31fb-5fb192006246"},{"name":"/provinces/get/{country}","id":"68e00ce2-334a-812e-8055-57d1dd0ce201","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I...","description":"<p>Requires a valid JWT authorization token with [ customer ] access.</p>\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://api.acquireenterprises.com/provinces/get/{country}","description":"<p>Retrieve a list of provinces or states based on country.</p>\n","urlObject":{"protocol":"https","path":["provinces","get","{country}"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"68e00ce2-334a-812e-8055-57d1dd0ce201"},{"name":"/locations/get","id":"0fe11da2-3a60-eae1-8f93-5bff9fb110f9","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I...","description":"<p>Requires a valid JWT authorization token with [ customer ] access.</p>\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://api.acquireenterprises.com/locations/get","description":"<p>Retrive all merchant store locations.</p>\n","urlObject":{"protocol":"https","path":["locations","get"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"0fe11da2-3a60-eae1-8f93-5bff9fb110f9"}],"id":"1332766b-960f-b345-af1f-1217780082ea","_postman_id":"1332766b-960f-b345-af1f-1217780082ea","description":""},{"name":"Merchants Service","item":[{"name":"/merchant/password","id":"a67017b1-e8ad-f35c-29d7-877b2a005936","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I...","description":"<p>Requires a valid JWT authorization token with [ merchant ] access.</p>\n"}],"body":{"mode":"raw","raw":"{}"},"url":"https://api.acquireenterprises.com/merchant/password","description":"<p>Change a merchant's password.</p>\n","urlObject":{"protocol":"https","path":["merchant","password"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"a67017b1-e8ad-f35c-29d7-877b2a005936"},{"name":"/merchant/get-details","id":"a136685a-b1bc-34b3-1042-689e4ce13405","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I...","description":"<p>Requires a valid JWT authorization token with [ merchant or manager or staff or customer ] access.</p>\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://api.acquireenterprises.com/merchant/get-details","description":"<p>Retrieve user details about a merchant.</p>\n","urlObject":{"protocol":"https","path":["merchant","get-details"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"a136685a-b1bc-34b3-1042-689e4ce13405"},{"name":"/promotion/add","id":"675cc060-4eaf-360d-1a29-6e9ea9313ff1","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I...","description":"<p>Requires a valid JWT authorization token with [ merchant or manager or staff or customer ] access.</p>\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://api.acquireenterprises.com/merchant/get-app-id","description":"<p>Retrieve app id(s) associated with a merchant.</p>\n","urlObject":{"protocol":"https","path":["merchant","get-app-id"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"675cc060-4eaf-360d-1a29-6e9ea9313ff1"},{"name":"/merchant/self-update","id":"9861670f-0ee4-4164-e385-91f411c53af9","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I...","description":"<p>Requires a valid JWT authorization token with [ merchant ] access.</p>\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://api.acquireenterprises.com/merchant/self-update","description":"<p>Update merchant's profile.</p>\n","urlObject":{"protocol":"https","path":["merchant","self-update"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"9861670f-0ee4-4164-e385-91f411c53af9"},{"name":"/merchant/contact-us","id":"a3175729-5cce-2275-a900-d434c5b69443","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I...","description":"<p>Requires a valid JWT authorization token with [ customer ] access.</p>\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://api.acquireenterprises.com/merchant/contact-us","description":"<p>Send a merchant contact us email.</p>\n","urlObject":{"protocol":"https","path":["merchant","contact-us"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"a3175729-5cce-2275-a900-d434c5b69443"},{"name":"/merchant/get-app-data","id":"d5ea0599-a575-bb0f-8999-aaf7bdc6ee64","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I...","description":"<p>Requires a valid JWT authorization token with [ customer ] access.</p>\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://api.acquireenterprises.com/merchant/get-app-data","description":"<p>Retrieve app data for a merchant app.</p>\n","urlObject":{"protocol":"https","path":["merchant","get-app-data"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"d5ea0599-a575-bb0f-8999-aaf7bdc6ee64"}],"id":"7aec16f0-d838-f26c-2055-8763033182ad","_postman_id":"7aec16f0-d838-f26c-2055-8763033182ad","description":""},{"name":"Plans Service","item":[],"id":"f87f0aa3-4d63-06ac-659d-ce13415f8831","_postman_id":"f87f0aa3-4d63-06ac-659d-ce13415f8831","description":""},{"name":"Processors Service","item":[{"name":"/processors/get","id":"43f09162-295f-b7bf-2fd2-b719e65df3ef","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I...","description":"<p>Requires a valid JWT authorization token with [ merchant ] access.</p>\n"}],"body":{"mode":"raw","raw":"{}"},"url":"https://api.acquireenterprises.com/processors/get","description":"<p>Retrieve a list of available payment processors.</p>\n","urlObject":{"protocol":"https","path":["processors","get"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"43f09162-295f-b7bf-2fd2-b719e65df3ef"},{"name":"/credit-cards/get","id":"aff39592-2aa6-423e-3435-83a6702b523c","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I...","description":"<p>Requires a valid JWT authorization token with [ merchant or manager or staff or customer ] access.</p>\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://api.acquireenterprises.com/credit-cards/get","description":"<p>Retrieve credit cards associated with a processor.</p>\n","urlObject":{"protocol":"https","path":["credit-cards","get"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"aff39592-2aa6-423e-3435-83a6702b523c"}],"id":"f807e61a-efca-c215-3510-ee32435fb3d6","_postman_id":"f807e61a-efca-c215-3510-ee32435fb3d6","description":""},{"name":"Products Service","item":[{"name":"/products/get/available","id":"b04dd03a-23a6-27a0-9d49-c970658ae96c","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I...","description":"<p>Requires a valid JWT authorization token with [ merchant ] access.</p>\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://api.acquireenterprises.com/products/get/available","description":"<p>Retrieve available products.</p>\n","urlObject":{"protocol":"https","path":["products","get","available"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"b04dd03a-23a6-27a0-9d49-c970658ae96c"},{"name":"/product/add-to-cart","id":"2c37e04f-3e34-43a7-afb7-1e0d49cb7b48","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I...","description":"<p>Requires a valid JWT authorization token with [ merchant ] access.</p>\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://api.acquireenterprises.com/product/add-to-cart","description":"<p>Add a product to a cart.</p>\n","urlObject":{"protocol":"https","path":["product","add-to-cart"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"2c37e04f-3e34-43a7-afb7-1e0d49cb7b48"},{"name":"/product/remove-from-cart","id":"9cbc134f-8bd9-1e8a-6897-ea1549ffc509","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I...","description":"<p>Requires a valid JWT authorization token with [ merchant ] access.</p>\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://api.acquireenterprises.com/product/remove-from-cart","description":"<p>Remove a product from a cart.</p>\n","urlObject":{"protocol":"https","path":["product","remove-from-cart"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"9cbc134f-8bd9-1e8a-6897-ea1549ffc509"},{"name":"/cart/clear","id":"fe1ffb2b-5ddb-f0d0-ba81-019f79c261ca","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I...","description":"<p>Requires a valid JWT authorization token with [ merchant ] access.</p>\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://api.acquireenterprises.com/cart/clear","description":"<p>Remove all products from a cart.</p>\n","urlObject":{"protocol":"https","path":["cart","clear"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"fe1ffb2b-5ddb-f0d0-ba81-019f79c261ca"},{"name":"/cart/get","id":"89b499d4-724b-f912-3bf7-829bb06f4bb2","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I...","description":"<p>Requires a valid JWT authorization token with [ merchant ] access.</p>\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://api.acquireenterprises.com/cart/get","description":"<p>Retrieve cart data and products.</p>\n","urlObject":{"protocol":"https","path":["cart","get"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"89b499d4-724b-f912-3bf7-829bb06f4bb2"},{"name":"/cart/purchase","id":"69aa20d5-8e1f-aeae-2270-f76087cc3007","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I...","description":"<p>Requires a valid JWT authorization token with [ merchant ] access.</p>\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://api.acquireenterprises.com/cart/purchase","description":"<p>Purchase ecommerce cart.</p>\n","urlObject":{"protocol":"https","path":["cart","purchase"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"69aa20d5-8e1f-aeae-2270-f76087cc3007"},{"name":"/transactions/get","id":"251968e6-fb8d-7163-a406-79172d1129be","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I...","description":"<p>Requires a valid JWT authorization token with [ merchant ] access.</p>\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://api.acquireenterprises.com/transactions/get","description":"<p>Retrieve all product transactions.</p>\n","urlObject":{"protocol":"https","path":["transactions","get"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"251968e6-fb8d-7163-a406-79172d1129be"}],"id":"9cd57f72-7cfe-13e3-f40b-e4201682a0e9","_postman_id":"9cd57f72-7cfe-13e3-f40b-e4201682a0e9","description":""},{"name":"Services Service","item":[{"name":"/merchant/services","id":"4bdeed56-f6cc-bc38-c6a9-2e582bbe9292","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://api.acquireenterprises.com/merchant/services","description":"<p>Retrieve all services associated with a merchant.</p>\n","urlObject":{"protocol":"https","path":["merchant","services"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"4bdeed56-f6cc-bc38-c6a9-2e582bbe9292"}],"id":"e4002d91-02bc-fb9e-b362-a49f6aae2927","_postman_id":"e4002d91-02bc-fb9e-b362-a49f6aae2927","description":""},{"name":"User Service","item":[{"name":"/users/get","id":"29605f44-80c7-39a7-c298-5655c32af94d","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6IjRkNjBjNmU0Y2VjNTk1MGViODZiM2QxOGUyNDcxM2E4ODBkYWNhNzRlM2RjOTgwYjIwZDkyYWJhOTVlMzE0MjBmZDIxZTAxOWQ1MGUxMjkzIn0.eyJhdWQiOiIxIiwianRpIjoiNGQ2MGM2ZTRjZWM1OTUwZWI4NmIzZDE4ZTI0NzEzYTg4MGRhY2E3NGUzZGM5ODBiMjBkOTJhYmE5NWUzMTQyMGZkMjFlMDE5ZDUwZTEyOTMiLCJpYXQiOjE0OTg4NTI4NjQsIm5iZiI6MTQ5ODg1Mjg2NCwiZXhwIjoxNTMwMzg4ODY0LCJzdWIiOiI3YmRlYWU5MC0yOTU3LTExZTctYjU5Ni0xMTk5MzAxNDYwMGQiLCJzY29wZXMiOlsiKiJdfQ.fLMBd_byUeEHwPQvd7hhVd-g_brUkDtBuGq0F9vaPRk2cnIqkwboGdg0QJqZKKLFQlIAdjEmdj7OIufqrSzBJcxUo6REkaENOG79bnzDFw8aCsTEqFCwHOcOVVxhA9l5LYftO02MYfIbfu-al6EiOFjmP0WfyVPLRqEHK4jxfhXdnhhC06JclYi4NaXYXDxLzENt_5QUTsAE8ioFJXIf943rlbaytNpYczIL6oo-z-W4raG1zmDDfxDqz3Ks1jm4Tcw_1os_WQdWIX7eQV4o9Xrq7bT56FM7lErt4aXhIGp12l5D_5Vs4OQtlHR_6-KU4Zi2MQ8tHorau_UwBzokqupgyiPjz_SC9xCulOlsNqgBY0uIGFb2S02JrwFZKbWCwpILk5IodWRZaHsG1TlDYdc4Pc31mQ9rh-8jaApC5R4olu1uYewF8A63CUIiyGDPPRE1YyDJYJuFzXCe28sW-ZWJ9gWwjHQQNK3Y3AFnjA4iA-fQdaC_-ZjsKd3oZFLEsTER4-SGE9wrGkeQWnX8kVHt4inHzv59qLTgURiDN27X_nDqsease9DET6A4ThcQm02ncqVfsXwUpd7PSnZQpAIj0DQLcpUv2hZC8hKDs_i4KaXKqj3CqvwNiMbJZoLm7ETHiq9MQaFb3PVCNv_L0FDWmOatpUaakn-GJ7xZIhU"}],"body":{"mode":"raw","raw":""},"url":"https://api.stg.acquireenterprises.com/v2/users/get?role=customer","description":"<p>Retrieve all users based on a role.</p>\n","urlObject":{"protocol":"https","path":["v2","users","get"],"host":["api","stg","acquireenterprises","com"],"query":[{"key":"role","value":"customer"}],"variable":[]}},"response":[],"_postman_id":"29605f44-80c7-39a7-c298-5655c32af94d"},{"name":"/api-user/add","id":"0a13ea35-3110-7caa-6002-3071e0d61501","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6IjRkNjBjNmU0Y2VjNTk1MGViODZiM2QxOGUyNDcxM2E4ODBkYWNhNzRlM2RjOTgwYjIwZDkyYWJhOTVlMzE0MjBmZDIxZTAxOWQ1MGUxMjkzIn0.eyJhdWQiOiIxIiwianRpIjoiNGQ2MGM2ZTRjZWM1OTUwZWI4NmIzZDE4ZTI0NzEzYTg4MGRhY2E3NGUzZGM5ODBiMjBkOTJhYmE5NWUzMTQyMGZkMjFlMDE5ZDUwZTEyOTMiLCJpYXQiOjE0OTg4NTI4NjQsIm5iZiI6MTQ5ODg1Mjg2NCwiZXhwIjoxNTMwMzg4ODY0LCJzdWIiOiI3YmRlYWU5MC0yOTU3LTExZTctYjU5Ni0xMTk5MzAxNDYwMGQiLCJzY29wZXMiOlsiKiJdfQ.fLMBd_byUeEHwPQvd7hhVd-g_brUkDtBuGq0F9vaPRk2cnIqkwboGdg0QJqZKKLFQlIAdjEmdj7OIufqrSzBJcxUo6REkaENOG79bnzDFw8aCsTEqFCwHOcOVVxhA9l5LYftO02MYfIbfu-al6EiOFjmP0WfyVPLRqEHK4jxfhXdnhhC06JclYi4NaXYXDxLzENt_5QUTsAE8ioFJXIf943rlbaytNpYczIL6oo-z-W4raG1zmDDfxDqz3Ks1jm4Tcw_1os_WQdWIX7eQV4o9Xrq7bT56FM7lErt4aXhIGp12l5D_5Vs4OQtlHR_6-KU4Zi2MQ8tHorau_UwBzokqupgyiPjz_SC9xCulOlsNqgBY0uIGFb2S02JrwFZKbWCwpILk5IodWRZaHsG1TlDYdc4Pc31mQ9rh-8jaApC5R4olu1uYewF8A63CUIiyGDPPRE1YyDJYJuFzXCe28sW-ZWJ9gWwjHQQNK3Y3AFnjA4iA-fQdaC_-ZjsKd3oZFLEsTER4-SGE9wrGkeQWnX8kVHt4inHzv59qLTgURiDN27X_nDqsease9DET6A4ThcQm02ncqVfsXwUpd7PSnZQpAIj0DQLcpUv2hZC8hKDs_i4KaXKqj3CqvwNiMbJZoLm7ETHiq9MQaFb3PVCNv_L0FDWmOatpUaakn-GJ7xZIhU"}],"body":{"mode":"raw","raw":""},"url":"https://api.acquireenterprises.com/api-user/add","description":"<p>Add an api user type.</p>\n","urlObject":{"protocol":"https","path":["api-user","add"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"0a13ea35-3110-7caa-6002-3071e0d61501"},{"name":"/api-user/delete","id":"14c83de2-2d1d-a753-335b-8287d55b99f5","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I..."}],"body":{"mode":"raw","raw":""},"url":"https://api.acquireenterprises.com/api-user/delete","description":"<p>Delete an api user type.</p>\n","urlObject":{"protocol":"https","path":["api-user","delete"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"14c83de2-2d1d-a753-335b-8287d55b99f5"},{"name":"/merchant/add","id":"39271e26-fd39-01f7-fa9b-f631c082af8a","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I..."}],"body":{"mode":"raw","raw":""},"url":"https://api.acquireenterprises.com/merchant/add","description":"<p>Add a merchant user type.</p>\n","urlObject":{"protocol":"https","path":["merchant","add"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"39271e26-fd39-01f7-fa9b-f631c082af8a"},{"name":"/merchant/password","id":"724c62fb-5ca7-f0ee-a39e-31666224a755","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I..."}],"body":{"mode":"raw","raw":""},"url":"https://api.acquireenterprises.com/merchant/password","description":"<p>Do something with a merchant password.</p>\n","urlObject":{"protocol":"https","path":["merchant","password"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"724c62fb-5ca7-f0ee-a39e-31666224a755"},{"name":"/staff/get","id":"2d92a5fa-bf86-6b1d-843c-96ae397f5c92","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I..."}],"body":{"mode":"raw","raw":""},"url":"https://api.acquireenterprises.com/staff/get","description":"<p>Retrieve all staff users.</p>\n","urlObject":{"protocol":"https","path":["staff","get"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"2d92a5fa-bf86-6b1d-843c-96ae397f5c92"},{"name":"/auth/activity","id":"0d50ad08-12bd-90a3-647f-75fa7a9d2406","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I..."}],"body":{"mode":"raw","raw":""},"url":"https://api.acquireenterprises.com/auth/activity","description":"<p>Retrieve stats related to user authorization.</p>\n","urlObject":{"protocol":"https","path":["auth","activity"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"0d50ad08-12bd-90a3-647f-75fa7a9d2406"},{"name":"/user/cancel/token","id":"de07c7fd-1518-8921-048c-7e47bb610743","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I..."}],"body":{"mode":"raw","raw":""},"url":"https://api.acquireenterprises.com/user/cancel/token","description":"<p>Create a token for use in a link in an email for cancelling a user's account.</p>\n","urlObject":{"protocol":"https","path":["user","cancel","token"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"de07c7fd-1518-8921-048c-7e47bb610743"},{"name":"/auth/reinstate-account","id":"56adc6da-e5f9-ddd5-1db3-0e48a1a507e8","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I..."}],"body":{"mode":"raw","raw":""},"url":"https://api.acquireenterprises.com/auth/reinstate-account","description":"<p>Reinstate a user's deleted account.</p>\n","urlObject":{"protocol":"https","path":["auth","reinstate-account"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"56adc6da-e5f9-ddd5-1db3-0e48a1a507e8"},{"name":"/auth/merchant-agreement-sign","id":"941dcb8a-233f-3ae5-10ca-6761a9b64c3b","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I..."}],"body":{"mode":"raw","raw":""},"url":"https://api.acquireenterprises.com/auth/merchant-agreement-sign","description":"<p>Sign a merchant agreement for Merchant Portal.</p>\n","urlObject":{"protocol":"https","path":["auth","merchant-agreement-sign"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"941dcb8a-233f-3ae5-10ca-6761a9b64c3b"},{"name":"/auth/merchant-agreement-signed","id":"cb096bf8-64e0-8854-d8a2-7dec2d6e0f67","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I..."}],"body":{"mode":"raw","raw":""},"url":"https://api.acquireenterprises.com/auth/merchant-agreement-signed","description":"<p>Check if a merchant has signed a merchant agreement for Merchant Portal.</p>\n","urlObject":{"protocol":"https","path":["auth","merchant-agreement-signed"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"cb096bf8-64e0-8854-d8a2-7dec2d6e0f67"},{"name":"/customer/get-profile","id":"3196fe0a-6a8b-645b-2d8c-42e1423d2ab0","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I..."}],"body":{"mode":"raw","raw":""},"url":"https://api.acquireenterprises.com/customer/get-profile","description":"<p>Retrieve a customer profile.</p>\n","urlObject":{"protocol":"https","path":["customer","get-profile"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"3196fe0a-6a8b-645b-2d8c-42e1423d2ab0"},{"name":"/auth/user/get-profile","id":"3c340af9-442c-339d-f33d-2ab993f54c74","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I..."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"user_id\": \"1fa2b4f0-6686-11e7-b97a-c7987a584f5a\"\n}"},"url":"https://api.acquireenterprises.com/auth/user/get-profile","description":"<p>Retrieve a user's profile i.e.) merchant, staff, manager etc.</p>\n","urlObject":{"protocol":"https","path":["auth","user","get-profile"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"3c340af9-442c-339d-f33d-2ab993f54c74"},{"name":"/auth/create/customer-device-token","id":"c772a85a-99e4-b234-9271-a49b28ce6a8e","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I..."}],"body":{"mode":"raw","raw":""},"url":"https://api.acquireenterprises.com/auth/create/customer-device-token","description":"<p>Create a push notification token and associate it with a customer device to allow for communication via push notifications.</p>\n","urlObject":{"protocol":"https","path":["auth","create","customer-device-token"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"c772a85a-99e4-b234-9271-a49b28ce6a8e"},{"name":"/auth/customer/change-password","id":"938ee6e4-14c2-50de-66f8-dfadbc02bde0","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I..."}],"body":{"mode":"raw","raw":""},"url":"https://api.acquireenterprises.com/auth/customer/change-password","description":"<p>Change a customer's password.</p>\n","urlObject":{"protocol":"https","path":["auth","customer","change-password"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"938ee6e4-14c2-50de-66f8-dfadbc02bde0"},{"name":"/staff/add","id":"2202a521-271c-2e77-d49a-74c608c5d7a8","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I..."}],"body":{"mode":"raw","raw":""},"url":"https://api.acquireenterprises.com/staff/add","description":"<p>Add a staff member.</p>\n","urlObject":{"protocol":"https","path":["staff","add"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"2202a521-271c-2e77-d49a-74c608c5d7a8"},{"name":"/staff/delete","id":"3a50aa4b-66b9-c28b-a209-b533fbaa2d30","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I..."}],"body":{"mode":"raw","raw":""},"url":"https://api.acquireenterprises.com/staff/delete","description":"<p>Delete a staff member.</p>\n","urlObject":{"protocol":"https","path":["staff","delete"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"3a50aa4b-66b9-c28b-a209-b533fbaa2d30"},{"name":"/staff/update","id":"20dae590-32ee-c94d-2276-23a6f8ead764","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I..."}],"body":{"mode":"raw","raw":""},"url":"https://api.acquireenterprises.com/staff/update","description":"<p>Make changes to staff member's profile.</p>\n","urlObject":{"protocol":"https","path":["staff","update"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"20dae590-32ee-c94d-2276-23a6f8ead764"},{"name":"/api/get-policy","id":"ead4af0d-22d6-bf64-752e-8e8deb4621e0","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I..."}],"body":{"mode":"raw","raw":""},"url":"https://api.acquireenterprises.com/api/get-policy","description":"<p>Retrieve a S3 policy fpr uploading images and other assets.</p>\n","urlObject":{"protocol":"https","path":["api","get-policy"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"ead4af0d-22d6-bf64-752e-8e8deb4621e0"},{"name":"/api/get-policy","id":"31ad3799-3e3e-76fa-53d6-7d87053f00b7","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I..."}],"body":{"mode":"raw","raw":""},"url":"https://api.acquireenterprises.com/api/get-policy","description":"<p>Retrieve a S3 policy fpr uploading images and other assets.</p>\n","urlObject":{"protocol":"https","path":["api","get-policy"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"31ad3799-3e3e-76fa-53d6-7d87053f00b7"},{"name":"/api/get-s3-policy/{bucket}","id":"3df30156-746f-82ae-8a57-b7d22bff103c","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I..."}],"body":{"mode":"raw","raw":""},"url":"https://api.acquireenterprises.com/api/get-s3-policy/{bucket}","description":"<p>Retrieve a S3 policy fpr uploading images and other assets to a specific S3 bucket.</p>\n","urlObject":{"protocol":"https","path":["api","get-s3-policy","{bucket}"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"3df30156-746f-82ae-8a57-b7d22bff103c"},{"name":"/customer/update","id":"7e8c5a09-9b70-54d5-f978-540809522329","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I..."}],"body":{"mode":"raw","raw":""},"url":"https://api.acquireenterprises.com/customer/update","description":"<p>Retrieve a S3 policy fpr uploading images and other assets to a specific S3 bucket.</p>\n","urlObject":{"protocol":"https","path":["customer","update"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"7e8c5a09-9b70-54d5-f978-540809522329"},{"name":"/customer/create","id":"cd81d7ea-269d-322e-afd2-baea593740c5","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I..."}],"body":{"mode":"raw","raw":""},"url":"https://api.acquireenterprises.com/customer/create","description":"<p>Create a user type of customer.</p>\n","urlObject":{"protocol":"https","path":["customer","create"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"cd81d7ea-269d-322e-afd2-baea593740c5"},{"name":"/password/email/token","id":"73a06b3d-980c-cb4f-1de9-abded55e06ec","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I..."}],"body":{"mode":"raw","raw":""},"url":"https://api.acquireenterprises.com/password/email/token","description":"<p>Create a token to use in a link in an email for resetting a user's password.</p>\n","urlObject":{"protocol":"https","path":["password","email","token"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"73a06b3d-980c-cb4f-1de9-abded55e06ec"},{"name":"/password/reset","id":"93f74954-4745-d286-9f0a-9cb751f2d27b","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I..."}],"body":{"mode":"raw","raw":""},"url":"https://api.acquireenterprises.com/password/reset","description":"<p>Create a token to use in a link in an email for resetting a user's password.</p>\n","urlObject":{"protocol":"https","path":["password","reset"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"93f74954-4745-d286-9f0a-9cb751f2d27b"},{"name":"/user/cancel/{token}","id":"9c76a48e-37e7-06aa-d4de-2e5d31839326","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I..."}],"body":{"mode":"raw","raw":""},"url":"https://api.acquireenterprises.com/user/cancel/{token}","description":"<p>Create a token to use in a link in an email for resetting a user's password.</p>\n","urlObject":{"protocol":"https","path":["user","cancel","{token}"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"9c76a48e-37e7-06aa-d4de-2e5d31839326"},{"name":"/api-user/add copy","id":"eb4ecd65-e500-d0c0-0fd1-92c9ea493df1","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6IjRkNjBjNmU0Y2VjNTk1MGViODZiM2QxOGUyNDcxM2E4ODBkYWNhNzRlM2RjOTgwYjIwZDkyYWJhOTVlMzE0MjBmZDIxZTAxOWQ1MGUxMjkzIn0.eyJhdWQiOiIxIiwianRpIjoiNGQ2MGM2ZTRjZWM1OTUwZWI4NmIzZDE4ZTI0NzEzYTg4MGRhY2E3NGUzZGM5ODBiMjBkOTJhYmE5NWUzMTQyMGZkMjFlMDE5ZDUwZTEyOTMiLCJpYXQiOjE0OTg4NTI4NjQsIm5iZiI6MTQ5ODg1Mjg2NCwiZXhwIjoxNTMwMzg4ODY0LCJzdWIiOiI3YmRlYWU5MC0yOTU3LTExZTctYjU5Ni0xMTk5MzAxNDYwMGQiLCJzY29wZXMiOlsiKiJdfQ.fLMBd_byUeEHwPQvd7hhVd-g_brUkDtBuGq0F9vaPRk2cnIqkwboGdg0QJqZKKLFQlIAdjEmdj7OIufqrSzBJcxUo6REkaENOG79bnzDFw8aCsTEqFCwHOcOVVxhA9l5LYftO02MYfIbfu-al6EiOFjmP0WfyVPLRqEHK4jxfhXdnhhC06JclYi4NaXYXDxLzENt_5QUTsAE8ioFJXIf943rlbaytNpYczIL6oo-z-W4raG1zmDDfxDqz3Ks1jm4Tcw_1os_WQdWIX7eQV4o9Xrq7bT56FM7lErt4aXhIGp12l5D_5Vs4OQtlHR_6-KU4Zi2MQ8tHorau_UwBzokqupgyiPjz_SC9xCulOlsNqgBY0uIGFb2S02JrwFZKbWCwpILk5IodWRZaHsG1TlDYdc4Pc31mQ9rh-8jaApC5R4olu1uYewF8A63CUIiyGDPPRE1YyDJYJuFzXCe28sW-ZWJ9gWwjHQQNK3Y3AFnjA4iA-fQdaC_-ZjsKd3oZFLEsTER4-SGE9wrGkeQWnX8kVHt4inHzv59qLTgURiDN27X_nDqsease9DET6A4ThcQm02ncqVfsXwUpd7PSnZQpAIj0DQLcpUv2hZC8hKDs_i4KaXKqj3CqvwNiMbJZoLm7ETHiq9MQaFb3PVCNv_L0FDWmOatpUaakn-GJ7xZIhU"}],"body":{"mode":"raw","raw":""},"url":"https://api.acquireenterprises.com/api-user/add","description":"<p>Add an api user type.</p>\n","urlObject":{"protocol":"https","path":["api-user","add"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"eb4ecd65-e500-d0c0-0fd1-92c9ea493df1"},{"name":"/api/get-policy","id":"21a6dbd3-fc32-48e9-f944-2c6eefb035f0","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I...","description":"<p>Requires a valid JWT authorization token with [ customer ] access.</p>\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://api.acquireenterprises.com/api/get-policy","description":"<p>Retrieve a AWS S3 policy for uploading images.</p>\n","urlObject":{"protocol":"https","path":["api","get-policy"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"21a6dbd3-fc32-48e9-f944-2c6eefb035f0"},{"name":"/api/get-s3-policy/{bucket}","id":"7362c5d3-046b-8118-52fc-b8e5e4f938bc","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I...","description":"<p>Requires a valid JWT authorization token with [ customer ] access.</p>\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://api.acquireenterprises.com/api/get-s3-policy/{bucket}","description":"<p>Retrieve a AWS S3 policy for uploading images to a specific bucket.</p>\n","urlObject":{"protocol":"https","path":["api","get-s3-policy","{bucket}"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"7362c5d3-046b-8118-52fc-b8e5e4f938bc"}],"id":"b7e023c3-6397-781f-d5c8-93be351841f3","_postman_id":"b7e023c3-6397-781f-d5c8-93be351841f3","description":""},{"name":"Loyalty Service","item":[{"name":"/loyalty/transaction/add","id":"a5e8d294-d131-e054-33f6-3848d1103642","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I...","description":"<p>Requires a valid JWT authorization token with [ merchant or manager or staff or customer ] access.</p>\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://api.acquireenterprises.com/loyalty/transaction/add","description":"<p>Add a loyalty transaction.</p>\n","urlObject":{"protocol":"https","path":["loyalty","transaction","add"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"a5e8d294-d131-e054-33f6-3848d1103642"},{"name":"/loyalty/merchant-profile/update","id":"72b68535-ed62-d7fc-d541-dd5f2145b123","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I...","description":"<p>Requires a valid JWT authorization token with [ \nmerchant ] access.</p>\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://api.acquireenterprises.com/loyalty/merchant-profile/get","description":"<p>Retrieve a loyalty merchant's profile.</p>\n","urlObject":{"protocol":"https","path":["loyalty","merchant-profile","get"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"72b68535-ed62-d7fc-d541-dd5f2145b123"},{"name":"/loyalty/merchant-profile/get","id":"3d285774-008a-d50a-69d2-1ca62aadf884","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I...","description":"<p>Requires a valid JWT authorization token with [ \nmerchant ] access.</p>\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://api.acquireenterprises.com/giftcards/get-location-report","description":"<p>Retrieve a loyalty merchant's profile.</p>\n","urlObject":{"protocol":"https","path":["giftcards","get-location-report"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"3d285774-008a-d50a-69d2-1ca62aadf884"},{"name":"/loyalty/locations-report/get","id":"de0c581d-5f52-1753-ab16-a101a7e7900f","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I...","description":"<p>Requires a valid JWT authorization token with [ \nmerchant ] access.</p>\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://api.acquireenterprises.com/loyalty/merchant-profile/update","description":"<p>Update a loyalty merchant's profile.</p>\n","urlObject":{"protocol":"https","path":["loyalty","merchant-profile","update"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"de0c581d-5f52-1753-ab16-a101a7e7900f"},{"name":"/loyalty/best-customers/get","id":"38af688a-f227-c70e-5661-6112566ba7dc","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I...","description":"<p>Requires a valid JWT authorization token with [ \nmerchant ] access.</p>\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://api.acquireenterprises.com/loyalty/locations-report/get","description":"<p>Retrieve a loyalty locations report.</p>\n","urlObject":{"protocol":"https","path":["loyalty","locations-report","get"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"38af688a-f227-c70e-5661-6112566ba7dc"},{"name":"/loyalty/best-customers/get","id":"1e8dc148-bca4-e9fc-155b-4459e7a0818c","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I...","description":"<p>Requires a valid JWT authorization token with [ \nmerchant ] access.</p>\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://api.acquireenterprises.com/loyalty/best-customers/get","description":"<p>Retrieve a loyalty report on best / most active customers.</p>\n","urlObject":{"protocol":"https","path":["loyalty","best-customers","get"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"1e8dc148-bca4-e9fc-155b-4459e7a0818c"},{"name":"/loyalty/customer-profile/get","id":"cf1622f9-6b90-f556-5f57-f380c03226e6","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I...","description":"<p>Requires a valid JWT authorization token with [ merchant or manager or staff or customer ] access.</p>\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://api.acquireenterprises.com/loyalty/customer-profile/get","description":"<p>Retrieve a customer loyalty profile.</p>\n","urlObject":{"protocol":"https","path":["loyalty","customer-profile","get"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"cf1622f9-6b90-f556-5f57-f380c03226e6"},{"name":"/loyalty/search","id":"3b7f3a5e-6cdb-54bb-1fea-a2e6e3f346e9","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I...","description":"<p>Requires a valid JWT authorization token with [ merchant or manager or staff or customer ] access.</p>\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://api.acquireenterprises.com/loyalty/search","description":"<p>Search for loyalty program.</p>\n","urlObject":{"protocol":"https","path":["loyalty","search"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"3b7f3a5e-6cdb-54bb-1fea-a2e6e3f346e9"},{"name":"/loyalty/location-profile/update","id":"59b3df92-f004-c563-431b-150adb11692f","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I...","description":"<p>Requires a valid JWT authorization token with [ merchant ] access.</p>\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://api.acquireenterprises.com/loyalty/location-profile/update","description":"<p>Update a location profile.</p>\n","urlObject":{"protocol":"https","path":["loyalty","location-profile","update"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"59b3df92-f004-c563-431b-150adb11692f"}],"id":"171ecdbe-a8bb-a4ea-ac8a-367c7307ddbf","_postman_id":"171ecdbe-a8bb-a4ea-ac8a-367c7307ddbf","description":""},{"name":"Analytics Service","item":[{"name":"/analytics/giftcard/get-transactions-for-month","id":"f8a36c1e-28ba-1fa4-7619-84795ba94777","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I...","description":"<p>Requires a valid JWT authorization token with [ merchant ] access.</p>\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://api.xovertechnologies.com/analytics/giftcard/get-transactions-for-month","description":"<p>Retrieve monthly analytical data for gift cards.</p>\n","urlObject":{"protocol":"https","path":["analytics","giftcard","get-transactions-for-month"],"host":["api","xovertechnologies","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"f8a36c1e-28ba-1fa4-7619-84795ba94777"},{"name":"/analytics/loyalty/get-transactions-for-month","id":"b1026def-ac83-c3a1-a0d7-420bdcd1f53c","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I...","description":"<p>Requires a valid JWT authorization token with [ merchant ] access.</p>\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://api.acquireenterprises.com/analytics/loyalty/get-transactions-for-month","description":"<p>Retrieve monthly analytical data for loyalty programs.</p>\n","urlObject":{"protocol":"https","path":["analytics","loyalty","get-transactions-for-month"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"b1026def-ac83-c3a1-a0d7-420bdcd1f53c"},{"name":"/analytics/campaigns/get-campaigns-for-month","id":"327f5ce1-d5d3-b5a1-67ad-b980c6a82b4f","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I...","description":"<p>Requires a valid JWT authorization token with [ merchant ] access.</p>\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://api.acquireenterprises.com/analytics/campaigns/get-campaigns-for-month","description":"<p>Retrieve monthly analytical data for campaigns.</p>\n","urlObject":{"protocol":"https","path":["analytics","campaigns","get-campaigns-for-month"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"327f5ce1-d5d3-b5a1-67ad-b980c6a82b4f"},{"name":"/analytics/ecommerce/get-transactions-for-month","id":"8b1ef05c-2c63-e3c6-e786-3e65705cadac","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I...","description":"<p>Requires a valid JWT authorization token with [ merchant ] access.</p>\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://api.acquireenterprises.com/analytics/ecommerce/get-transactions-for-month","description":"<p>Retrieve monthly analytical data for ecommerce transactions.</p>\n","urlObject":{"protocol":"https","path":["analytics","ecommerce","get-transactions-for-month"],"host":["api","acquireenterprises","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"8b1ef05c-2c63-e3c6-e786-3e65705cadac"}],"id":"c74e4be7-1bc4-fc9e-a8de-f505f6221a23","_postman_id":"c74e4be7-1bc4-fc9e-a8de-f505f6221a23","description":""}]}