{"info":{"_postman_id":"51d66162-b58d-4043-adf1-c3b533c70512","name":"Developers Documentation","description":"<html><head></head><body><p>Our <a href=\"https://en.wikipedia.org/wiki/Application_programming_interface\">API</a> is organized around <a href=\"https://en.wikipedia.org/wiki/Representational_state_transfer\">REST</a>. It has predictable resource-oriented URLs, accepts form-encoded request bodies, returns <a href=\"https://en.wikipedia.org/wiki/JSON\">JSON</a>-encoded responses, and uses standard HTTP response codes, authentication, and verbs.</p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"27266646","collectionId":"51d66162-b58d-4043-adf1-c3b533c70512","publishedId":"2s9YJdWhLW","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"},"publishDate":"2023-10-31T12:51:23.000Z"},"item":[{"name":"General Information","item":[{"name":"Authentication","item":[],"id":"4c63b0f8-7726-42a0-b89d-855356ef43de","description":"<p>Our API uses <strong>Access Token</strong> to authenticate requests. You can view and manage your <strong>Access Token</strong> in the Dashboard.</p>\n<p>The method we use for authentication is Bearer Authentication</p>\n<p>All API requests must be made over <a href=\"https://en.wikipedia.org/wiki/HTTPS\">HTTPS</a>. Calls made over plain HTTP will fail. API requests without authentication will also fail.</p>\n<blockquote>\n<p><strong>Warning</strong> <code>Don't share your Access Token with anybody.</code> </p>\n</blockquote>\n<h2 id=\"bearer-authentication\">Bearer Authentication</h2>\n<p>Bearer Authentication is an HTTP authentication scheme that involves security tokens called bearer tokens. The client must send this token in the Authorization header when making requests to protected resources.</p>\n<p><code>Authorization: Bearer</code></p>\n","_postman_id":"4c63b0f8-7726-42a0-b89d-855356ef43de"},{"name":"Errors","item":[],"id":"cfc8e54c-2d5b-409f-82ec-ef4105936436","description":"<p>We use conventional HTTP response codes to indicate the success or failure of an API request.</p>\n<p>The <strong><code>2XX</code></strong> range indicates success.</p>\n<p>The <strong><code>4XX</code></strong> range indicates an error that failed given the information provided (e.g., a required parameter was omitted, etc.).</p>\n<p>The <strong><code>5XX</code></strong> range indicates an error with our servers (these are rare).</p>\n<p>In addition, <code>name</code>, <code>message</code>, <code>code</code>, and <code>status</code> will be applied to the error response.</p>\n<p>Example Response</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"name\":\"Unprocessable entity\",\n    \"message\":\"Amount cannot be blank.\",\n    \"code\":422,\n    \"status\":422\n}\n\n</code></pre>\n","_postman_id":"cfc8e54c-2d5b-409f-82ec-ef4105936436"},{"name":"Responses","item":[],"id":"30aaff5c-66bb-4fec-93aa-c0f1f0972dc4","description":"<p>Our response will be divided into 3 sections:</p>\n<p><code>items</code> - contains the actual result of your request</p>\n<p><code>_meta</code> - contains meta information of your request like total results, number of pages, etc.</p>\n<p><code>_links</code> - contains links to the next page, last page, etc.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"items\": [\n        // Results goes here\n    ],\n    \"_links\": {\n        \"self\": {\n            \"href\": \"/path?page=1&amp;per-page=10\"\n        },\n        \"next\": {\n            \"href\": \"/path?page=2&amp;per-page=10\"\n        },\n        \"last\": {\n            \"href\": \"/path?page=5&amp;per-page=10\"\n        }\n    },\n    \"_meta\": {\n        \"totalCount\": 50,\n        \"pageCount\": 5,\n        \"currentPage\": 1,\n        \"perPage\": 10\n    }\n}\n\n</code></pre>\n","_postman_id":"30aaff5c-66bb-4fec-93aa-c0f1f0972dc4"},{"name":"Filters","item":[{"name":"Example - gte","id":"246a8261-fd21-4a8a-b556-2952a3ab7467","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://dashboard.paysecureonline.com/path?filter[createdOn][gte]=2023-01-01 00:00:00","description":"<p>Find all records created after <code>2023-01-01 00:00:00</code></p>\n","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"8c0ab957-1b05-46c5-97ac-db13c65fff79","id":"8c0ab957-1b05-46c5-97ac-db13c65fff79","name":"Filters","type":"folder"}},"urlObject":{"path":["path"],"host":["https://dashboard.paysecureonline.com"],"query":[{"key":"filter[createdOn][gte]","value":"2023-01-01 00:00:00"}],"variable":[]}},"response":[],"_postman_id":"246a8261-fd21-4a8a-b556-2952a3ab7467"},{"name":"Example - between","id":"967d62c5-2927-45e6-94fe-26258aef37fd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://dashboard.paysecureonline.com/path?filter[and][0][createdOn][gte]=2019-01-01 00:00:00&filter[and][0][createdOn][lte]=2019-01-01 23:59:59","description":"<p>Find all records created between <code>2019-01-01 00:00:00</code> and <code>2019-01-01 23:59:59</code></p>\n","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"8c0ab957-1b05-46c5-97ac-db13c65fff79","id":"8c0ab957-1b05-46c5-97ac-db13c65fff79","name":"Filters","type":"folder"}},"urlObject":{"path":["path"],"host":["https://dashboard.paysecureonline.com"],"query":[{"key":"filter[and][0][createdOn][gte]","value":"2019-01-01 00:00:00"},{"key":"filter[and][0][createdOn][lte]","value":"2019-01-01 23:59:59"}],"variable":[]}},"response":[],"_postman_id":"967d62c5-2927-45e6-94fe-26258aef37fd"},{"name":"Example - like","id":"ee3393db-178e-43b0-810d-494a01bdb2a4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://dashboard.paysecureonline.com/path?filter[customer.email][like]=example.com","description":"<p>Find all records whose email contains <code>example.com</code></p>\n","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"8c0ab957-1b05-46c5-97ac-db13c65fff79","id":"8c0ab957-1b05-46c5-97ac-db13c65fff79","name":"Filters","type":"folder"}},"urlObject":{"path":["path"],"host":["https://dashboard.paysecureonline.com"],"query":[{"key":"filter[customer.email][like]","value":"example.com"}],"variable":[]}},"response":[],"_postman_id":"ee3393db-178e-43b0-810d-494a01bdb2a4"},{"name":"Example - in","id":"4c8c2842-f8af-47bd-b5eb-53bb98637195","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://dashboard.paysecureonline.com/path?filter[id][in][]=1&filter[id][in][]=2","description":"<p>Find all records with IDs <code>1</code> or <code>2</code></p>\n","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"8c0ab957-1b05-46c5-97ac-db13c65fff79","id":"8c0ab957-1b05-46c5-97ac-db13c65fff79","name":"Filters","type":"folder"}},"urlObject":{"path":["path"],"host":["https://dashboard.paysecureonline.com"],"query":[{"key":"filter[id][in][]","value":"1"},{"key":"filter[id][in][]","value":"2"}],"variable":[]}},"response":[],"_postman_id":"4c8c2842-f8af-47bd-b5eb-53bb98637195"},{"name":"Example - non-empty","id":"5338aba1-94c5-4ea3-a687-fb45163f258c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://dashboard.paysecureonline.com/path?filter[not][id]=NULL","description":"<p>Find all records with ID with non-empty values (ie. NOT NULL)</p>\n","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"8c0ab957-1b05-46c5-97ac-db13c65fff79","id":"8c0ab957-1b05-46c5-97ac-db13c65fff79","name":"Filters","type":"folder"}},"urlObject":{"path":["path"],"host":["https://dashboard.paysecureonline.com"],"query":[{"key":"filter[not][id]","value":"NULL"}],"variable":[]}},"response":[],"_postman_id":"5338aba1-94c5-4ea3-a687-fb45163f258c"}],"id":"8c0ab957-1b05-46c5-97ac-db13c65fff79","description":"<p>Filters will help you find what you search.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameters</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>lt</td>\n<td>Stands for the less-than sign &lt;</td>\n</tr>\n<tr>\n<td>gt</td>\n<td>Stands for the greater-than sign &gt;</td>\n</tr>\n<tr>\n<td>lte</td>\n<td>Stands for the less-than or equals sign &lt;=</td>\n</tr>\n<tr>\n<td>gte</td>\n<td>Stands for the greater-than or equals sign &gt;=</td>\n</tr>\n<tr>\n<td>eq</td>\n<td>Stands for the equals sign =</td>\n</tr>\n<tr>\n<td>neq</td>\n<td>Stands for the not equals sign !=</td>\n</tr>\n<tr>\n<td>in</td>\n<td>IN</td>\n</tr>\n<tr>\n<td>nin</td>\n<td>NOT IN</td>\n</tr>\n<tr>\n<td>like</td>\n<td>LIKE</td>\n</tr>\n<tr>\n<td>or</td>\n<td>OR</td>\n</tr>\n<tr>\n<td>and</td>\n<td>AND</td>\n</tr>\n<tr>\n<td>not</td>\n<td>Exclude specified values</td>\n</tr>\n</tbody>\n</table>\n</div><p>Use <code>NULL</code> as a value if you want to select empty values.</p>\n<blockquote>\n<p>Only fields marked with <code>Filterable</code> can be used for filtering the results.</p>\n</blockquote>\n","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":false},"event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""]}},{"listen":"test","script":{"type":"text/javascript","exec":[""]}}],"_postman_id":"8c0ab957-1b05-46c5-97ac-db13c65fff79"},{"name":"Pagination","item":[{"name":"10 results per page","id":"7860c9ac-383e-49bd-a31e-d108c17043ce","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://dashboard.paysecureonline.com/<path>?page=1&per-page=10","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"7190bf19-6f7e-44ea-b513-77bc9d15f7fa","id":"7190bf19-6f7e-44ea-b513-77bc9d15f7fa","name":"Pagination","type":"folder"}},"urlObject":{"path":["<path>"],"host":["https://dashboard.paysecureonline.com"],"query":[{"key":"page","value":"1"},{"key":"per-page","value":"10"}],"variable":[]}},"response":[],"_postman_id":"7860c9ac-383e-49bd-a31e-d108c17043ce"}],"id":"7190bf19-6f7e-44ea-b513-77bc9d15f7fa","description":"<p>If there are too many results of your request, we will enable pagination of the results.</p>\n<p>Two parameters can control pagination <code>page</code> and <code>per-page</code>.</p>\n<p><code>page</code> - The page number you want to get. By default is <code>1</code>.</p>\n<p><code>per-page</code> - Items per page. The value can be between <code>1</code> and <code>50</code>. By default is <code>30</code>.</p>\n","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":false},"event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""]}},{"listen":"test","script":{"type":"text/javascript","exec":[""]}}],"_postman_id":"7190bf19-6f7e-44ea-b513-77bc9d15f7fa"},{"name":"Data Types","item":[],"id":"43512f4e-0734-4b26-a845-5bb9b1dcbbeb","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Boolean</td>\n<td><code>Yes</code> or <code>No</code></td>\n</tr>\n<tr>\n<td>Integer</td>\n<td>A number which is not a fraction; a whole number. <code>1</code>, <code>2</code>, <code>3</code>...</td>\n</tr>\n<tr>\n<td>Number</td>\n<td>Floating point numbers. <code>1.5</code>, <code>2.9</code>,<code>3.59</code>...</td>\n</tr>\n<tr>\n<td>String</td>\n<td>A string is a collection of characters, can contain alphanumeric characters.</td>\n</tr>\n<tr>\n<td>ENUM</td>\n<td>Enumeration type or ENUM for short, is a data type to categorize named values.</td>\n</tr>\n<tr>\n<td>Date</td>\n<td>Date is in the following format <code>YYYY-MM-DD</code> (Example: 2019-02-17) Always in <code>UTC</code> time zone</td>\n</tr>\n<tr>\n<td>Datetime</td>\n<td>Date and time is in the following format <code>YYYY-MM-DD HH:MM:SS</code> (Example: 2019-02-17 20:05:34) Always in <code>UTC</code> time zone.</td>\n</tr>\n<tr>\n<td>Object</td>\n<td>An object is a collection of properties, and a property is an association between a name/key and a value.</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"43512f4e-0734-4b26-a845-5bb9b1dcbbeb"}],"id":"2c1e8626-7139-486f-8d83-41a06b6c1d34","_postman_id":"2c1e8626-7139-486f-8d83-41a06b6c1d34","description":""},{"name":"Payment Gateway","item":[{"name":"Sandbox","item":[{"name":"Sandbox Payment Gateway","id":"3099b88d-2e22-4cdf-b3f5-f19ee3ae6d2b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://sandbox-gateway.paysecureonline.com/","description":"<p>For testing purposes, please use our sandbox endpoint.</p>\n","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"dd55f844-f6cb-414c-9d63-668ab33c34e9","id":"dd55f844-f6cb-414c-9d63-668ab33c34e9","name":"Payment Gateway","type":"folder"}},"urlObject":{"host":["https://sandbox-gateway.paysecureonline.com/"],"query":[],"variable":[]}},"response":[{"id":"1d68b1a2-840c-4d32-8852-c3efb3f37e31","name":"Sandbox Payment Gateway","originalRequest":{"method":"GET","header":[],"url":"https://sandbox-gateway.paysecureonline.com/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 05 May 2023 15:49:18 GMT"},{"key":"Content-Type","value":"application/json; charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"vary","value":"Accept-Encoding"},{"key":"strict-transport-security","value":"max-age=31536000; includeSubDomains"},{"key":"x-content-type-options","value":"nosniff"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"set-cookie","value":"Path=/; HttpOnly; Secure"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=l5S5n%2Fdb9wIQUc0Hhyd3b5l%2B4V5O6%2B5VRtTWox6TAl8s3pmsgmvUHl9lT84VvqHZf9dXk8%2BJNhUz5i4t7F%2F%2F6WBNTZHgL1FUCYPeavMYEEK9n7PoBWRDJlYAqhe2ENMaoku2VqBd0AtjySskpnf1UGhRDPkAbQ%3D%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"7c2a21f22a033b0b-IAD"},{"key":"Content-Encoding","value":"br"},{"key":"alt-svc","value":"h3=\":443\"; ma=86400, h3-29=\":443\"; ma=86400"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Welcome to Payment Gateway, please check the API Documentation for more information.\"\n}"}],"_postman_id":"3099b88d-2e22-4cdf-b3f5-f19ee3ae6d2b"}],"id":"5883da19-0bb2-468a-9438-f041be3a8bff","_postman_id":"5883da19-0bb2-468a-9438-f041be3a8bff","description":"","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"dd55f844-f6cb-414c-9d63-668ab33c34e9","id":"dd55f844-f6cb-414c-9d63-668ab33c34e9","name":"Payment Gateway","type":"folder"}}},{"name":"Resources","item":[{"name":"Payments","item":[{"name":"List","id":"3ed2da38-9549-404d-be16-7cbc00996178","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://gateway.dashboard.paysecureonline.com/payments","description":"<p>Use this endpoint to list all transactions for all of your <code>terminal.id</code>.</p>\n<blockquote>\n<p>Here as an exception you do not need to include the <code>terminal.id</code> in your request. Using this endpoint we will return all your transactions with their corresponding <code>terminal.id</code>.</p>\n</blockquote>\n","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"aa628120-843e-4c89-8b8d-9e7b05558018","id":"aa628120-843e-4c89-8b8d-9e7b05558018","name":"Payments","type":"folder"}},"urlObject":{"path":["payments"],"host":["https://gateway.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"0260f5d2-349f-4161-9247-e6b7a846f408","name":"List","originalRequest":{"method":"GET","header":[],"url":"https://gateway.dashboard.paysecureonline.com/payments"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"items\": [\n        {\n            \"id\": 863,\n            \"amount\": \"2.00\",\n            \"origin\": \"HostedForm\",\n            \"type\": \"Auth\",\n            \"level\": 1,\n            \"authCode\": \"TAS364\",\n            \"parent\": {\n                \"id\": null\n            },\n            \"terminal\": {\n                \"id\": 24\n            },\n            \"threeds\": {\n                \"id\": 39\n            },\n            \"card\": {\n                \"bin\": 411111,\n                \"name\": \"test test\",\n                \"number\": 1111,\n                \"exp\": \"2024-11-30\",\n                \"verification\": {\n                    \"cvv\": \"M\",\n                    \"address\": \"N\"\n                },\n                \"networkTransactionId\": \"000000000173444\"\n            },\n            \"contact\": {\n                \"name\": \"\",\n                \"phone\": \"\",\n                \"email\": \"\"\n            },\n            \"externalId\": null,\n            \"isRecurring\": \"No\",\n            \"split\": null,\n            \"refunded\": true,\n            \"captured\": false,\n            \"history\": [],\n            \"order\": null,\n            \"feeTransaction\": null,\n            \"batch\": {\n                \"id\": null,\n                \"number\": null,\n                \"batchedOn\": null\n            },\n            \"ip\": {\n                \"address\": \"50.17.187.84\",\n                \"isp\": \"Amazon.com\",\n                \"type\": \"hosting\",\n                \"location\": {\n                    \"city\": \"Ashburn\",\n                    \"state\": \"VA\",\n                    \"country\": \"US\",\n                    \"zip\": \"20149\"\n                },\n                \"info\": {\n                    \"isAnonymous\": \"Yes\",\n                    \"isAnonymousVpn\": \"No\",\n                    \"isPublicProxy\": \"No\",\n                    \"isHostingProvider\": \"Yes\",\n                    \"isTorExitNode\": \"No\"\n                }\n            },\n            \"status\": {\n                \"status\": \"Decline\",\n                \"reason\": \"Transaction rejected due to: AVS Zip Mismatch, AVS Address Mismatch\"\n            },\n            \"updatedOn\": \"2023-04-25 14:46:07\",\n            \"createdOn\": \"2023-04-25 14:46:07\"\n        },\n        {\n            \"id\": 862,\n            \"amount\": \"2.00\",\n            \"origin\": \"HostedForm\",\n            \"type\": \"Capture\",\n            \"level\": 1,\n            \"authCode\": null,\n            \"parent\": {\n                \"id\": 861\n            },\n            \"terminal\": {\n                \"id\": 24\n            },\n            \"threeds\": {\n                \"id\": null\n            },\n            \"card\": {\n                \"bin\": 401200,\n                \"name\": null,\n                \"number\": 26,\n                \"exp\": \"2033-11-30\",\n                \"verification\": {\n                    \"cvv\": null,\n                    \"address\": null\n                },\n                \"networkTransactionId\": null\n            },\n            \"contact\": null,\n            \"externalId\": null,\n            \"isRecurring\": \"No\",\n            \"split\": null,\n            \"refunded\": false,\n            \"captured\": false,\n            \"history\": [],\n            \"order\": null,\n            \"feeTransaction\": null,\n            \"batch\": {\n                \"id\": null,\n                \"number\": null,\n                \"batchedOn\": null\n            }\n        ],\n    \"_links\": {\n        \"self\": {\n            \"href\": \"https://gateway.dashboard.paysecureonline.com/payments?page=1\"\n        },\n        \"first\": {\n            \"href\": \"https://gateway.dashboard.paysecureonline.com/payments?page=1\"\n        },\n        \"last\": {\n            \"href\": \"https://gateway.dashboard.paysecureonline.com/payments?page=1\"\n        },\n        \"next\": {\n            \"href\": \"https://gateway.dashboard.paysecureonline.com/payments?page=1\"\n        }\n    },\n    \"_meta\": {\n        \"totalCount\": 2,\n        \"pageCount\": 1,\n        \"currentPage\": 1,\n        \"perPage\": 30\n    }\n}"}],"_postman_id":"3ed2da38-9549-404d-be16-7cbc00996178"},{"name":"View","id":"458c90c0-9a71-44c7-b022-e80f2237123e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://gateway.dashboard.paysecureonline.com/payment/<id>","description":"<p>Use this endpoint to view information for a specific transaction record.</p>\n<blockquote>\n<p>You need to provide the <code>transaction.id</code> in your request.</p>\n</blockquote>\n","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"aa628120-843e-4c89-8b8d-9e7b05558018","id":"aa628120-843e-4c89-8b8d-9e7b05558018","name":"Payments","type":"folder"}},"urlObject":{"path":["payment","<id>"],"host":["https://gateway.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"e3a10df5-8267-475e-88d1-9085f40c3d20","name":"View","originalRequest":{"method":"GET","header":[],"url":"https://gateway.dashboard.paysecureonline.com/payment/863"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 863,\n    \"amount\": \"2.00\",\n    \"origin\": \"HostedForm\",\n    \"type\": \"Auth\",\n    \"level\": 1,\n    \"authCode\": \"TAS364\",\n    \"parent\": {\n        \"id\": null\n    },\n    \"terminal\": {\n        \"id\": 24\n    },\n    \"threeds\": {\n        \"id\": 39\n    },\n    \"card\": {\n        \"bin\": 411111,\n        \"name\": \"test test\",\n        \"number\": 1111,\n        \"exp\": \"2024-11-30\",\n        \"verification\": {\n            \"cvv\": \"M\",\n            \"address\": \"N\"\n        },\n        \"networkTransactionId\": \"000000000173444\"\n    },\n    \"contact\": {\n        \"name\": \"\",\n        \"phone\": \"\",\n        \"email\": \"\"\n    },\n    \"externalId\": null,\n    \"isRecurring\": \"No\",\n    \"split\": null,\n    \"refunded\": true,\n    \"captured\": false,\n    \"history\": [],\n    \"order\": null,\n    \"feeTransaction\": null,\n    \"batch\": {\n        \"id\": null,\n        \"number\": null,\n        \"batchedOn\": null\n    },\n    \"ip\": {\n        \"address\": \"50.17.187.84\",\n        \"isp\": \"Amazon.com\",\n        \"type\": \"hosting\",\n        \"location\": {\n            \"city\": \"Ashburn\",\n            \"state\": \"VA\",\n            \"country\": \"US\",\n            \"zip\": \"20149\"\n        },\n        \"info\": {\n            \"isAnonymous\": \"Yes\",\n            \"isAnonymousVpn\": \"No\",\n            \"isPublicProxy\": \"No\",\n            \"isHostingProvider\": \"Yes\",\n            \"isTorExitNode\": \"No\"\n        }\n    },\n    \"status\": {\n        \"status\": \"Decline\",\n        \"reason\": \"Transaction rejected due to: AVS Zip Mismatch, AVS Address Mismatch\"\n    },\n    \"updatedOn\": \"2023-04-25 14:46:07\",\n    \"createdOn\": \"2023-04-25 14:46:07\"\n}"}],"_postman_id":"458c90c0-9a71-44c7-b022-e80f2237123e"},{"name":"Sale","id":"f378ced7-7c10-4a6b-8e5d-4d8b5286a098","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"terminal\": {\n    \"id\": 24\n  },\n  \"amount\": \"2.10\",\n  \"source\": \"Internet\",\n  \"level\": 1,\n  \"card\": {\n    \"name\": \"John Wick\",\n    \"number\": 5309572686772257,\n    \"exp\": \"12/30\",\n    \"cvv\": 998,\n    \"address\": {\n      \"country\": \"United State of America\",\n      \"state\": \"CA\",\n      \"city\": \"Calabasas\",\n      \"street\": \"8320\",\n      \"zip\": \"85284\"\n    }\n  },\n  \"contact\":{\n      \"email\": \"test@testemail.com\"\n  },\n  \"sendReceipt\": \"Yes\"\n}","options":{"raw":{"language":"json"}}},"url":"https://gateway.dashboard.paysecureonline.com/payment/sale","description":"<p>The Sale method creates a new authorization and a capture request by default.</p>\n<blockquote>\n<p><strong>It is important to note that these requests need to always include the system</strong> <strong><code>terminal.id</code></strong> <strong>for which you are making a payment.</strong> </p>\n</blockquote>\n<p>Sale transactions are settled automatically while auth-only transactions are not included in the batch for settlement.</p>\n<blockquote>\n<p>Keep in mind the required fields in order to initiate a sale transaction. If you want to perform level 2 or level 3 the required fields are outlined below. </p>\n</blockquote>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Fields</th>\n<th>Level 2</th>\n<th>Level 3</th>\n<th>Visa</th>\n<th>Mastercard</th>\n<th>AMEX (Level 2 Only)</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>order.id</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>order.date</td>\n<td>No</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>order.invoice</td>\n<td>No</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>order.summaryCommodityCode</td>\n<td>No</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>order.description</td>\n<td>Yes</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>order.supplierRefNo</td>\n<td>Yes</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>order.customer.id</td>\n<td>Yes</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>order.customer.vat</td>\n<td>No</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>order.shipping.fromZip</td>\n<td>No</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>order.shipping.toZip</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>order.shipping.toCountry</td>\n<td>No</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>order.shipping.cost</td>\n<td>No</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>order.shipping.dutyCost</td>\n<td>No</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>order.tax.amount</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>order.tax.details.type</td>\n<td>No</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>order.tax.details.amount</td>\n<td>No</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>order.tax.details.rate</td>\n<td>No</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>order.tax.details.category</td>\n<td>No</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>order.products.id</td>\n<td>No</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>order.products.name</td>\n<td>No</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>order.products.price</td>\n<td>No</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>order.products.quantity</td>\n<td>No</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>order.products.measurementUnit</td>\n<td>No</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>order.products.commodityCode</td>\n<td>No</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>order.discount.amount</td>\n<td>No</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Object</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Fields</th>\n<th>Description</th>\n<th>Type</th>\n<th>Filterable</th>\n<th>Required</th>\n<th>Readonly</th>\n<th>Level 1</th>\n<th>Level 2</th>\n<th>Level 3</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>Unique ID of the payment record</td>\n<td>Integer</td>\n<td>Yes</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>terminal</td>\n<td>Terminal Object</td>\n<td>Object</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>terminal.id</td>\n<td>Dashboard Terminal ID</td>\n<td>Integer</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>No</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>amount</td>\n<td>Payment amount</td>\n<td>Number</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>source</td>\n<td>Transaction source <code>Internet</code>, <code>Phone</code> and <code>Mail</code></td>\n<td>ENUM</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>No</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>origin</td>\n<td>Origin of the transaction (i.e. Website, CRM, etc)</td>\n<td>String</td>\n<td>Yes</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>level</td>\n<td>Desired level of the payment <code>1</code>, <code>2</code> or <code>3</code></td>\n<td>ENUM</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>No</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>threeds</td>\n<td>3DS Object</td>\n<td>Object</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>threeds.id</td>\n<td>The ID that is returned from the 3DS response</td>\n<td>Integer</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>card</td>\n<td>Card details</td>\n<td>Object</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>card.name</td>\n<td>Cardholder name</td>\n<td>String</td>\n<td>No</td>\n<td>Conditional</td>\n<td>No</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>card.number</td>\n<td>Card number</td>\n<td>Integer</td>\n<td>No</td>\n<td>Conditional</td>\n<td>No</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>card.cvv</td>\n<td>Card security code / CVV</td>\n<td>Integer</td>\n<td>No</td>\n<td>Conditional</td>\n<td>No</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>card.exp</td>\n<td>Card expiration date /Format: mm/yy</td>\n<td>String</td>\n<td>No</td>\n<td>Conditional</td>\n<td>No</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>card.save</td>\n<td>Save the card details for future use <code>Yes</code> or <code>No</code>. This will return a token</td>\n<td>ENUM</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>card.store</td>\n<td><code>Yes</code> or <code>No</code>. This indicates if the transaction is a Card On File (COF) or Merchant Initiated Transaction (MIT) type. For use with Visa only</td>\n<td>ENUM</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>card.token</td>\n<td>Card token. This is used for saved card and for future billing.</td>\n<td>String</td>\n<td>No</td>\n<td>Conditional</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>card.verification</td>\n<td>Verification object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>card.verification.cvv</td>\n<td>The card security code verification response.</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>card.verification.address</td>\n<td>The Address Verification System response.</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>card.address</td>\n<td>Card billing address details</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>card.address.country</td>\n<td>Card billing country</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>card.address.state</td>\n<td>Card billing state</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>card.address.city</td>\n<td>Card billing city</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>card.address.street</td>\n<td>Card billing street</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>card.address.zip</td>\n<td>Card billing zip</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>card.networkTransactionId</td>\n<td>This field is a unique network transaction identifier for all card types. If used in consecutive Visa/Mastercard transactions, it indicates the transaction is being processed using a card in the customer wallet.</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>contact</td>\n<td>Contact object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>contact.name</td>\n<td>Contact name</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>contact.phone</td>\n<td>Contact phone</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>contact.email</td>\n<td>Contact email</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>sendReceipt</td>\n<td>Send receipt on <code>Sale</code> or <code>Capture</code> action. This parameter requires <code>contact.email</code> to be provided. <code>Yes</code> or <code>No</code>.</td>\n<td>ENUM</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>externalId</td>\n<td>Unique record identifiers from a system outside of Payment Gateway</td>\n<td>String</td>\n<td>Yes</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>isRecurring</td>\n<td>Set this flag to <code>Yes</code> if the payment request comes from a recurring system</td>\n<td>Boolean</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>split</td>\n<td><code>Yes</code> or <code>No   </code>If this is a split Tender transaction. This will return an ID that needs to be provided in the next sequence</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>ip</td>\n<td>IP Object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>ip.address</td>\n<td>Cardholder IP address</td>\n<td>String</td>\n<td>Yes</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>ip.isp</td>\n<td>Internet Service Provider</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>ip.type</td>\n<td>The type of the IP</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>ip.location</td>\n<td>IP location Object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>ip.location.city</td>\n<td>City</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>ip.location.state</td>\n<td>State</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>ip.location.country</td>\n<td>Country</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>ip.location.zip</td>\n<td>ZIP Code</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>ip.info</td>\n<td>Info</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>ip.info.isAnonymous</td>\n<td>Anonymous Check</td>\n<td>Boolean</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>ip.info.isAnonymousVpn</td>\n<td>Anonymous VPN</td>\n<td>Boolean</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>ip.info.isPublicProxy</td>\n<td>Public Proxy</td>\n<td>Boolean</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>ip.info.isHostingProvider</td>\n<td>Hosting Provider IP</td>\n<td>Boolean</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>ip.info.isTorExitNode</td>\n<td>Tor Exit Node of the IP</td>\n<td>Boolean</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>order</td>\n<td>Order details</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>order.id</td>\n<td>Purchase order</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>order.date</td>\n<td>Purchase order date</td>\n<td>Date</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>order.invoice</td>\n<td>Order invoice number</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>order.summaryCommodityCode</td>\n<td>The international description code of the overall goods/services being supplied.</td>\n<td>Integer</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>order.description</td>\n<td>Also referred to as Soft Descriptor. The text on the cardholder's statement that describes the purchase. If the order.description is sent, it will be forwarded in the authorization and capture for all card types.</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>order.supplierRefNo</td>\n<td>Supplier reference number</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>order.customer</td>\n<td>Customer details</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>order.customer.identifier</td>\n<td>Customer reference identifier</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>order.customer.vat</td>\n<td>Customer's government assigned tax identification number</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>order.shipping</td>\n<td>Order shipping details</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>order.shipping.fromZip</td>\n<td>Shipping from zip code</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>order.shipping.toZip</td>\n<td>Destination zip code</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>order.shipping.toCountry</td>\n<td>Destination county code</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>order.shipping.cost</td>\n<td>Shipping cost</td>\n<td>Number</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>order.shipping.dutyCost</td>\n<td>Shipping duty cost</td>\n<td>Number</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>order.tax</td>\n<td>Order tax details</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>order.tax.amount</td>\n<td>Sales tax</td>\n<td>Number</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>order.tax.details</td>\n<td>Additional sales tax information</td>\n<td>Array</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>order.tax.details.type</td>\n<td>The type of sales tax applied</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>order.tax.details.amount</td>\n<td>The sales tax amount applied to the order</td>\n<td>Number</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>order.tax.details.rate</td>\n<td>Tax rate (Allowed range 0.01-100)</td>\n<td>Number</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>order.tax.details.category</td>\n<td><code>Service</code>, <code>Duty</code>, <code>VAT</code>, <code>Alternate</code>, <code>National</code> <code>TaxExempt</code></td>\n<td>ENUM</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>order.products</td>\n<td>Product/s details</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>order.products.id</td>\n<td>Product ID</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>order.products.name</td>\n<td>Product name</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>order.products.price</td>\n<td>Product price</td>\n<td>Number</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>order.products.quantity</td>\n<td>Product quantity</td>\n<td>Integer</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>order.products.measurementUnit</td>\n<td>Product measurement unit</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>order.products.commodityCode</td>\n<td>Product commodity code</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>order.discount</td>\n<td>Order discounts details</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>order.discount.amount</td>\n<td>Discounts amount</td>\n<td>Number</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>order.discount.details</td>\n<td>Discount</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>order.discount.details.name</td>\n<td>Discount name</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>order.discount.details.amount</td>\n<td>Discount amount</td>\n<td>Number</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>order.discount.details.percentage</td>\n<td>Discount percentage</td>\n<td>Number</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>order.discount.details.priority</td>\n<td>Discount priority</td>\n<td>Integer</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>feeTransaction</td>\n<td>In cases where a fee is run as a separate transaction on another terminal</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>feeTransaction.id</td>\n<td>Fee Transaction ID</td>\n<td>Integer</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>feeTransaction.type</td>\n<td>The type of sales tax applied</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>feeTransaction.amount</td>\n<td>The sales tax amount applied to the order</td>\n<td>Number</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>batch</td>\n<td>Object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>batch.id</td>\n<td>Batch ID</td>\n<td>Integer</td>\n<td>Yes</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>batch.number</td>\n<td>Batch Number</td>\n<td>Integer</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>batch.batchedOn</td>\n<td>Date when batch was generated</td>\n<td>Datetime</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>status</td>\n<td>Status Object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>status.status</td>\n<td>Status</td>\n<td>String</td>\n<td>Yes</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>status.reason</td>\n<td>Description</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><blockquote>\n<p>If you pass the <code>level</code> parameter in your request, we will validate the field requirements of the level you have requested. In the event of an incomplete validation we will return an error with the missing fields. </p>\n</blockquote>\n<blockquote>\n<p>If a transaction has a <code>batch</code> information in the response, this means that this transaction has batched.</p>\n</blockquote>\n","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"aa628120-843e-4c89-8b8d-9e7b05558018","id":"aa628120-843e-4c89-8b8d-9e7b05558018","name":"Payments","type":"folder"}},"urlObject":{"path":["payment","sale"],"host":["https://gateway.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"7de4a072-683a-4b67-8afa-f7da4baa6b73","name":"Sale","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"terminal\": {\n    \"id\": 24\n  },\n  \"amount\": \"2.10\",\n  \"source\": \"Internet\",\n  \"level\": 1,\n  \"card\": {\n    \"name\": \"John Wick\",\n    \"number\": 5309572686772257,\n    \"exp\": \"12/30\",\n    \"cvv\": 998,\n    \"address\": {\n      \"country\": \"United State of America\",\n      \"state\": \"CA\",\n      \"city\": \"Calabasas\",\n      \"street\": \"8320\",\n      \"zip\": \"85284\"\n    }\n  },\n  \"contact\":{\n      \"email\": \"test@testemail.com\"\n  },\n  \"sendReceipt\": \"Yes\"\n}","options":{"raw":{"language":"json"}}},"url":"https://gateway.dashboard.paysecureonline.com/payment/sale"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 874,\n    \"amount\": \"2.10\",\n    \"origin\": null,\n    \"type\": \"Auth\",\n    \"level\": 1,\n    \"authCode\": \"VTLMC1\",\n    \"parent\": {\n        \"id\": null\n    },\n    \"terminal\": {\n        \"id\": 24\n    },\n    \"threeds\": {\n        \"id\": null\n    },\n    \"card\": {\n        \"bin\": 530957,\n        \"name\": \"John Wick\",\n        \"number\": 2257,\n        \"exp\": \"2030-12-31\",\n        \"verification\": {\n            \"cvv\": \"M\",\n            \"address\": \"Y\"\n        },\n        \"networkTransactionId\": \"1212MCC111736**\"\n    },\n    \"contact\": {\n        \"name\": null,\n        \"phone\": null,\n        \"email\": \"test@testemail.com\"\n    },\n    \"externalId\": null,\n    \"isRecurring\": \"No\",\n    \"split\": null,\n    \"refunded\": false,\n    \"captured\": true,\n    \"history\": [\n        {\n            \"id\": 875,\n            \"type\": \"Capture\",\n            \"amount\": \"2.10\",\n            \"createdOn\": \"2023-05-09 15:03:50\"\n        }\n    ],\n    \"order\": null,\n    \"feeTransaction\": null,\n    \"batch\": {\n        \"id\": null,\n        \"number\": null,\n        \"batchedOn\": null\n    },\n    \"ip\": {\n        \"address\": \"173.239.211.197\",\n        \"isp\": \"Ipxo Limited\",\n        \"type\": \"hosting\",\n        \"location\": {\n            \"city\": \"New York\",\n            \"state\": \"NY\",\n            \"country\": \"US\",\n            \"zip\": \"10118\"\n        },\n        \"info\": {\n            \"isAnonymous\": \"Yes\",\n            \"isAnonymousVpn\": \"No\",\n            \"isPublicProxy\": \"No\",\n            \"isHostingProvider\": \"No\",\n            \"isTorExitNode\": \"No\"\n        }\n    },\n    \"status\": {\n        \"status\": \"Approved\",\n        \"reason\": null\n    },\n    \"updatedOn\": \"2023-05-09 15:03:51\",\n    \"createdOn\": \"2023-05-09 15:03:48\"\n}"}],"_postman_id":"f378ced7-7c10-4a6b-8e5d-4d8b5286a098"},{"name":"Authorization","id":"e944cdcb-f800-4b0d-9481-32515c155168","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"terminal\": {\n    \"id\": 24\n  },\n  \"amount\": \"1.99\",\n  \"source\": \"Internet\",\n  \"level\": 1,\n  \"card\": {\n    \"name\": \"John Wick\",\n    \"number\": 5309572686772257,\n    \"exp\": \"12/30\",\n    \"cvv\": 998,\n    \"address\": {\n      \"country\": \"United State of America\",\n      \"state\": \"CA\",\n      \"city\": \"Calabasas\",\n      \"street\": \"8320\",\n      \"zip\": \"85284\"\n    }\n  },\n  \"contact\":{\n      \"email\": \"test@testemail.com\"\n  },\n  \"sendReceipt\": \"Yes\"\n}","options":{"raw":{"language":"json"}}},"url":"https://gateway.dashboard.paysecureonline.com/payment/auth","description":"<p>The Auth method initializes an authorization-only transaction. Authorization-only transactions are not included in the batch for settlement.</p>\n<p>A separate capture request must be submitted in order for the transaction to be settled.</p>\n<blockquote>\n<p>The suggested authorization period is <strong>10 days</strong>. You need to capture a payment within the authorization period to collect the funds of the transaction. Note, the authorization period can vary by issuer and/or card brand, it is your responsibility to ensure whatever window period is appropriate for your use case. </p>\n</blockquote>\n<blockquote>\n<p><strong>It is important to note that these requests need to always include the system</strong> <strong><code>terminal.id</code></strong> <strong>for which you are making a payment.</strong> </p>\n</blockquote>\n<p><strong>Object</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Fields</th>\n<th>Description</th>\n<th>Type</th>\n<th>Filterable</th>\n<th>Required</th>\n<th>Readonly</th>\n<th>Level 1</th>\n<th>Level 2</th>\n<th>Level 3</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>Unique ID of the payment record</td>\n<td>Integer</td>\n<td>Yes</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>terminal</td>\n<td>Terminal Object</td>\n<td>Object</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>terminal.id</td>\n<td>Dashboard Terminal ID</td>\n<td>Integer</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>No</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>amount</td>\n<td>Payment amount</td>\n<td>Number</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>source</td>\n<td>Transaction source <code>Internet</code>, <code>Phone</code> and <code>Mail</code></td>\n<td>ENUM</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>No</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>origin</td>\n<td>Origin of the transaction (i.e. Website, CRM, etc)</td>\n<td>String</td>\n<td>Yes</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>level</td>\n<td>Desired level of the payment <code>1</code>, <code>2</code> or <code>3</code></td>\n<td>ENUM</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>No</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>threeds</td>\n<td>3DS Object</td>\n<td>Object</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>threeds.id</td>\n<td>The ID that is returned from the 3DS response</td>\n<td>Integer</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>card</td>\n<td>Card details</td>\n<td>Object</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>card.name</td>\n<td>Cardholder name</td>\n<td>String</td>\n<td>No</td>\n<td>Conditional</td>\n<td>No</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>card.number</td>\n<td>Card number</td>\n<td>Integer</td>\n<td>No</td>\n<td>Conditional</td>\n<td>No</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>card.cvv</td>\n<td>Card security code / CVV</td>\n<td>Integer</td>\n<td>No</td>\n<td>Conditional</td>\n<td>No</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>card.exp</td>\n<td>Card expiration date /Format: mm/yy</td>\n<td>String</td>\n<td>No</td>\n<td>Conditional</td>\n<td>No</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>card.save</td>\n<td>Save the card details for future use <code>Yes</code> or <code>No</code>. This will return a token</td>\n<td>ENUM</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>card.store</td>\n<td><code>Yes</code> or <code>No</code>. This indicates if the transaction is a Card On File (COF) or Merchant Initiated Transaction (MIT) type. For use with Visa only</td>\n<td>ENUM</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>card.token</td>\n<td>Card token. This is used for saved card and for future billing.</td>\n<td>String</td>\n<td>No</td>\n<td>Conditional</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>card.verification</td>\n<td>Verification object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>card.verification.cvv</td>\n<td>The card security code verification response.</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>card.verification.address</td>\n<td>The Address Verification System response.</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>card.address</td>\n<td>Card billing address details</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>card.address.country</td>\n<td>Card billing country</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>card.address.state</td>\n<td>Card billing state</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>card.address.city</td>\n<td>Card billing city</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>card.address.street</td>\n<td>Card billing street</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>card.address.zip</td>\n<td>Card billing zip</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>card.networkTransactionId</td>\n<td>This field is a unique network transaction identifier for all card types. If used in consecutive Visa/Mastercard transactions, it indicates the transaction is being processed using a card in the customer wallet.</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>contact</td>\n<td>Contact object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>contact.name</td>\n<td>Contact name</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>contact.phone</td>\n<td>Contact phone</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>contact.email</td>\n<td>Contact email</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>sendReceipt</td>\n<td>Send receipt on <code>Sale</code> or <code>Capture</code> action. This parameter requires <code>contact.email</code> to be provided. <code>Yes</code> or <code>No</code>.</td>\n<td>ENUM</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>externalId</td>\n<td>Unique record identifiers from a system outside of Payment Gateway</td>\n<td>String</td>\n<td>Yes</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>isRecurring</td>\n<td>Set this flag to <code>Yes</code> if the payment request comes from a recurring system</td>\n<td>Boolean</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>split</td>\n<td>If this is a split Tender transaction. This will return an ID that needs to be provided in the next sequence</td>\n<td><code>Yes</code> or <code>No</code></td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>ip</td>\n<td>IP Object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>ip.address</td>\n<td>Cardholder IP address</td>\n<td>String</td>\n<td>Yes</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>ip.isp</td>\n<td>Internet Service Provider</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>ip.type</td>\n<td>The type of the IP</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>ip.location</td>\n<td>IP location Object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>ip.location.city</td>\n<td>City</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>ip.location.state</td>\n<td>State</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>ip.location.country</td>\n<td>Country</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>ip.location.zip</td>\n<td>ZIP Code</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>ip.info</td>\n<td>Info</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>ip.info.isAnonymous</td>\n<td>Anonymous Check</td>\n<td>Boolean</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>ip.info.isAnonymousVpn</td>\n<td>Anonymous VPN</td>\n<td>Boolean</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>ip.info.isPublicProxy</td>\n<td>Public Proxy</td>\n<td>Boolean</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>ip.info.isHostingProvider</td>\n<td>Hosting Provider IP</td>\n<td>Boolean</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>ip.info.isTorExitNode</td>\n<td>Tor Exit Node of the IP</td>\n<td>Boolean</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>order</td>\n<td>Order details</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>order.id</td>\n<td>Purchase order</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>order.date</td>\n<td>Purchase order date</td>\n<td>Date</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>order.invoice</td>\n<td>Order invoice number</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>order.summaryCommodityCode</td>\n<td>The international description code of the overall goods/services being supplied.</td>\n<td>Integer</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>order.description</td>\n<td>Also referred to as Soft Descriptor. The text on the cardholder's statement that describes the purchase. If the order.description is sent, it will be forwarded in the authorization and capture for all card types.</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>order.supplierRefNo</td>\n<td>Supplier reference number</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>order.customer</td>\n<td>Customer details</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>order.customer.identifier</td>\n<td>Customer reference identifier</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>order.customer.vat</td>\n<td>Customer's government assigned tax identification number</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>order.shipping</td>\n<td>Order shipping details</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>order.shipping.fromZip</td>\n<td>Shipping from zip code</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>order.shipping.toZip</td>\n<td>Destination zip code</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>order.shipping.toCountry</td>\n<td>Destination county code</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>order.shipping.cost</td>\n<td>Shipping cost</td>\n<td>Number</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>order.shipping.dutyCost</td>\n<td>Shipping duty cost</td>\n<td>Number</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>order.tax</td>\n<td>Order tax details</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>order.tax.amount</td>\n<td>Sales tax</td>\n<td>Number</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>order.tax.details</td>\n<td>Additional sales tax information</td>\n<td>Array</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>order.tax.details.type</td>\n<td>The type of sales tax applied</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>order.tax.details.amount</td>\n<td>The sales tax amount applied to the order</td>\n<td>Number</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>order.tax.details.rate</td>\n<td>Tax rate (Allowed range 0.01-100)</td>\n<td>Number</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>order.tax.details.category</td>\n<td><code>Service</code>, <code>Duty</code>, <code>VAT</code>, <code>Alternate</code>, <code>National</code> <code>TaxExempt</code></td>\n<td>ENUM</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>order.products</td>\n<td>Product/s details</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>order.products.id</td>\n<td>Product ID</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>order.products.name</td>\n<td>Product name</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>order.products.price</td>\n<td>Product price</td>\n<td>Number</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>order.products.quantity</td>\n<td>Product quantity</td>\n<td>Integer</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>order.products.measurementUnit</td>\n<td>Product measurement unit</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>order.products.commodityCode</td>\n<td>Product commodity code</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>order.discounts</td>\n<td>Order discounts details</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>order.discounts.amount</td>\n<td>Discounts amount</td>\n<td>Number</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>order.discounts.details</td>\n<td>Discount</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>order.discounts.details.name</td>\n<td>Discount name</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>order.discounts.details.amount</td>\n<td>Discount amount</td>\n<td>Number</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>order.discounts.details.percentage</td>\n<td>Discount percentage</td>\n<td>Number</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>order.discounts.details.priority</td>\n<td>Discount priority</td>\n<td>Integer</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>feeTransaction</td>\n<td>In cases where a fee is run as a separate transaction on another terminal</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>feeTransaction.id</td>\n<td>Fee Transaction ID</td>\n<td>Integer</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>feeTransaction.type</td>\n<td>The type of sales tax applied</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>feeTransaction.amount</td>\n<td>The sales tax amount applied to the order</td>\n<td>Number</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>batch</td>\n<td>Object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>batch.id</td>\n<td>Batch ID</td>\n<td>Integer</td>\n<td>Yes</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>batch.number</td>\n<td>Batch Number</td>\n<td>Integer</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>batch.batchedOn</td>\n<td>Date when batch was generated</td>\n<td>Datetime</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>status</td>\n<td>Status Object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>status.status</td>\n<td>Status</td>\n<td>String</td>\n<td>Yes</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>status.reason</td>\n<td>Description</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><blockquote>\n<p>If you pass the <code>level</code> parameter in your request, we will validate the field requirements of the level you have requested. In the event of an incomplete validation we will return an error with the missing fields. </p>\n</blockquote>\n<blockquote>\n<p>If a transaction has a <code>batch</code> information in the response, this means that this transaction has batched.</p>\n</blockquote>\n","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"aa628120-843e-4c89-8b8d-9e7b05558018","id":"aa628120-843e-4c89-8b8d-9e7b05558018","name":"Payments","type":"folder"}},"urlObject":{"path":["payment","auth"],"host":["https://gateway.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"7740b70e-b7f1-4c35-b559-2bdcf8cd15ed","name":"Auth","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"terminal\": {\n    \"id\": 24\n  },\n  \"amount\": \"1.99\",\n  \"source\": \"Internet\",\n  \"level\": 1,\n  \"card\": {\n    \"name\": \"John Wick\",\n    \"number\": 5309572686772257,\n    \"exp\": \"12/30\",\n    \"cvv\": 998,\n    \"address\": {\n      \"country\": \"United State of America\",\n      \"state\": \"CA\",\n      \"city\": \"Calabasas\",\n      \"street\": \"8320\",\n      \"zip\": \"85284\"\n    }\n  },\n  \"contact\":{\n      \"email\": \"test@testemail.com\"\n  },\n  \"sendReceipt\": \"Yes\"\n}","options":{"raw":{"language":"json"}}},"url":"https://gateway.dashboard.paysecureonline.com/payment/auth"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 876,\n    \"amount\": \"1.99\",\n    \"origin\": null,\n    \"type\": \"Auth\",\n    \"level\": 1,\n    \"authCode\": \"VTLMC1\",\n    \"parent\": {\n        \"id\": null\n    },\n    \"terminal\": {\n        \"id\": 24\n    },\n    \"threeds\": {\n        \"id\": null\n    },\n    \"card\": {\n        \"bin\": 530957,\n        \"name\": \"John Wick\",\n        \"number\": 2257,\n        \"exp\": \"2030-12-31\",\n        \"verification\": {\n            \"cvv\": \"M\",\n            \"address\": \"Y\"\n        },\n        \"networkTransactionId\": \"1212MCC111863**\"\n    },\n    \"contact\": {\n        \"name\": null,\n        \"phone\": null,\n        \"email\": \"test@testemail.com\"\n    },\n    \"externalId\": null,\n    \"isRecurring\": \"No\",\n    \"split\": null,\n    \"refunded\": false,\n    \"captured\": false,\n    \"history\": [],\n    \"order\": null,\n    \"feeTransaction\": null,\n    \"batch\": {\n        \"id\": null,\n        \"number\": null,\n        \"batchedOn\": null\n    },\n    \"ip\": {\n        \"address\": \"173.239.211.183\",\n        \"isp\": \"Ipxo Limited\",\n        \"type\": \"hosting\",\n        \"location\": {\n            \"city\": \"New York\",\n            \"state\": \"NY\",\n            \"country\": \"US\",\n            \"zip\": \"10118\"\n        },\n        \"info\": {\n            \"isAnonymous\": \"Yes\",\n            \"isAnonymousVpn\": \"No\",\n            \"isPublicProxy\": \"No\",\n            \"isHostingProvider\": \"No\",\n            \"isTorExitNode\": \"No\"\n        }\n    },\n    \"status\": {\n        \"status\": \"Approved\",\n        \"reason\": null\n    },\n    \"updatedOn\": \"2023-05-09 15:23:44\",\n    \"createdOn\": \"2023-05-09 15:23:44\"\n}"}],"_postman_id":"e944cdcb-f800-4b0d-9481-32515c155168"},{"name":"Capture","id":"9a3b8770-f38f-46e0-a160-01e3daef7d85","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"amount\": \"1.99\",\r\n    \"partial\": {\r\n        \"total\": null,\r\n        \"sequence\": null\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"https://gateway.dashboard.paysecureonline.com/payment/<id>/capture","description":"<p>The capture method marks an Auth transaction for settlement, therefore the transaction ID is needed. This method also allows adjustments of the transaction amount.</p>\n<blockquote>\n<p>If your request does not include the <code>amount</code>, our system will settle the full transaction with no changes in the <code>amount</code> field and vice versa.</p>\n</blockquote>\n<blockquote>\n<p>You can perform <strong>multiple capture requests</strong> for a specific auth transaction until you reach the authorized amount. After that, you must submit a new authorization request to capture additional amounts.</p>\n</blockquote>\n<p>Object</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Fields</th>\n<th>Description</th>\n<th>Type</th>\n<th>Filterable</th>\n<th>Required</th>\n<th>Readonly</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>Unique ID of the capture record</td>\n<td>Integer</td>\n<td>Yes</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>terminal</td>\n<td>Terminal Object</td>\n<td>Object</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>terminal.id</td>\n<td>Dashboard Terminal ID</td>\n<td>Integer</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>amount</td>\n<td>Amount of the capture</td>\n<td>Number</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>partial</td>\n<td>Partial Object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>partial.total</td>\n<td>Total payments</td>\n<td>Integer</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>partial.sequence</td>\n<td>Current payment sequence number</td>\n<td>Integer</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>sendReceipt</td>\n<td>Send receipt</td>\n<td>Integer</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"aa628120-843e-4c89-8b8d-9e7b05558018","id":"aa628120-843e-4c89-8b8d-9e7b05558018","name":"Payments","type":"folder"}},"urlObject":{"path":["payment","<id>","capture"],"host":["https://gateway.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"e21b50b6-6361-4f57-976e-adec90c6b7ff","name":"Capture","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://gateway.dashboard.paysecureonline.com/payment/876/capture"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"amount\": \"1.99\",\n    \"partial\": {\n        \"total\": null,\n        \"sequence\": null\n    }\n}"}],"_postman_id":"9a3b8770-f38f-46e0-a160-01e3daef7d85"},{"name":"Partial Capture","id":"171b2f55-00f0-4c27-9882-77b0a6b2fe02","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"terminal\": {\r\n        \"id\": 24\r\n    },\r\n    \"amount\": 0.90,\r\n    \"partial\": {\r\n        \"sequence\": \"1\",\r\n        \"total\": \"2\"\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"https://gateway.dashboard.paysecureonline.com/payment/<id>/capture","description":"<p>We provide the functionality to create partial captures.</p>\n<p>If <code>partial</code> is included in the request the gateway marks the specified transaction amount for settlement.</p>\n<blockquote>\n<p>When performing partial capture it is required to pass the <code>sequence</code> and <code>total</code> to indicate how many partial captures will be performed.</p>\n</blockquote>\n","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"aa628120-843e-4c89-8b8d-9e7b05558018","id":"aa628120-843e-4c89-8b8d-9e7b05558018","name":"Payments","type":"folder"}},"urlObject":{"path":["payment","<id>","capture"],"host":["https://gateway.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"ca0115ae-70c7-4f08-a8ee-08a1703bcfe8","name":"Partial Capture","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"terminal\": {\n        \"id\": 24\n    },\n    \"amount\": 0.90,\n    \"partial\": {\n        \"sequence\": \"1\",\n        \"total\": \"2\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://gateway.dashboard.paysecureonline.com/payment/capture/880"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"amount\": \"0.90\",\n    \"partial\": {\n        \"total\": \"2\",\n        \"sequence\": \"1\"\n    }\n}"}],"_postman_id":"171b2f55-00f0-4c27-9882-77b0a6b2fe02"},{"name":"Refund","id":"4a64ab6a-77c0-47db-8ad3-a2c123bfbeab","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"id\": 883,\n    \"amount\": \"1.99\",\n    \"origin\": \"API\",\n    \"type\": \"Return\",\n    \"level\": 1,\n    \"authCode\": null,\n    \"parent\": {\n        \"id\": 882\n    },\n    \"terminal\": {\n        \"id\": 24\n    },\n    \"threeds\": {\n        \"id\": null\n    },\n    \"card\": {\n        \"bin\": 530957,\n        \"name\": null,\n        \"number\": 2257,\n        \"exp\": \"2030-12-31\",\n        \"verification\": {\n            \"cvv\": null,\n            \"address\": null\n        },\n        \"networkTransactionId\": null\n    },\n    \"contact\": null,\n    \"externalId\": null,\n    \"isRecurring\": \"No\",\n    \"split\": null,\n    \"refunded\": false,\n    \"captured\": false,\n    \"history\": [],\n    \"order\": null,\n    \"feeTransaction\": null,\n    \"batch\": {\n        \"id\": null,\n        \"number\": null,\n        \"batchedOn\": null\n    },\n    \"ip\": {\n        \"address\": \"216.73.161.60\",\n        \"isp\": \"Ipxo Limited\",\n        \"type\": \"hosting\",\n        \"location\": {\n            \"city\": \"New York\",\n            \"state\": \"NY\",\n            \"country\": \"US\",\n            \"zip\": \"10013\"\n        },\n        \"info\": {\n            \"isAnonymous\": \"Yes\",\n            \"isAnonymousVpn\": \"No\",\n            \"isPublicProxy\": \"No\",\n            \"isHostingProvider\": \"Yes\",\n            \"isTorExitNode\": \"No\"\n        }\n    },\n    \"status\": {\n        \"status\": \"Approved\",\n        \"reason\": null\n    },\n    \"updatedOn\": \"2023-05-09 15:51:36\",\n    \"createdOn\": \"2023-05-09 15:51:36\"\n}","options":{"raw":{"language":"json"}}},"url":"https://gateway.dashboard.paysecureonline.com/payment/<id>/refund\n","description":"<p>The refund method is used to refund/void an authorized or settled transaction. This method will void or reverse the transaction based on the card network.</p>\n<blockquote>\n<p><strong>Important:</strong> We do not allow refunds without <code>transaction.id</code> and an <code>amount</code> that exceeds the captured of the original transaction. </p>\n</blockquote>\n<p>We support additional data for a refund request. If no amount is specified in the request, the system will return the full amount of the original transaction. You need to provide any discount and tax amount that was in the original transaction to perform a partial refund.</p>\n<blockquote>\n<p><strong>Important:</strong> In a refund request if the <code>amount</code> is present but the <code>order.tax</code> and <code>order.discounts</code> amounts are not present, the <code>amount</code> must be less than or equal to the subtotal amount of the original order. </p>\n</blockquote>\n<p>The system will create a new transaction id for all refund transactions.</p>\n<ul><li><p>If the original transaction has been settled, the new transaction id created by the return will be processed offline and will not generate an auth code.</p></li><li><p>If the original transaction has not been settled, we link the original transaction to the return transaction. The gateway automatically reverses the transaction and an auth code will be generated.</p></li></ul>\n\n<p>Object</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Fields</th>\n<th>Description</th>\n<th>Type</th>\n<th>Filterable</th>\n<th>Required</th>\n<th>Readonly</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>Unique ID of the refund record</td>\n<td>Integer</td>\n<td>Yes</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>terminal</td>\n<td>Terminal Object</td>\n<td>Object</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>terminal.id</td>\n<td>Dashboard Terminal ID</td>\n<td>Integer</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>amount</td>\n<td>Amount of the refund</td>\n<td>Number</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"aa628120-843e-4c89-8b8d-9e7b05558018","id":"aa628120-843e-4c89-8b8d-9e7b05558018","name":"Payments","type":"folder"}},"urlObject":{"path":["payment","<id>","refund\n"],"host":["https://gateway.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"54182ccc-e04f-43f7-ad5f-bcd819f440fd","name":"Refund","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://gateway.dashboard.paysecureonline.com/payment/882/refund\n"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 883,\n    \"amount\": \"1.99\",\n    \"origin\": \"API\",\n    \"type\": \"Return\",\n    \"level\": 1,\n    \"authCode\": null,\n    \"parent\": {\n        \"id\": 882\n    },\n    \"terminal\": {\n        \"id\": 24\n    },\n    \"threeds\": {\n        \"id\": null\n    },\n    \"card\": {\n        \"bin\": 530957,\n        \"name\": null,\n        \"number\": 2257,\n        \"exp\": \"2030-12-31\",\n        \"verification\": {\n            \"cvv\": null,\n            \"address\": null\n        },\n        \"networkTransactionId\": null\n    },\n    \"contact\": null,\n    \"externalId\": null,\n    \"isRecurring\": \"No\",\n    \"split\": null,\n    \"refunded\": false,\n    \"captured\": false,\n    \"history\": [],\n    \"order\": null,\n    \"feeTransaction\": null,\n    \"batch\": {\n        \"id\": null,\n        \"number\": null,\n        \"batchedOn\": null\n    },\n    \"ip\": {\n        \"address\": \"216.73.161.60\",\n        \"isp\": \"Ipxo Limited\",\n        \"type\": \"hosting\",\n        \"location\": {\n            \"city\": \"New York\",\n            \"state\": \"NY\",\n            \"country\": \"US\",\n            \"zip\": \"10013\"\n        },\n        \"info\": {\n            \"isAnonymous\": \"Yes\",\n            \"isAnonymousVpn\": \"No\",\n            \"isPublicProxy\": \"No\",\n            \"isHostingProvider\": \"Yes\",\n            \"isTorExitNode\": \"No\"\n        }\n    },\n    \"status\": {\n        \"status\": \"Approved\",\n        \"reason\": null\n    },\n    \"updatedOn\": \"2023-05-09 15:51:36\",\n    \"createdOn\": \"2023-05-09 15:51:36\"\n}"}],"_postman_id":"4a64ab6a-77c0-47db-8ad3-a2c123bfbeab"},{"name":"Partial Refund","id":"e38f9515-df7c-4d73-95bc-de37fafbb611","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"terminal\": {\n    \"id\": 24\n  },\n  \"amount\": \"1.10\",\n  \"source\": \"Internet\",\n  \"level\": 1,\n  \"card\": {\n    \"name\": \"John Wick\",\n    \"number\": 5146312200000035,\n    \"exp\": \"12/30\",\n    \"cvv\": \"998\",\n    \"address\": {\n      \"country\": \"United State of America\",\n      \"state\": \"CA\",\n      \"city\": \"Calabasas\",\n      \"street\": \"8320\",\n      \"zip\": \"85284\"\n    }\n  },\n  \"ip\": {\n    \"address\": \"123.123.123.123\"\n  }\n}","options":{"raw":{"language":"json"}}},"url":"https://gateway.dashboard.paysecureonline.com/payment/<id>/refund\n","description":"<p>You are allowed to perform a partial refund by providing a lower <code>amount</code> than the original captured transaction if no <code>amount</code> is provided the transaction will be fully refunded. You need to provide any discount and tax amount that was in the original transaction to perform a partial refund.</p>\n<p>EndFragme</p>\n","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"aa628120-843e-4c89-8b8d-9e7b05558018","id":"aa628120-843e-4c89-8b8d-9e7b05558018","name":"Payments","type":"folder"}},"urlObject":{"path":["payment","<id>","refund\n"],"host":["https://gateway.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"31f617c0-8f11-48ab-9ca4-77d05c830883","name":"Partial Refund","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"terminal\": {\n    \"id\": 24\n  },\n  \"amount\": \"1.10\",\n  \"source\": \"Internet\",\n  \"level\": 1,\n  \"card\": {\n    \"name\": \"John Wick\",\n    \"number\": 5146312200000035,\n    \"exp\": \"12/30\",\n    \"cvv\": \"998\",\n    \"address\": {\n      \"country\": \"United State of America\",\n      \"state\": \"CA\",\n      \"city\": \"Calabasas\",\n      \"street\": \"8320\",\n      \"zip\": \"85284\"\n    }\n  },\n  \"ip\": {\n    \"address\": \"123.123.123.123\"\n  }\n}","options":{"raw":{"language":"json"}}},"url":"https://gateway.dashboard.paysecureonline.com/payment/884/refund\n"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 884,\n    \"amount\": \"0.99\",\n    \"origin\": \"API\",\n    \"type\": \"Return\",\n    \"level\": 1,\n    \"authCode\": null,\n    \"parent\": {\n        \"id\": 884\n    },\n    \"terminal\": {\n        \"id\": 24\n    },\n    \"threeds\": {\n        \"id\": null\n    },\n    \"card\": {\n        \"bin\": 530957,\n        \"name\": null,\n        \"number\": 2257,\n        \"exp\": \"2030-12-31\",\n        \"verification\": {\n            \"cvv\": null,\n            \"address\": null\n        },\n        \"networkTransactionId\": null\n    },\n    \"contact\": null,\n    \"externalId\": null,\n    \"isRecurring\": \"No\",\n    \"split\": null,\n    \"refunded\": false,\n    \"captured\": false,\n    \"history\": [],\n    \"order\": null,\n    \"feeTransaction\": null,\n    \"batch\": {\n        \"id\": null,\n        \"number\": null,\n        \"batchedOn\": null\n    },\n    \"ip\": {\n        \"address\": \"173.239.211.192\",\n        \"isp\": \"Ipxo Limited\",\n        \"type\": \"hosting\",\n        \"location\": {\n            \"city\": \"New York\",\n            \"state\": \"NY\",\n            \"country\": \"US\",\n            \"zip\": \"10118\"\n        },\n        \"info\": {\n            \"isAnonymous\": \"Yes\",\n            \"isAnonymousVpn\": \"No\",\n            \"isPublicProxy\": \"No\",\n            \"isHostingProvider\": \"No\",\n            \"isTorExitNode\": \"No\"\n        }\n    },\n    \"status\": {\n        \"status\": \"Approved\",\n        \"reason\": null\n    },\n    \"updatedOn\": \"2023-05-09 15:56:59\",\n    \"createdOn\": \"2023-05-09 15:56:59\"\n}"}],"_postman_id":"e38f9515-df7c-4d73-95bc-de37fafbb611"},{"name":"Soft/Dynamic Descriptor","id":"0cb08e16-cfde-42ae-b398-92b50da4d405","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"terminal\": {\n        \"id\": 24\n    },\n    \"amount\": \"9.99\",\n    \"source\": \"Internet\",\n    \"level\": 1,\n    \"card\": {\n        \"name\": \"John Wick\",\n        \"number\": 5146312200000035,\n        \"exp\": \"12/30\",\n        \"cvv\": \"998\",\n        \"address\": {\n            \"country\": \"United State of America\",\n            \"state\": \"CA\",\n            \"city\": \"Calabasas\",\n            \"street\": \"8320\",\n            \"zip\": \"85284\"\n        }\n    },\n    \"order\": {\n        \"description\": \"Grandmas Cookie Store\"\n    }\n}   ","options":{"raw":{"language":"json"}}},"url":"https://gateway.dashboard.paysecureonline.com/payment/sale","description":"<p>Soft Descriptor or Dynamic Descriptor functionality gives you the ability to modify the statement descriptor on a per-transaction basis. Using this feature, you gain the ability to change this information according to your discretion and needs.</p>\n<blockquote>\n<p>In order to use this functionality always include <code>order.description</code> in your <strong>Sale</strong> or <strong>Auth</strong> requests.</p>\n</blockquote>\n","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"aa628120-843e-4c89-8b8d-9e7b05558018","id":"aa628120-843e-4c89-8b8d-9e7b05558018","name":"Payments","type":"folder"}},"urlObject":{"path":["payment","sale"],"host":["https://gateway.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"c5775a85-def8-4613-9da4-9368dc4717b3","name":"Sale with Dynamic Descriptor","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"terminal\": {\n        \"id\": 24\n    },\n    \"amount\": \"9.99\",\n    \"source\": \"Internet\",\n    \"level\": 1,\n    \"card\": {\n        \"name\": \"John Wick\",\n        \"number\": 5146312200000035,\n        \"exp\": \"12/30\",\n        \"cvv\": \"998\",\n        \"address\": {\n            \"country\": \"United State of America\",\n            \"state\": \"CA\",\n            \"city\": \"Calabasas\",\n            \"street\": \"8320\",\n            \"zip\": \"85284\"\n        }\n    },\n    \"order\": {\n        \"description\": \"Grandmas Cookie Store\"\n    }\n}   ","options":{"raw":{"language":"json"}}},"url":"https://gateway.dashboard.paysecureonline.com/payment/sale"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 887,\n    \"amount\": \"9.99\",\n    \"origin\": null,\n    \"type\": \"Auth\",\n    \"level\": 1,\n    \"authCode\": \"VTLMC1\",\n    \"parent\": {\n        \"id\": null\n    },\n    \"terminal\": {\n        \"id\": 24\n    },\n    \"threeds\": {\n        \"id\": null\n    },\n    \"card\": {\n        \"bin\": 514631,\n        \"name\": \"John Wick\",\n        \"number\": 35,\n        \"exp\": \"2030-12-31\",\n        \"verification\": {\n            \"cvv\": \"M\",\n            \"address\": \"Y\"\n        },\n        \"networkTransactionId\": \"1212MCC111168**\"\n    },\n    \"contact\": {\n        \"name\": null,\n        \"phone\": null,\n        \"email\": null\n    },\n    \"externalId\": null,\n    \"isRecurring\": \"No\",\n    \"split\": null,\n    \"refunded\": false,\n    \"captured\": true,\n    \"history\": [\n        {\n            \"id\": 888,\n            \"type\": \"Capture\",\n            \"amount\": \"9.99\",\n            \"createdOn\": \"2023-05-09 16:02:30\"\n        }\n    ],\n    \"order\": {\n        \"identifier\": null,\n        \"date\": null,\n        \"invoice\": null,\n        \"description\": \"Grandmas Cookie Store\",\n        \"note\": null,\n        \"summaryCommodityCode\": null,\n        \"supplierRefNo\": null,\n        \"tax\": {\n            \"amount\": null,\n            \"details\": []\n        },\n        \"discount\": {\n            \"amount\": null\n        },\n        \"customer\": {\n            \"id\": null,\n            \"vat\": null\n        }\n    },\n    \"feeTransaction\": null,\n    \"batch\": {\n        \"id\": null,\n        \"number\": null,\n        \"batchedOn\": null\n    },\n    \"ip\": {\n        \"address\": \"173.239.211.198\",\n        \"isp\": \"Ipxo Limited\",\n        \"type\": \"hosting\",\n        \"location\": {\n            \"city\": \"New York\",\n            \"state\": \"NY\",\n            \"country\": \"US\",\n            \"zip\": \"10118\"\n        },\n        \"info\": {\n            \"isAnonymous\": \"Yes\",\n            \"isAnonymousVpn\": \"No\",\n            \"isPublicProxy\": \"No\",\n            \"isHostingProvider\": \"No\",\n            \"isTorExitNode\": \"No\"\n        }\n    },\n    \"status\": {\n        \"status\": \"Approved\",\n        \"reason\": null\n    },\n    \"updatedOn\": \"2023-05-09 16:02:32\",\n    \"createdOn\": \"2023-05-09 16:02:29\"\n}"}],"_postman_id":"0cb08e16-cfde-42ae-b398-92b50da4d405"},{"name":"Card Authentication","id":"0a829dca-888f-4ae0-9001-f08b663079d1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"terminal\": {\n        \"id\": 24\n    },\n    \"amount\": \"0.00\",\n    \"source\": \"Internet\",\n    \"level\": 1,\n    \"card\": {\n        \"name\": \"John Wick\",\n        \"number\": 5146312200000035,\n        \"exp\": \"12/30\",\n        \"cvv\": \"998\",\n        \"address\": {\n            \"country\": \"United State of America\",\n            \"state\": \"CA\",\n            \"city\": \"Calabasas\",\n            \"street\": \"8320\",\n            \"zip\": \"85284\"\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://gateway.dashboard.paysecureonline.com/payment/card-authentication","description":"<p>The Card authentication method supports a zero-dollar authorization. This way you can check that the credit card is valid, and if needed that the card has enough funds on it for the transaction. This type of authorization does not hold any funds on the cardholder account.</p>\n<blockquote>\n<p>A <strong>zero dollar</strong> authorization cannot be submitted for settlement or for return. </p>\n</blockquote>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Fields</th>\n<th>Description</th>\n<th>Type</th>\n<th>Filterable</th>\n<th>Required</th>\n<th>Readonly</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>Unique ID of the payment record</td>\n<td>Integer</td>\n<td>Yes</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>terminal</td>\n<td>Terminal Object</td>\n<td>Object</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>terminal.id</td>\n<td>Dashboard Terminal ID</td>\n<td>Integer</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>amount</td>\n<td>Amount of the payment</td>\n<td>Number</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>source</td>\n<td>Where the card details come from <code>Internet</code> or <code>MOTO</code></td>\n<td>ENUM</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>card</td>\n<td>Card details</td>\n<td>Object</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>card.name</td>\n<td>Cardholder name</td>\n<td>String</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>card.number</td>\n<td>Card number</td>\n<td>Integer</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>card.exp</td>\n<td>Card expiration date <code>mm/yy</code></td>\n<td>String</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>card.save</td>\n<td>Save the card details for future use <code>Yes</code> or <code>No</code></td>\n<td>ENUM</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>card.verification</td>\n<td>Verification object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>card.verification.cvv</td>\n<td>Returns the verification cvv code</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>card.verification.address</td>\n<td>Returns the verification address code</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>card.address</td>\n<td>Card billing address details</td>\n<td>Object</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>card.address.country</td>\n<td>Card billing country</td>\n<td>String</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>card.address.state</td>\n<td>Card billing state</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>card.address.city</td>\n<td>Card billing city</td>\n<td>String</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>card.address.street</td>\n<td>Card billing street</td>\n<td>String</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>card.address.zip</td>\n<td>Card billing zip</td>\n<td>String</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"aa628120-843e-4c89-8b8d-9e7b05558018","id":"aa628120-843e-4c89-8b8d-9e7b05558018","name":"Payments","type":"folder"}},"urlObject":{"path":["payment","card-authentication"],"host":["https://gateway.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"479d2ad3-f87e-4e18-af27-b04d5c4b7bb6","name":"Card Authentication","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"terminal\": {\n        \"id\": 24\n    },\n    \"amount\": \"0.00\",\n    \"source\": \"Internet\",\n    \"level\": 1,\n    \"card\": {\n        \"name\": \"John Wick\",\n        \"number\": 5146312200000035,\n        \"exp\": \"12/30\",\n        \"cvv\": \"998\",\n        \"address\": {\n            \"country\": \"United State of America\",\n            \"state\": \"CA\",\n            \"city\": \"Calabasas\",\n            \"street\": \"8320\",\n            \"zip\": \"85284\"\n        }\n    }\n}   ","options":{"raw":{"language":"json"}}},"url":"https://gateway.dashboard.paysecureonline.com/payment/card-authentication"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"amount\": \"0.00\",\n    \"partial\": {\n        \"total\": null,\n        \"sequence\": null\n    }\n}"}],"_postman_id":"0a829dca-888f-4ae0-9001-f08b663079d1"},{"name":"Card Tokenization","id":"2bd247ce-c78e-4b82-8345-e21319b4764e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"terminal\": {\n        \"id\": 24\n    },\n    \"source\": \"Internet\",\n    \"card\": {\n        \"name\": \"John Wick\",\n        \"number\": 5146312200000035,\n        \"exp\": \"12/30\",\n        \"cvv\": \"998\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://gateway.dashboard.paysecureonline.com/payment/generate-token","description":"<p>Tokenization is the process of exchanging sensitive card data with a unique token without compromising its security when you desire to use this card for <strong>future payments</strong>. A token is up to 64-digit characters.</p>\n<p>Keep in mind that when you are using a token for a transaction we also automatically include the <code>networkTransactionId</code> in the request.</p>\n<blockquote>\n<p>Tokenization can be performed during a <strong>sale</strong>, <strong>auth</strong> and <strong>cardAuthentication</strong> request when the value of <code>card.save</code> parameter is passed as <code>Yes</code>. We will generate a secure token for that card. The response will include the first six and the last four digits of the card number in the <code>card.number</code> field and a token in the <code>card.token</code> field, which can be used in the future in place of a card number.</p>\n</blockquote>\n<p>Although you can tokenize a card in any <strong>sale</strong>, <strong>auth</strong>, and <strong>cardAuthentication</strong> request, as mentioned above, this endpoint can be utilized to generate a token-only request for your convenience.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Fields</th>\n<th>Description</th>\n<th>Type</th>\n<th>Filterable</th>\n<th>Required</th>\n<th>Readonly</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>terminal</td>\n<td>Terminal Object</td>\n<td>Object</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>terminal.id</td>\n<td>Terminal ID</td>\n<td>Integer</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>source</td>\n<td>Where the card details come from <code>Internet</code> or <code>MOTO</code></td>\n<td>ENUM</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>card</td>\n<td>Card details</td>\n<td>Object</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>card.name</td>\n<td>Cardholder name</td>\n<td>String</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>card.number</td>\n<td>Card number</td>\n<td>Integer</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>card.exp</td>\n<td>Card expiration date <code>mm/yy</code></td>\n<td>String</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>card.cvv</td>\n<td>Card security code</td>\n<td>Integer</td>\n<td>No</td>\n<td>Conditional</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"aa628120-843e-4c89-8b8d-9e7b05558018","id":"aa628120-843e-4c89-8b8d-9e7b05558018","name":"Payments","type":"folder"}},"urlObject":{"path":["payment","generate-token"],"host":["https://gateway.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"c8f1f026-3289-4e19-92cf-c285a830d8de","name":"Card Tokenization","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"terminal\": {\n        \"id\": 24\n    },\n    \"source\": \"Internet\",\n    \"card\": {\n        \"name\": \"John Wick\",\n        \"number\": 5146312200000035,\n        \"exp\": \"12/30\",\n        \"cvv\": \"998\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://gateway.dashboard.paysecureonline.com/payment/generate-token"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"890\",\n    \"amount\": 0,\n    \"origin\": \"API\",\n    \"type\": \"GenerateToken\",\n    \"level\": 1,\n    \"authCode\": null,\n    \"parent\": {\n        \"id\": null\n    },\n    \"terminal\": {\n        \"id\": 24\n    },\n    \"threeds\": {\n        \"id\": null\n    },\n    \"card\": {\n        \"bin\": 514631,\n        \"name\": \"John Wick\",\n        \"number\": 35,\n        \"exp\": \"2030-12-31\",\n        \"verification\": {\n            \"cvv\": null,\n            \"address\": null\n        },\n        \"networkTransactionId\": \"1212MCC111268**\",\n        \"token\": \"1kDCZY8x9saJ0035\"\n    },\n    \"contact\": null,\n    \"externalId\": null,\n    \"isRecurring\": \"No\",\n    \"split\": null,\n    \"refunded\": false,\n    \"captured\": false,\n    \"history\": [],\n    \"order\": null,\n    \"feeTransaction\": null,\n    \"batch\": {\n        \"id\": null,\n        \"number\": null,\n        \"batchedOn\": null\n    },\n    \"ip\": {\n        \"address\": \"173.239.211.182\",\n        \"isp\": \"Ipxo Limited\",\n        \"type\": \"hosting\",\n        \"location\": {\n            \"city\": \"New York\",\n            \"state\": \"NY\",\n            \"country\": \"US\",\n            \"zip\": \"10118\"\n        },\n        \"info\": {\n            \"isAnonymous\": \"Yes\",\n            \"isAnonymousVpn\": \"No\",\n            \"isPublicProxy\": \"No\",\n            \"isHostingProvider\": \"No\",\n            \"isTorExitNode\": \"No\"\n        }\n    },\n    \"status\": {\n        \"status\": \"Approved\",\n        \"reason\": null\n    },\n    \"updatedOn\": null,\n    \"createdOn\": \"2023-05-09 16:17:30\"\n}"}],"_postman_id":"2bd247ce-c78e-4b82-8345-e21319b4764e"},{"name":"Sale with a Fee Terminal","id":"39cc2f2e-d429-4b4c-80ed-dfb2a8cdc7d1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"terminal\": {\n        \"id\": 24\n    },\n    \"amount\": \"20.99\",\n    \"source\": \"Internet\",\n    \"level\": 1,\n    \"card\": {\n        \"name\": \"John Wick\",\n        \"number\": 5309572686772257,\n        \"exp\": \"12/30\",\n        \"cvv\": 998,\n        \"address\": {\n            \"country\": \"United State of America\",\n            \"state\": \"CA\",\n            \"city\": \"Calabasas\",\n            \"street\": \"8320\",\n            \"zip\": \"85284\"\n        }\n    },\n    \"order\": {\n        \"tax\": {\n            \"amount\": 0.23,\n            \"details\": [\n                {\n                    \"category\": \"Service\",\n                    \"type\": \"ServiceFee\",\n                    \"amount\": 0.23\n                }\n            ]\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://gateway.dashboard.paysecureonline.com/payment/sale","description":"<p>In some cases, there can be 2 terminals involved in one transaction. We call this functionality a Fee Terminal.</p>\n<p>You can utilize this endpoint if your merchant account is setup to have a separate fee terminal. The transaction will be divided into two separate authorizations and captures.</p>\n","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"aa628120-843e-4c89-8b8d-9e7b05558018","id":"aa628120-843e-4c89-8b8d-9e7b05558018","name":"Payments","type":"folder"}},"urlObject":{"path":["payment","sale"],"host":["https://gateway.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"9ed4e5b5-53ee-4226-bd04-66bd2ad66f1b","name":"Sale with a Fee Terminal","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"terminal\": {\n    \"id\": 24\n  },\n  \"amount\": \"20.99\",\n  \"source\": \"Internet\",\n  \"level\": 1,\n  \"card\": {\n    \"name\": \"John Wick\",\n    \"number\": 5309572686772257,\n    \"exp\": \"12/30\",\n    \"cvv\": 998,\n    \"address\": {\n      \"country\": \"United State of America\",\n      \"state\": \"CA\",\n      \"city\": \"Calabasas\",\n      \"street\": \"8320\",\n      \"zip\": \"85284\"\n    }\n  },\n  \"order\": {\n      \"tax\": {\n          \"amount\": 0.23,\n          \"details\": [\n              {\n                  \"category\": \"Service\",\n                  \"type\": \"ServiceFee\",\n                  \"amount\": 0.23\n              }\n          ]\n      }\n  }\n}","options":{"raw":{"language":"json"}}},"url":"https://gateway.dashboard.paysecureonline.com/payment/sale"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 891,\n    \"amount\": \"20.76\",\n    \"origin\": null,\n    \"type\": \"Auth\",\n    \"level\": 1,\n    \"authCode\": \"VTLMC1\",\n    \"parent\": {\n        \"id\": null\n    },\n    \"terminal\": {\n        \"id\": 24\n    },\n    \"threeds\": {\n        \"id\": null\n    },\n    \"card\": {\n        \"bin\": 530957,\n        \"name\": \"John Wick\",\n        \"number\": 2257,\n        \"exp\": \"2030-12-31\",\n        \"verification\": {\n            \"cvv\": \"M\",\n            \"address\": \"Y\"\n        },\n        \"networkTransactionId\": \"1212MCC111330**\"\n    },\n    \"contact\": {\n        \"name\": null,\n        \"phone\": null,\n        \"email\": null\n    },\n    \"externalId\": null,\n    \"isRecurring\": \"No\",\n    \"split\": null,\n    \"refunded\": false,\n    \"captured\": true,\n    \"history\": [\n        {\n            \"id\": 893,\n            \"type\": \"Capture\",\n            \"amount\": \"20.76\",\n            \"createdOn\": \"2023-05-09 16:24:04\"\n        }\n    ],\n    \"order\": null,\n    \"feeTransaction\": {\n        \"id\": 892,\n        \"type\": \"Sale\",\n        \"amount\": \"0.23\",\n        \"createdOn\": \"2023-05-09 16:24:03\"\n    },\n    \"batch\": {\n        \"id\": null,\n        \"number\": null,\n        \"batchedOn\": null\n    },\n    \"ip\": {\n        \"address\": \"173.239.211.191\",\n        \"isp\": \"Ipxo Limited\",\n        \"type\": \"hosting\",\n        \"location\": {\n            \"city\": \"New York\",\n            \"state\": \"NY\",\n            \"country\": \"US\",\n            \"zip\": \"10118\"\n        },\n        \"info\": {\n            \"isAnonymous\": \"Yes\",\n            \"isAnonymousVpn\": \"No\",\n            \"isPublicProxy\": \"No\",\n            \"isHostingProvider\": \"No\",\n            \"isTorExitNode\": \"No\"\n        }\n    },\n    \"status\": {\n        \"status\": \"Approved\",\n        \"reason\": null\n    },\n    \"updatedOn\": \"2023-05-09 16:24:06\",\n    \"createdOn\": \"2023-05-09 16:24:01\"\n}"}],"_postman_id":"39cc2f2e-d429-4b4c-80ed-dfb2a8cdc7d1"}],"id":"aa628120-843e-4c89-8b8d-9e7b05558018","description":"<blockquote>\n<p>In the payment gateway, your requests need to always include the system <code>terminal.id</code>. Within itself the system <code>terminal.id</code> contains DBA, MID, and terminal TID information, this way we always ensure that you are using the correct MID and TID if you have more than one.</p>\n</blockquote>\n","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":false},"event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""]}},{"listen":"test","script":{"type":"text/javascript","exec":[""]}}],"_postman_id":"aa628120-843e-4c89-8b8d-9e7b05558018"}],"id":"0f003dca-1fa3-4676-bcf1-9e9860de968e","_postman_id":"0f003dca-1fa3-4676-bcf1-9e9860de968e","description":"","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"dd55f844-f6cb-414c-9d63-668ab33c34e9","id":"dd55f844-f6cb-414c-9d63-668ab33c34e9","name":"Payment Gateway","type":"folder"}}},{"name":"Hosted Form","item":[{"name":"Generate","id":"bb16ed99-0941-4da5-a597-ea87d048e64c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"dba\": {\n        \"id\": 9\n    },\n    \"terminal\": {\n        \"id\": 24\n    },\n    \"threeds\": \"Disabled\",\n    \"amount\": 2,\n    \"feeType\": \"amount\",\n    \"fee\": 2,\n    \"externalId\": \"example\",\n    \"origin\": \"WEB\",\n    \"returnUrl\": \"https://example.com\",\n    \"returnUrlNavigation\": \"top\",\n    \"useLogo\": \"Yes\",\n    \"visibleNote\": \"Yes\"\n}","options":{"raw":{"language":"json"}}},"url":"https://dashboard.dashboard.paysecureonline.com/api/gateway/hosted-form","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"1885cd16-5535-46bc-95be-f1a98b62eb63","id":"1885cd16-5535-46bc-95be-f1a98b62eb63","name":"Hosted Form","type":"folder"}},"urlObject":{"path":["api","gateway","hosted-form"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"97747194-6127-4afb-901f-d07b36c8cc1d","name":"Generate","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"dba\": {\n        \"id\": 9\n    },\n    \"terminal\": {\n        \"id\": 24\n    },\n    \"threeds\": \"Disabled\",\n    \"amount\": 2,\n    \"feeType\": \"amount\",\n    \"fee\": 2,\n    \"externalId\": \"example\",\n    \"origin\": \"WEB\",\n    \"returnUrl\": \"https://example.com\",\n    \"returnUrlNavigation\": \"top\",\n    \"useLogo\": \"Yes\",\n    \"visibleNote\": \"Yes\"\n}","options":{"raw":{"language":"json"}}},"url":"https://dashboard.dashboard.paysecureonline.com/api/gateway/hosted-form"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": \"<div id=\\\"payment-form\\\"></div><script>(function() {var l = function() { new PaymentGateway({ target: 'payment-form', url: e.src, options: {dbaId: 9, terminalId: 24, threeds: 'Disabled', hash: 'a85785f919774e4517847b5e98e43f62', externalId: 'example', amount: '2', fee: '2', feeType: 'amount', returnURL: 'https://example.com', returnUrlNavigation: 'top', logo: 'on', visibleNote: 'Yes', requestContactInfo: 'No', requestBillingInfo: 'No', sendReceipt: 'No', origin: 'WEB'} }); };if(typeof window.PaymentGateway === 'undefined') {window.webroot = \\\"https://dashboard.dashboard.paysecureonline.com\\\";var e = document.createElement('script'); e.async = true;e.src = window.webroot + \\\"/js/gateway/payment.js?v=\\\" + Date.now();document.getElementsByTagName('head')[0].appendChild(e);e.onload = e.onreadystatechange = function() { l(); }} else { l(); }}());</script>\",\n    \"url\": \"https://dashboard.dashboard.paysecureonline.com/gateway/public/form?dbaId=9&terminalId=24&hash=a85785f919774e4517847b5e98e43f62&origin=WEB&threeds=Disabled&amount=2&fee=2&feeType=amount&requestContactInfo=No&requestBillingInfo=No&sendReceipt=No&returnURL=https%3A%2F%2Fexample.com&externalId=example&logo=on&visibleNote=Yes\"\n}"}],"_postman_id":"bb16ed99-0941-4da5-a597-ea87d048e64c"}],"id":"1885cd16-5535-46bc-95be-f1a98b62eb63","description":"<p>With our Gateway embedded hosted form functionality, you can achieve quick, efficient, and secure online transactions, without the worry of PCI compliance.</p>\n<p>The overall process to generate and prepare a hosted gateway payment form is as follows.</p>\n<ol>\n<li>Create a POST request with the required parameters for your needs</li>\n<li>We will return the code of the hosted form and the URL in the response</li>\n</ol>\n<p>Hosted Form Object</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Fields</th>\n<th>Description</th>\n<th>Type</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>dba</td>\n<td>Dba Object</td>\n<td>Object</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>dba.id</td>\n<td>DBA ID</td>\n<td>Integer</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>terminal</td>\n<td>Terminal Object</td>\n<td>Object</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>terminal.id</td>\n<td>Terminal ID</td>\n<td>Integer</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>threeds</td>\n<td>Activate 3D Secure <code>Required</code>, <code>Disabled</code> or <code>RequiredIfAvailable</code></td>\n<td>ENUM</td>\n<td>No</td>\n</tr>\n<tr>\n<td>amount</td>\n<td>Payment Amount</td>\n<td>Number</td>\n<td>No</td>\n</tr>\n<tr>\n<td>feeType</td>\n<td>The type of sales tax applied <code>amount</code> or <code>percent</code></td>\n<td>ENUM</td>\n<td>No</td>\n</tr>\n<tr>\n<td>fee</td>\n<td>The sales tax value applied to the order</td>\n<td>Number</td>\n<td>No</td>\n</tr>\n<tr>\n<td>externalId</td>\n<td>Unique record identifiers from a system outside of Payment Gateway</td>\n<td>String</td>\n<td>No</td>\n</tr>\n<tr>\n<td>origin</td>\n<td>Origin of the transaction (i.e. Website, CRM, etc)</td>\n<td>String</td>\n<td>No</td>\n</tr>\n<tr>\n<td>returnUrl</td>\n<td>The return URL after payment completion (i.e success/error page)</td>\n<td>String</td>\n<td>No</td>\n</tr>\n<tr>\n<td>returnUrlNavigation</td>\n<td>How to redirect the URL (Inside/Outside of frame) <code>top</code> or <code>self</code></td>\n<td>ENUM</td>\n<td>No</td>\n</tr>\n<tr>\n<td>useLogo</td>\n<td>Use the logo of your merchant profile <code>Yes</code> or <code>No</code></td>\n<td>ENUM</td>\n<td>No</td>\n</tr>\n<tr>\n<td>visibleNote</td>\n<td>Adds an additional text field to the hosted form <code>Yes</code> or <code>No</code></td>\n<td>ENUM</td>\n<td>No</td>\n</tr>\n<tr>\n<td>requestBillingInfo</td>\n<td>Adds a billing info step to the hosted form <code>Yes</code> or <code>No</code></td>\n<td>ENUM</td>\n<td>No</td>\n</tr>\n<tr>\n<td>requestContactInfo</td>\n<td>Adds a contact info step to the hosted form <code>Yes</code> or <code>No</code></td>\n<td>ENUM</td>\n<td>No</td>\n</tr>\n<tr>\n<td>sendReceipt</td>\n<td>Send a customized receipt after successful payment <code>Yes</code> or <code>No</code></td>\n<td>ENUM</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><blockquote>\n<p>The Amount and External ID are dynamic parameters that can still be provided after the form is generated.<br />If you want to dynamically provide Amount and External ID you can do so at the end of the URL using &amp;amount=&amp;externalId= or you can provide them in the corresponding javascript parameters. Keep in mind that if the amount is not provided the client will be prompted to enter it. </p>\n</blockquote>\n<p>The return URL also gives you the option to change the mapping of specific parameters based on your needs.<br />The parameters that we have are as follows: Success, Failed and Cancelled.</p>\n<blockquote>\n<p><strong>IMPORTANT</strong> If you have set <code>sendReciept</code> to \"Yes\" <code>requestContactInfo</code> needs to be also \"Yes\" as well or no receipt will be generated.</p>\n</blockquote>\n","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":false},"event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""]}},{"listen":"test","script":{"type":"text/javascript","exec":[""]}}],"_postman_id":"1885cd16-5535-46bc-95be-f1a98b62eb63"},{"name":"3DSecure","item":[{"name":"Version","item":[],"id":"fa7a5562-6936-44cf-928f-b056be6e1c95","description":"<p>StartFragment</p>\n<p>There are 2 versions of 3DS that we support. Based on what version of 3DS is offered by the issuing bank the authentication of the transaction goes through a different flow.</p>\n<ul>\n<li><strong>v1.0</strong> - the original version that relies on redirects to iFrame and popup to complete consumer authentication. The authentication process verifies the consumer via a challenge in a window.</li>\n<li><strong>v2.1</strong> - this is the newest version of the protocol. It's faster, less consumer obtrusive, and offers multiple ways to authenticate including passive, biometric, and two-factor authentication methods.</li>\n</ul>\n<h6 id=\"verification-process\">Verification process</h6>\n<p>The overall process can be summarized as follows. You initiate a <a href=\"https://developers.maverickpayments.com/#006ba4d5-94a5-4d84-918b-0b386e7683b3\">Create</a> that will return a unique <code>id</code> and an iframe that needs to be presented in the browser. The iframe can be either hidden or visible based on the 3DS version. After that, you initiate <strong>Check</strong> with the provided <code>id</code>. The result will either return a <code>status</code> which will indicate the outcome of the 3DS authentication. If the status is successful you will proceed in creating a Sale or an Auth using the provided <code>id</code> in <code>threeds.id</code>.</p>\n<blockquote>\n<p>&lt;p &gt;The version will be included in the response to the Create command. &lt;/p&gt; </p>\n</blockquote>\n<p><img src=\"https://content.pstmn.io/dd6ba7f2-6f16-4e71-9d78-d252eb4da7f1/TTBSVExuQnVadz09LnBuZw==\" alt />StartFragment</p>\n<h4 id=\"v10-flow\">v1.0 Flow</h4>\n<ul>\n<li><strong>Create</strong> a 3DS authentication request using card data</li>\n<li>We send the 3DS authentication request via form submission in an iframe in the browser</li>\n<li>If a challenge is required, it appears in the browser in the same iframe</li>\n<li>Utilizing the <strong>Check</strong> command will return <code>status</code> for that 3DS authentication</li>\n<li>Proceed by creating a <strong>Sale</strong> or an <strong>Auth</strong> for this 3DS authentication</li>\n</ul>\n<h4 id=\"v22-flow\">v2.2 Flow</h4>\n<ul>\n<li>Create a 3DS authentication request using card data</li>\n<li>We send the 3DS authentication request via form submission in a hidden iframe in the browser</li>\n<li>Utilize the <strong>Check</strong> command to verify if authentication is successful or additional challenge is required</li>\n<li>If an additional challenge is required we present it in a new iframe that needs to be shown in the browser</li>\n<li>Utilizing the <strong>Check</strong> command will return <code>status</code> for that 3DS authentication</li>\n<li>Proceed by creating a <strong>Sale</strong> or an <strong>Auth</strong> for this 3DS authentication</li>\n</ul>\n<blockquote>\n</blockquote>\n<p>Always initiate Check for a specific <code>id</code> to verify the <code>status</code> before proceeding to a Sale or an Auth. Once a status changes from the initial <strong>Pending</strong> it will never change again. The acceptable statuses for proceeding to an <strong>Auth</strong> or <strong>Sale</strong> are <strong>Success</strong>, <strong>Attempted</strong>, and <strong>Not Enrolled</strong>.</p>\n<p>EndFragment</p>\n<p>EndFragmen</p>\n","_postman_id":"fa7a5562-6936-44cf-928f-b056be6e1c95","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"dd55f844-f6cb-414c-9d63-668ab33c34e9","id":"dd55f844-f6cb-414c-9d63-668ab33c34e9","name":"Payment Gateway","type":"folder"}}},{"name":"Create","item":[{"name":"Create","id":"3e396dc2-19ea-49af-9a03-c1d0f439580b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"terminal\": {\n        \"id\": 24\n    },\n    \"amount\": \"45.00\",\n    \"card\": {\n        \"number\": 5555555555554444,\n        \"exp\": \"12/25\"\n    },\n    \"browserData\": {\n        \"acceptHeader\": \"application/json\",\n        \"userAgent\": \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36\",\n        \"language\": \"en-US\",\n        \"timezone\": \"-420\",\n        \"colorDepth\": 30,\n        \"screen\": {\n            \"height\": \"900\",\n            \"width\": \"1440\"\n        },\n        \"javaScriptEnabled\": true,\n        \"javaEnabled\": false\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://gateway.dashboard.paysecureonline.com/3ds/create","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"dd55f844-f6cb-414c-9d63-668ab33c34e9","id":"dd55f844-f6cb-414c-9d63-668ab33c34e9","name":"Payment Gateway","type":"folder"}},"urlObject":{"path":["3ds","create"],"host":["https://gateway.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"1217e145-372c-4873-983e-b86dd9bd0d11","name":"Create","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"terminal\": {\n        \"id\": 24\n    },\n    \"amount\": \"45.00\",\n    \"card\": {\n        \"number\": 5555555555554444,\n        \"exp\": \"12/25\"\n    },\n    \"browserData\": {\n        \"acceptHeader\": \"application/json\",\n        \"userAgent\": \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36\",\n        \"language\": \"en-US\",\n        \"timezone\": \"-420\",\n        \"colorDepth\": 30,\n        \"screen\": {\n            \"height\": \"900\",\n            \"width\": \"1440\"\n        },\n        \"javaScriptEnabled\": true,\n        \"javaEnabled\": false\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://gateway.dashboard.paysecureonline.com/3ds/create"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"3e396dc2-19ea-49af-9a03-c1d0f439580b"}],"id":"4e18a6ea-a027-490e-afae-f19f03f19f75","description":"<p>This will initiate the 3DS process and <code>id</code>, <code>version</code> and <code>iframe</code> will be presented in the response.</p>\n<blockquote>\n<p>Keep in mind that in very few cases a <strong>406 - Not Acceptable</strong> error can be returned. This happens when certain cards cannot be verified at the moment. If you are not required to use 3DS authentication as a merchant you can still proceed in processing the payment without Utilizing 3DS authentication and with no liability shift. </p>\n</blockquote>\n<p>Object</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Fields</th>\n<th>Description</th>\n<th>Type</th>\n<th>Filterable</th>\n<th>Required</th>\n<th>Readonly</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>Unique ID of the capture record</td>\n<td>Integer</td>\n<td>Yes</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>terminal</td>\n<td>Terminal Object</td>\n<td>Object</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>terminal.id</td>\n<td>Dashboard Terminal ID</td>\n<td>Integer</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>amount</td>\n<td>Amount of the sale/auth</td>\n<td>Number</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>card</td>\n<td>Card Object</td>\n<td>Object</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>card.number</td>\n<td>Card number</td>\n<td>Integer</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>card.exp</td>\n<td>Card expiration date</td>\n<td>Date</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>browserData</td>\n<td>Data generated by the provided JS</td>\n<td>Object</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>browserData.acceptHeader</td>\n<td>Set to \"application/json\"</td>\n<td>String</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>browserData.userAgent</td>\n<td>Browser and OS details of the cardholder</td>\n<td>String</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>browserData.language</td>\n<td>Value representing the browser language as defined in IETF BCP47</td>\n<td>String</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>browserData.timezone</td>\n<td>Time difference between UTC time and the Cardholder browser local time, in minutes.</td>\n<td>String</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>browserData.colorDepth</td>\n<td>Value representing the bit depth of the colour palette for displaying images, in bits per pixel.</td>\n<td>String</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>browserData.screen</td>\n<td>Screen Data</td>\n<td>Object</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>browserData.screen.width</td>\n<td>Total width of the Cardholder's screen in pixels.</td>\n<td>String</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>browserData.screen.height</td>\n<td>Total height of the cardholder's screen in pixels.</td>\n<td>String</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>browserData.javaScriptEnabled</td>\n<td>Boolean that represents the ability of the cardholder browser to execute JavaScript.</td>\n<td>Boolean</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>browserData.javaEnabled</td>\n<td>Boolean that represents the ability of the cardholder browser to execute Java.</td>\n<td>Boolean</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"4e18a6ea-a027-490e-afae-f19f03f19f75","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"dd55f844-f6cb-414c-9d63-668ab33c34e9","id":"dd55f844-f6cb-414c-9d63-668ab33c34e9","name":"Payment Gateway","type":"folder"}}},{"name":"Check","item":[{"name":"Check","id":"0c619dca-7034-4996-bd2c-7b2c00d3d90d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\n    \"terminal\": {\n        \"id\": 24\n    },\n    \"amount\": \"45.00\",\n    \"card\": {\n        \"number\": 5555555555554444,\n        \"exp\": \"12/25\"\n    },\n    \"browserData\": {\n        \"acceptHeader\": \"application/json\",\n        \"userAgent\": \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36\",\n        \"language\": \"en-US\",\n        \"timezone\": \"-420\",\n        \"colorDepth\": 30,\n        \"screen\": {\n            \"height\": \"900\",\n            \"width\": \"1440\"\n        },\n        \"javaScriptEnabled\": true,\n        \"javaEnabled\": false\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://gateway.dashboard.paysecureonline.com/3ds/22/check","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"dd55f844-f6cb-414c-9d63-668ab33c34e9","id":"dd55f844-f6cb-414c-9d63-668ab33c34e9","name":"Payment Gateway","type":"folder"}},"urlObject":{"path":["3ds","22","check"],"host":["https://gateway.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[],"_postman_id":"0c619dca-7034-4996-bd2c-7b2c00d3d90d"}],"id":"d275f468-2f5a-42de-9a59-d2857721c414","description":"<p>For 3DS v1.0 this will return the <code>status</code> for the specific <code>id</code>.</p>\n<p>For 3DS v2.2 if the additional challenge is needed this will return a new <code>iframe</code> along with the <code>status</code> for the specific <code>id</code>.</p>\n<blockquote>\n<p>Always initiate <strong>Check</strong> for a specific <code>id</code> to verify the <code>status</code> before proceeding to an <strong>Auth</strong> or <strong>Sale</strong>. Once a status changes from the initial <strong>Pending</strong> it will never change again. The acceptable statuses for proceeding to an <strong>Auth</strong> or <strong>Sale</strong> are <strong>Success</strong>, <strong>Attempted</strong>, and <strong>Not Enrolled</strong>. </p>\n</blockquote>\n<p>Below are the possible <code>status</code> values:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Code</th>\n<th>Description</th>\n<th><strong>Liability Shift</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Y</td>\n<td>Authentication Successful by issuer</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>A</td>\n<td>Network stepped in for the authentication because the issuer was not participating</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>I</td>\n<td>Data Share - Informational only; 3DS requestor challenge preference acknowledged</td>\n<td>No</td>\n</tr>\n<tr>\n<td>N</td>\n<td>Not Authenticated /Account Not Verified; Transaction denied</td>\n<td>No</td>\n</tr>\n<tr>\n<td>U</td>\n<td>Authentication/ Account Verification Could Not Be Performed; Technical or other problems.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>C</td>\n<td>Challenge Required; Additional authentication is still required from the user</td>\n<td>Depends on if the client completes the challenge and Issuer successfully authenticates the transaction</td>\n</tr>\n<tr>\n<td>R</td>\n<td>Authentication/ Account Verification Rejected; Issuer is rejecting authentication/verification.</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"d275f468-2f5a-42de-9a59-d2857721c414","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"dd55f844-f6cb-414c-9d63-668ab33c34e9","id":"dd55f844-f6cb-414c-9d63-668ab33c34e9","name":"Payment Gateway","type":"folder"}}},{"name":"Test Cards","item":[],"id":"49648176-d017-4992-adbd-1674322869fe","description":"<p>We offer you test cards for the sandbox environment so you can confirm your integration works before using real card data.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Credit Cards / Pans</th>\n<th>Networks</th>\n<th>Type of Transaction</th>\n<th>Status/Success</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>4005519200000004  <br />4124939999999990  <br />4444333322221111</td>\n<td>Visa</td>\n<td>Frictionless</td>\n<td>Y  <br />  <br /></td>\n</tr>\n<tr>\n<td>4009348888881881  <br />4485660000000007</td>\n<td>Visa</td>\n<td>Frictionless</td>\n<td>N</td>\n</tr>\n<tr>\n<td>4012000033330026  <br />4485666666666668</td>\n<td>Visa</td>\n<td>Challenge/Prompt</td>\n<td>? - Depends on the challenge completion</td>\n</tr>\n<tr>\n<td>4012000077777777  <br />4124930001898619</td>\n<td>Visa</td>\n<td>-</td>\n<td>Error: Card Not Enrolled</td>\n</tr>\n<tr>\n<td>4166676667666746</td>\n<td>Visa</td>\n<td>Frictionless</td>\n<td>R - Issuer rejected authentication and requested authorization not to be attempted</td>\n</tr>\n<tr>\n<td>4917300800000000</td>\n<td>Visa Electron</td>\n<td>Frictionless</td>\n<td>Y</td>\n</tr>\n<tr>\n<td>5555341244441115  <br />5406004444444443  <br />5407721000353481</td>\n<td>MasterCard</td>\n<td>Frictionless</td>\n<td>Y  <br /></td>\n</tr>\n<tr>\n<td>5577000055770004  <br />5415244444444444</td>\n<td>MasterCard</td>\n<td>Frictionless</td>\n<td>N</td>\n</tr>\n<tr>\n<td>5100060000000002  <br />5472065555555557</td>\n<td>MasterCard</td>\n<td>Challenge/Prompt</td>\n<td>? - Depends on the challenge completion</td>\n</tr>\n<tr>\n<td>6771798021000008</td>\n<td>Maestro</td>\n<td>Frictionless</td>\n<td>Y</td>\n</tr>\n<tr>\n<td>6011601160116611  <br />6011450103333333</td>\n<td>Discover</td>\n<td>Frictionless</td>\n<td>Y</td>\n</tr>\n<tr>\n<td>6445644564456445  <br />6011993333333334</td>\n<td>Discover</td>\n<td>Frictionless</td>\n<td>N</td>\n</tr>\n<tr>\n<td>6011000991300009  <br />6011402344444445</td>\n<td>Discover</td>\n<td>Challenge/Prompt</td>\n<td>? - Depends on the challenge completion</td>\n</tr>\n<tr>\n<td>36006666333344</td>\n<td>Dinner's Club</td>\n<td>Frictionless</td>\n<td>Y</td>\n</tr>\n<tr>\n<td>370000000000002  <br />370000999999990</td>\n<td>AmEx</td>\n<td>Frictionless</td>\n<td>Y</td>\n</tr>\n<tr>\n<td>370000000100018  <br />370000222222228</td>\n<td>AmEx</td>\n<td>Frictionless</td>\n<td>N</td>\n</tr>\n<tr>\n<td>378282246310005  <br />340000111111117</td>\n<td>AmEx</td>\n<td>Challenge/Prompt</td>\n<td>? - Depends on the challenge completion</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"49648176-d017-4992-adbd-1674322869fe","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"dd55f844-f6cb-414c-9d63-668ab33c34e9","id":"dd55f844-f6cb-414c-9d63-668ab33c34e9","name":"Payment Gateway","type":"folder"}}}],"id":"fb1e291e-da31-4818-89a7-0fcaf624670d","description":"<p>3DSecure (3DS) is a fraud prevention security protocol that allows consumers to shop online more securely. It works by verifying that the consumer entering the credit card information on an e-commerce site is the owner or person authorized to use that credit card. How this works depends on which version of the 3DS protocol is being used. Using 3DS can provide you with chargeback protection and lower interchange rates.</p>\n<blockquote>\n<p>3DS will be enabled at the merchant level. If you want to utilize this protocol contact us. Some merchants may be required to use 3DS by default for all transactions. </p>\n</blockquote>\n<h3 id=\"integration\">Integration</h3>\n<p>The following JavaScript needs to be embedded on your checkout page to collect browser data information. You will need to pass the collected data from the JavaScript in the <code>browserData</code> field in the <strong>Create</strong> method when creating 3DS authentication. This information is needed to increase the level of security and accuracy of the 3DS authentication.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">&lt;script src=\"/js/main.js\"&gt;&lt;/script&gt;\n&lt;script&gt;\n    ((function() {document.querySelector(\"#browserData\").value = getBrowserData();}))();\n&lt;/script&gt;\n\n</code></pre>\n<blockquote>\n<p><em><strong>#browserData</strong></em> is just an example field you need to change it according to your HTML form.</p>\n</blockquote>\n","_postman_id":"fb1e291e-da31-4818-89a7-0fcaf624670d","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"dd55f844-f6cb-414c-9d63-668ab33c34e9","id":"dd55f844-f6cb-414c-9d63-668ab33c34e9","name":"Payment Gateway","type":"folder"}}},{"name":"Account Updater","item":[{"name":"Card Compatibility","item":[],"id":"3a6fe1fa-8674-46c8-b9f5-9b1c192a615e","description":"<p>Whether a card can be updated using Account Updater is solely dependent on the customer's issuing bank and that bank's participation in this service. Sometimes even if the customer's card is compatible, it might not be eligible for automatic updates if the issuing bank does not participate.</p>\n<blockquote>\n<p>Prepaid, gift cards and cards processed with ApplePay or GooglePay are not supported.</p>\n</blockquote>\n","_postman_id":"3a6fe1fa-8674-46c8-b9f5-9b1c192a615e","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"dd55f844-f6cb-414c-9d63-668ab33c34e9","id":"dd55f844-f6cb-414c-9d63-668ab33c34e9","name":"Payment Gateway","type":"folder"}}},{"name":"How It Works","item":[{"name":"Sale with Account Updater","id":"4375453e-e807-44d8-ac9e-3c1dc9073eed","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"terminal\": {\n        \"id\": 24\n    },\n    \"amount\": \"1.10\",\n    \"source\": \"Internet\",\n    \"level\": 1,\n    \"card\": {\n        \"name\": \"John Wick\",\n        \"number\": 4000000000000051,\n        \"exp\": \"05/30\",\n        \"cvv\": \"999\",\n        \"save\": \"Yes\",\n        \"address\": {\n            \"country\": \"United State of America\",\n            \"state\": \"CA\",\n            \"city\": \"Calabasas\",\n            \"street\": \"8320\",\n            \"zip\": \"85284\"\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://gateway.dashboard.paysecureonline.com/payment/sale","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"dd55f844-f6cb-414c-9d63-668ab33c34e9","id":"dd55f844-f6cb-414c-9d63-668ab33c34e9","name":"Payment Gateway","type":"folder"}},"urlObject":{"path":["payment","sale"],"host":["https://gateway.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"d292a424-5df9-406a-9b8d-8ee850c25d56","name":"Sale with Account Updater","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"terminal\": {\n        \"id\": 24\n    },\n    \"amount\": \"1.10\",\n    \"source\": \"Internet\",\n    \"level\": 1,\n    \"card\": {\n        \"name\": \"John Wick\",\n        \"number\": 4000000000000051,\n        \"exp\": \"05/30\",\n        \"cvv\": \"999\",\n        \"save\": \"Yes\",\n        \"address\": {\n            \"country\": \"United State of America\",\n            \"state\": \"CA\",\n            \"city\": \"Calabasas\",\n            \"street\": \"8320\",\n            \"zip\": \"85284\"\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://gateway.dashboard.paysecureonline.com/payment/sale"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 894,\n    \"amount\": \"1.10\",\n    \"origin\": null,\n    \"type\": \"Auth\",\n    \"level\": 1,\n    \"authCode\": \"TAS183\",\n    \"parent\": {\n        \"id\": null\n    },\n    \"terminal\": {\n        \"id\": 24\n    },\n    \"threeds\": {\n        \"id\": null\n    },\n    \"card\": {\n        \"bin\": 400000,\n        \"name\": \"John Wick\",\n        \"number\": 51,\n        \"exp\": \"2030-05-31\",\n        \"verification\": {\n            \"cvv\": \"M\",\n            \"address\": \"Y\"\n        },\n        \"networkTransactionId\": \"000000000014910\",\n        \"token\": \"IidC1AkxAyyz0051\"\n    },\n    \"contact\": {\n        \"name\": null,\n        \"phone\": null,\n        \"email\": null\n    },\n    \"externalId\": null,\n    \"isRecurring\": \"No\",\n    \"split\": null,\n    \"refunded\": false,\n    \"captured\": true,\n    \"history\": [\n        {\n            \"id\": 895,\n            \"type\": \"Capture\",\n            \"amount\": \"1.10\",\n            \"createdOn\": \"2023-05-10 09:27:06\"\n        }\n    ],\n    \"order\": null,\n    \"feeTransaction\": null,\n    \"batch\": {\n        \"id\": null,\n        \"number\": null,\n        \"batchedOn\": null\n    },\n    \"ip\": {\n        \"address\": \"104.234.53.183\",\n        \"isp\": \"Ipxo Limited\",\n        \"type\": \"hosting\",\n        \"location\": {\n            \"city\": \"New York\",\n            \"state\": \"NY\",\n            \"country\": \"US\",\n            \"zip\": \"10118\"\n        },\n        \"info\": {\n            \"isAnonymous\": \"Yes\",\n            \"isAnonymousVpn\": \"Yes\",\n            \"isPublicProxy\": \"No\",\n            \"isHostingProvider\": \"Yes\",\n            \"isTorExitNode\": \"No\"\n        }\n    },\n    \"status\": {\n        \"status\": \"Approved\",\n        \"reason\": null\n    },\n    \"updatedOn\": \"2023-05-10 09:27:07\",\n    \"createdOn\": \"2023-05-10 09:27:04\"\n}"}],"_postman_id":"4375453e-e807-44d8-ac9e-3c1dc9073eed"}],"id":"8000e99c-7c40-4982-bf18-39ec3d76610b","description":"<p>Account Updater works on a transaction level whether you initiate a <strong>Sale</strong>, <strong>Auth</strong>, or <strong>Return</strong>. The card needs to be tokenized, the <code>card.save</code> need to be <code>Yes</code> first, and then all future transactions are going to be checked for card updates, if any. In the event that the card has been updated, we will automatically charge the new card and will return the new details in the <code>card</code> object along with some additional status details.</p>\n","_postman_id":"8000e99c-7c40-4982-bf18-39ec3d76610b","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"dd55f844-f6cb-414c-9d63-668ab33c34e9","id":"dd55f844-f6cb-414c-9d63-668ab33c34e9","name":"Payment Gateway","type":"folder"}}}],"id":"4319c816-4858-481a-9c27-27918d708c2f","description":"<p>Account Updater is a feature that automatically requests updates for tokenized cards on file in the event that a customer's card expires or is replaced. This will help you avoid or reduce billing issues.</p>\n<blockquote>\n<p>Account updater is not enabled on your account by default. Contact us so that we can set it up and ensure that this feature is configured in a way that best suits your business.</p>\n</blockquote>\n","_postman_id":"4319c816-4858-481a-9c27-27918d708c2f","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"dd55f844-f6cb-414c-9d63-668ab33c34e9","id":"dd55f844-f6cb-414c-9d63-668ab33c34e9","name":"Payment Gateway","type":"folder"}}},{"name":"Gateway Test Cards","item":[],"id":"3f578b8d-a396-4677-9474-5dac13b90d2b","description":"<p>We offer you test cards for the sandbox environment so you can confirm your integration works before using real card data.</p>\n<blockquote>\n<p><strong>IMPORTANT</strong> For AVS you can use the Address: 8320 and ZIP: 85284 </p>\n</blockquote>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Card Number</th>\n<th>Network</th>\n<th>Expiration Date</th>\n<th>CVV</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>4539225011794489</td>\n<td>VISA</td>\n<td>12/30</td>\n<td>999</td>\n</tr>\n<tr>\n<td>4957587837877027</td>\n<td>VISA</td>\n<td>12/30</td>\n<td>999</td>\n</tr>\n<tr>\n<td>4632633008802809</td>\n<td>VISA</td>\n<td>12/30</td>\n<td>999</td>\n</tr>\n<tr>\n<td>4539225011794430</td>\n<td>VISA</td>\n<td>12/30</td>\n<td>999</td>\n</tr>\n<tr>\n<td>5296345017707556</td>\n<td>MASTERCARD</td>\n<td>12/30</td>\n<td>998</td>\n</tr>\n<tr>\n<td>5309572686772257</td>\n<td>MASTERCARD</td>\n<td>12/30</td>\n<td>998</td>\n</tr>\n<tr>\n<td>6011421812165456</td>\n<td>DISCOVER</td>\n<td>12/30</td>\n<td>996</td>\n</tr>\n<tr>\n<td>6011891662320957</td>\n<td>DISCOVER</td>\n<td>12/30</td>\n<td>996</td>\n</tr>\n<tr>\n<td>340200784265287</td>\n<td>AMEX</td>\n<td>12/30</td>\n<td>9997</td>\n</tr>\n<tr>\n<td>371632530176123</td>\n<td>AMEX</td>\n<td>12/30</td>\n<td>9997</td>\n</tr>\n<tr>\n<td>4111111111111111</td>\n<td>VISA</td>\n<td>12/30</td>\n<td>999</td>\n</tr>\n<tr>\n<td>4000111111111115</td>\n<td>VISA</td>\n<td>12/30</td>\n<td>999</td>\n</tr>\n<tr>\n<td>4916909992637469</td>\n<td>VISA</td>\n<td>12/30</td>\n<td>999</td>\n</tr>\n<tr>\n<td>4000008500910067</td>\n<td>VISA</td>\n<td>12/30</td>\n<td>999</td>\n</tr>\n<tr>\n<td>5555555555554444</td>\n<td>MASTERCARD</td>\n<td>12/30</td>\n<td>998</td>\n</tr>\n<tr>\n<td>5105105105105100</td>\n<td>MASTERCARD</td>\n<td>12/30</td>\n<td>998</td>\n</tr>\n<tr>\n<td>5339978447172907</td>\n<td>MASTERCARD</td>\n<td>12/30</td>\n<td>998</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"partial-approval\">Partial Approval</h3>\n<p>There are cases where you will encounter partial approvals, such as gift cards etc. To test this use the following:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Card Number</th>\n<th>Network</th>\n<th>Expiration Date</th>\n<th>CVV</th>\n<th>Amount</th>\n<th>Approved Amount</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>2223000048400011</td>\n<td>MASTERCARD</td>\n<td>12/25</td>\n<td>998</td>\n<td>11.10</td>\n<td>5.55</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"3f578b8d-a396-4677-9474-5dac13b90d2b","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"dd55f844-f6cb-414c-9d63-668ab33c34e9","id":"dd55f844-f6cb-414c-9d63-668ab33c34e9","name":"Payment Gateway","type":"folder"}}},{"name":"Response Codes","item":[{"name":"Verification Response Codes","item":[],"id":"bbb4c850-6f70-4528-b90e-f90492815c04","description":"<p>In addition to our status response codes, we have verification codes within the transaction response.</p>\n<p>Card Verification Object</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Fields</th>\n<th>Description</th>\n<th>Type</th>\n<th>Filterable</th>\n<th>Required</th>\n<th>Readonly</th>\n<th>Level 1</th>\n<th>Level 2</th>\n<th>Level 3</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>card.verification</td>\n<td>Verification object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>card.verification.cvv</td>\n<td>The card security code verification response.</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>card.verification.address</td>\n<td>The Address Verification System response.</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"cvv-verification-response\">CVV Verification Response</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Response Code</th>\n<th>Response Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>M</td>\n<td>CVV2 verification successful</td>\n</tr>\n<tr>\n<td>P</td>\n<td>CVV2 verification not performed</td>\n</tr>\n<tr>\n<td>U</td>\n<td>CVV2 verification not available</td>\n</tr>\n<tr>\n<td>N</td>\n<td>CVV2 verification fail/mismatch</td>\n</tr>\n<tr>\n<td>S</td>\n<td>CVV2 code not present on card</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"address-verification-response\">Address Verification Response</h2>\n<p>Address Verification Code is a one-character field that contains the address verification result code. This code defines the result of the address verification performed by the issuer on the address submitted in a transaction request.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Response Code</th>\n<th>Response Definition</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td>Address verification was not requested.  <br /></td>\n</tr>\n<tr>\n<td>A</td>\n<td>The street address submitted matches what is on file.</td>\n</tr>\n<tr>\n<td>B</td>\n<td>The street address submitted matches what is on file. The ZIP code does not match what was on file.</td>\n</tr>\n<tr>\n<td>C</td>\n<td>This service is not supported.</td>\n</tr>\n<tr>\n<td>D</td>\n<td>The street address submitted matches what is on file.</td>\n</tr>\n<tr>\n<td>F</td>\n<td>The street address and ZIP code submitted match what is on file. This applies to UK transactions.</td>\n</tr>\n<tr>\n<td>G</td>\n<td>The issuer does not participate in this service. This applies to non-US issuers.</td>\n</tr>\n<tr>\n<td>I</td>\n<td>The AVS information was not verified.</td>\n</tr>\n<tr>\n<td>M</td>\n<td>The street address submitted matches what is on file.</td>\n</tr>\n<tr>\n<td>N</td>\n<td>Neither the street address or ZIP code match what is on file.</td>\n</tr>\n<tr>\n<td>P</td>\n<td>The ZIP code submitted matches what is on file. The street address does not match what is on file.</td>\n</tr>\n<tr>\n<td>R</td>\n<td>The issuer system is currently unavailable.</td>\n</tr>\n<tr>\n<td>S</td>\n<td>This service is not supported.</td>\n</tr>\n<tr>\n<td>U</td>\n<td>AVS is unavailable.</td>\n</tr>\n<tr>\n<td>W</td>\n<td>The nine-character ZIP code submitted matches what is on file.</td>\n</tr>\n<tr>\n<td>X</td>\n<td>The nine-character ZIP code submitted matches what is on file.</td>\n</tr>\n<tr>\n<td>Y</td>\n<td>The street address and five-character ZIP code submitted match what is on file.</td>\n</tr>\n<tr>\n<td>Z</td>\n<td>The nine-character ZIP code submitted matches what is on file.</td>\n</tr>\n<tr>\n<td>1</td>\n<td>AMEX only; The cardholder name and ZIP code submitted matches what is on file.</td>\n</tr>\n<tr>\n<td>2</td>\n<td>AMEX only; The cardholder name, address, and ZIP code submitted match what is on file.</td>\n</tr>\n<tr>\n<td>3</td>\n<td>AMEX only; The cardholder name and address submitted match what is on file.</td>\n</tr>\n<tr>\n<td>4</td>\n<td>AMEX only; The cardholder name submitted match what is on file.</td>\n</tr>\n<tr>\n<td>5</td>\n<td>AMEX only; The cardholder name does not match what is on file. The ZIP code submitted matches what is on file.</td>\n</tr>\n<tr>\n<td>6</td>\n<td>AMEX only; The cardholder name does not match what is on file. The address and ZIP code submitted matches what is on file.  <br /></td>\n</tr>\n<tr>\n<td>7  <br /></td>\n<td>AMEX only; The cardholder name does not match what is on file. The address submitted matches what is on file.</td>\n</tr>\n<tr>\n<td>8</td>\n<td>AMEX only; Neither the cardholder name, address, or ZIP code match what is on file.  <br /></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"bbb4c850-6f70-4528-b90e-f90492815c04","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"dd55f844-f6cb-414c-9d63-668ab33c34e9","id":"dd55f844-f6cb-414c-9d63-668ab33c34e9","name":"Payment Gateway","type":"folder"}}}],"id":"6eb1c794-c698-4483-bbc6-64bc0136d126","description":"<p>Responses to any request clearly indicate if the request is processed successfully. We have integrated the following logic and groups in our response codes.</p>\n<p>Status Object</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Fields</th>\n<th>Description</th>\n<th>Type</th>\n<th>Filterable</th>\n<th>Required</th>\n<th>Readonly</th>\n<th>Level 1</th>\n<th>Level 2</th>\n<th>Level 3</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>status</td>\n<td>Status Object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>status.status</td>\n<td><code>Approved</code>,<code>Declined</code>, <code>Error</code></td>\n<td>String</td>\n<td>Yes</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>status.reason</td>\n<td>Status reason</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"approval-response\">Approval Response</h2>\n<p>This is the only response that we will return only a status for it. Do not expect a status.reason here</p>\n<p>Example:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">\"status\": {\n        \"status\": \"Approved\",\n        \"reason\": null\n    }\n\n</code></pre>\n<h2 id=\"decline-response\">Decline Response</h2>\n<p>The decline response will include a status.reason giving you more details on the type of decline.</p>\n<p>Example:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">\"status\": {\n        \"status\": \"Declined\",\n        \"reason\": Insufficient Funds\n    }\n\n</code></pre>\n<p>Here is a list of all possible decline codes:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Status Reason Message</th>\n<th>Details</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><br />  <br />Duplicate Request (Approved previously)  <br />  <br /></td>\n<td><br />  <br />The transaction was already performed and approved. Verify if the request was submitted twice for the same transaction ID or external reference number.  <br />  <br /></td>\n</tr>\n<tr>\n<td><br />  <br />Reversal Not Allowed  <br />  <br /></td>\n<td><br />  <br />The transaction is not authorized for reversal. This error may occur because the transaction was settled, declined, or already reversed.  <br />  <br /></td>\n</tr>\n<tr>\n<td><br />  <br />Return Not Allowed  <br />  <br /></td>\n<td><br />  <br />The transaction is not authorized for return. This error may occur because the transaction was not settled, was declined, or was already reversed.  <br />  <br /></td>\n</tr>\n<tr>\n<td><br />  <br />Supervisor Override Required  <br />  <br /></td>\n<td><br />  <br /></td>\n</tr>\n<tr>\n<td><br />  <br />Modify Transaction Not Allowed  <br />  <br /></td>\n<td><br />  <br />The transaction is not authorized for modification. This error may occur because the transaction was already settled, or was declined.  <br />  <br /></td>\n</tr>\n<tr>\n<td><br />  <br />Possible Duplicate Request  <br />  <br /></td>\n<td><br />  <br />This is a duplicate request. The credentials for this transaction (i.e. amount, card number, or same service) are the same as another transaction submitted less than one minute apart.  <br />  <br /></td>\n</tr>\n<tr>\n<td><br />  <br />Duplicate Request (Reversed previously)  <br />  <br /></td>\n<td><br />  <br />The request with the same credentials (amount, card number, or same service) hit the server twice within a minute.  <br />  <br /></td>\n</tr>\n<tr>\n<td><br />  <br />Inactive Device (Terminal)  <br />  <br /></td>\n<td><br />  <br />The device is not registered, or is inactive in the system.  <br />  <br /></td>\n</tr>\n<tr>\n<td><br />  <br />Device (Terminal) Configuration missing  <br />  <br /></td>\n<td><br />  <br />The configuration parameter is missing.  <br />  <br /></td>\n</tr>\n<tr>\n<td><br />  <br />Insufficient privileges  <br />  <br /></td>\n<td><br />  <br /></td>\n</tr>\n<tr>\n<td><br />  <br />Incremental Auth Not Allowed  <br />  <br /></td>\n<td><br />  <br /></td>\n</tr>\n<tr>\n<td><br />  <br />Unable to process your request. Settlement InProgress.  <br />  <br /></td>\n<td><br />  <br />The transaction settlement is in progress.  <br />  <br /></td>\n</tr>\n<tr>\n<td><br />  <br />Functionality currently not available.  <br />  <br /></td>\n<td><br />  <br />The functionality is not supported by .  <br />  <br /></td>\n</tr>\n<tr>\n<td><br />  <br />Inactive Merchant (Account)  <br />  <br /></td>\n<td><br />  <br />The merchant is not registered, or is inactive in the system.  <br />  <br /></td>\n</tr>\n<tr>\n<td><br />  <br />Merchant (Account) configuration missing  <br />  <br /></td>\n<td><br />  <br />The configuration parameter is missing.  <br />  <br /></td>\n</tr>\n<tr>\n<td><br />  <br />Processor configuration missing  <br />  <br /></td>\n<td><br />  <br />The processor parameter is missing.  <br />  <br /></td>\n</tr>\n<tr>\n<td><br />  <br />Unique ID Error  <br />  <br /></td>\n<td><br />  <br />The terminal unique ID is invalid, or is not registered in the system.  <br />  <br /></td>\n</tr>\n<tr>\n<td><br />  <br />Service Not Allowed  <br />  <br /></td>\n<td><br />  <br /></td>\n</tr>\n<tr>\n<td><br />  <br />Inactive terminal (Backend)  <br />  <br /></td>\n<td><br />  <br />The device is inactive or is not registered at the host.  <br />  <br /></td>\n</tr>\n<tr>\n<td><br />  <br />Inactive account (Backend)  <br />  <br /></td>\n<td><br />  <br />The account is inactive, or is not registered at the host.  <br />  <br /></td>\n</tr>\n<tr>\n<td><br />  <br />Unique ID Error (Backend)  <br />  <br /></td>\n<td><br />  <br />The terminal unique ID is invalid, or is not registered at the host.  <br />  <br /></td>\n</tr>\n<tr>\n<td><br />  <br />Duplicate Request (Backend)  <br />  <br /></td>\n<td><br />  <br />This is a duplicate transaction. This transaction was already approved and processed.  <br />  <br /></td>\n</tr>\n<tr>\n<td><br />  <br />Reversal Not Allowed (Backend)  <br />  <br /></td>\n<td><br />  <br />The transaction is not authorized for reversal. This error may occur because the transaction was settled, declined, or already reversed.  <br />  <br /></td>\n</tr>\n<tr>\n<td><br />  <br />Return Not Allowed (Backend)  <br />  <br /></td>\n<td><br />  <br />The transaction is not authorized for return. This error may occur because the transaction was settled, declined, or already reversed.  <br />  <br /></td>\n</tr>\n<tr>\n<td><br />  <br />Re-enter transaction  <br />  <br /></td>\n<td><br />  <br /></td>\n</tr>\n<tr>\n<td><br />  <br />Encryption failure from host  <br />  <br /></td>\n<td><br />  <br /></td>\n</tr>\n<tr>\n<td><br />  <br />Return not allowed, Card number requested does not match with original transaction card number  <br />  <br /></td>\n<td><br />  <br /></td>\n</tr>\n<tr>\n<td><br />  <br />Invalid taskID  <br />  <br /></td>\n<td><br />  <br /></td>\n</tr>\n<tr>\n<td><br />  <br />Currency code mismatch with original transaction  <br />  <br /></td>\n<td><br />  <br /></td>\n</tr>\n<tr>\n<td><br />  <br />Multiple amount format in single request not supported  <br />  <br /></td>\n<td><br />  <br /></td>\n</tr>\n<tr>\n<td><br />  <br />Time out  <br />  <br /></td>\n<td><br />  <br /></td>\n</tr>\n<tr>\n<td><br />  <br />System Error  <br />  <br /></td>\n<td><br />  <br /></td>\n</tr>\n<tr>\n<td><br />  <br />Error on Host  <br />  <br /></td>\n<td><br />  <br /></td>\n</tr>\n<tr>\n<td><br />  <br />System error (DB Insert)  <br />  <br /></td>\n<td><br />  <br /></td>\n</tr>\n<tr>\n<td><br />  <br />Invalid store ID  <br />  <br /></td>\n<td><br />  <br />Invalid store ID.  <br />  <br /></td>\n</tr>\n<tr>\n<td><br />  <br />Invalid amount  <br />  <br /></td>\n<td><br />  <br />Amount provided in request is invalid.  <br />  <br /></td>\n</tr>\n<tr>\n<td><br />  <br />Coupon service is temporarily unavailable.  <br />  <br /></td>\n<td><br />  <br />Coupon service is temporarily unavailable.  <br />  <br /></td>\n</tr>\n<tr>\n<td><br />  <br />Host Auth initialization declined  <br />  <br /></td>\n<td><br />  <br /></td>\n</tr>\n<tr>\n<td><br />  <br />Card not accepted by host  <br />  <br /></td>\n<td><br />  <br /></td>\n</tr>\n<tr>\n<td><br />  <br />Host Auth finalization declined  <br />  <br /></td>\n<td><br />  <br /></td>\n</tr>\n<tr>\n<td><br />  <br />Host connectivity failed  <br />  <br /></td>\n<td><br />  <br /></td>\n</tr>\n<tr>\n<td><br />  <br />Host Reversal declined  <br />  <br /></td>\n<td><br />  <br /></td>\n</tr>\n<tr>\n<td><br />  <br />Host Return initialization declined  <br />  <br /></td>\n<td><br />  <br /></td>\n</tr>\n<tr>\n<td><br />  <br />Host Return finalization declined  <br />  <br /></td>\n<td><br />  <br /></td>\n</tr>\n<tr>\n<td><br />  <br />Payment_Facilitator_ID is mandatory for VISA, Mastercard Payment facilitator transactions  <br />  <br /></td>\n<td><br />  <br />The transaction does not contain Payment_Facilitator_ID information, which is mandatory for Payment Facilitator Visa and Mastercard transactions.  <br />  <br /></td>\n</tr>\n<tr>\n<td><br />  <br />General Bill Pay Decline  <br />  <br /></td>\n<td><br />  <br />General declined please contact help desk.  <br />  <br /></td>\n</tr>\n<tr>\n<td><br />  <br />Refer to Issuer  <br />  <br /></td>\n<td><br />  <br />The merchant must call the issuer to obtain verbal authorization.  <br />  <br /></td>\n</tr>\n<tr>\n<td><br />  <br />Suspected Card (pick-up, hot-card)  <br />  <br /></td>\n<td><br />  <br />This credit card has been flagged for fraud. the merchant should call the number on the back of the card to obtain further instructions.  <br />  <br />Suspected card error occurs in the following scenarios:  <br />  <br />- The card is restricted by the issuer  <br />- Loss of card is reported  <br />  <br />Theft of card is reported  <br />  <br /></td>\n</tr>\n<tr>\n<td><br />  <br />Honor with identification?  <br />  <br /></td>\n<td><br />  <br />The card is not identified.  <br />  <br /></td>\n</tr>\n<tr>\n<td><br />  <br />Invalid Amount  <br />  <br /></td>\n<td><br />  <br />The amount exceeds the limits established by the issuer for this type of transaction.  <br />  <br /></td>\n</tr>\n<tr>\n<td><br />  <br />Invalid Card  <br />  <br /></td>\n<td><br />  <br />The issuer indicates that this card is invalid.  <br />  <br /></td>\n</tr>\n<tr>\n<td><br />  <br />No such issuer  <br />  <br /></td>\n<td><br />  <br />The card issuer number is invalid.  <br />  <br /></td>\n</tr>\n<tr>\n<td><br />  <br />Invalid fee  <br />  <br /></td>\n<td><br />  <br />The transaction fee is unacceptable.  <br />  <br /></td>\n</tr>\n<tr>\n<td><br />  <br />Incorrect Pin  <br />  <br /></td>\n<td><br />  <br />The PIN entered by the cardholder is incorrect.  <br />  <br /></td>\n</tr>\n<tr>\n<td><br />  <br />Pin attempts exceeded  <br />  <br /></td>\n<td><br />  <br />The number of attempts to enter the PIN has exceeded.  <br />  <br /></td>\n</tr>\n<tr>\n<td><br />  <br />Key synchronization failed from the host  <br />  <br /></td>\n<td><br />  <br />The failure of a key synchronization from the host.  <br />  <br /></td>\n</tr>\n<tr>\n<td><br />  <br />Expired Card  <br />  <br /></td>\n<td><br />  <br />The card has expired.  <br />  <br /></td>\n</tr>\n<tr>\n<td><br />  <br />Insufficient Funds  <br />  <br /></td>\n<td><br />  <br />The credit limit for this account has been exceeded, or the amount is not enough to perform the transaction.  <br />  <br /></td>\n</tr>\n<tr>\n<td><br />  <br />Invalid From Account  <br />  <br /></td>\n<td><br />  <br />The transaction account is invalid.  <br />  <br /></td>\n</tr>\n<tr>\n<td><br />  <br />Invalid To Account  <br />  <br /></td>\n<td><br />  <br />The transaction account is invalid.  <br />  <br /></td>\n</tr>\n<tr>\n<td><br />  <br />Withdrawal Limit exceeded  <br />  <br /></td>\n<td><br />  <br />The withdrawal limit on an account is exceeded.  <br />  <br /></td>\n</tr>\n<tr>\n<td><br />  <br />Withdrawal frequency exceeded  <br />  <br /></td>\n<td><br />  <br />The withdrawal frequency on an account is exceeded.  <br />  <br /></td>\n</tr>\n<tr>\n<td><br />  <br />Time limit for Pre-Auth reached  <br />  <br /></td>\n<td><br />  <br />The time for Pre-Auth has reached its limit.  <br />  <br /></td>\n</tr>\n<tr>\n<td><br />  <br />AVS FAILED  <br />  <br /></td>\n<td><br />  <br />The address verification has failed and the merchant is configured for auto decline on AVS failure.  <br />  <br /></td>\n</tr>\n<tr>\n<td><br />  <br />Billing ZIP Mismatch  <br />  <br /></td>\n<td><br />  <br />The zip provided does not match the billing address on file and the merchant is configured for auto decline on ZIP code mismatch.  <br />  <br /></td>\n</tr>\n<tr>\n<td><br />  <br />CVV2 verification failed  <br />  <br /></td>\n<td><br />  <br />The V code provided is invalid or does not match what is on file and the merchant set up for auto decline on CVV2 failure.  <br />  <br /></td>\n</tr>\n<tr>\n<td><br />  <br />Issuer or Switch inoperative  <br />  <br /></td>\n<td><br />  <br />The bank is unavailable to authorize this transaction.  <br />  <br /></td>\n</tr>\n<tr>\n<td><br />  <br />Duplicate transaction ( Same amount / Account)  <br />  <br /></td>\n<td><br />  <br />The transaction with the same amount and account is performed twice.  <br />  <br /></td>\n</tr>\n<tr>\n<td><br />  <br />Balance unavailable for inquiry  <br />  <br /></td>\n<td><br />  <br />The balance cannot be validated.  <br />  <br /></td>\n</tr>\n<tr>\n<td><br />  <br />Check Digit Err  <br />  <br /></td>\n<td><br />  <br />The credit card number entered did not pass validation. Correct and re-enter the credit card number.  <br />  <br /></td>\n</tr>\n<tr>\n<td><br />  <br />Excluded Bin ID for Merchant  <br />  <br /></td>\n<td><br />  <br />Card is not allowed to do transactions at this merchant.  <br />  <br /></td>\n</tr>\n<tr>\n<td><br />  <br />Do not honor  <br />  <br /></td>\n<td><br />  <br />The transaction was declined by the issuer.  <br />  <br /></td>\n</tr>\n<tr>\n<td><br />  <br />AVS and CVV2 failed  <br />  <br /></td>\n<td><br />  <br />The address verification and V code verification failed and the merchant set up for auto decline on AVS and CVV2 failure.  <br />  <br /></td>\n</tr>\n<tr>\n<td><br />  <br />Invalid Date  <br />  <br /></td>\n<td><br />  <br />The credit card expiration date is invalid. Verify and re-enter the expiration date.  <br />  <br /></td>\n</tr>\n<tr>\n<td><br />  <br />Invalid Service  <br />  <br /></td>\n<td><br />  <br />The service provided by the card is invalid.  <br />  <br /></td>\n</tr>\n<tr>\n<td><br />  <br />Host Validation Error  <br />  <br /></td>\n<td><br />  <br />The host is an invalid host.  <br />  <br /></td>\n</tr>\n<tr>\n<td><br />  <br />Activity Limit exceeded  <br />  <br /></td>\n<td><br />  <br />The daily card activity limit has been exceeded.  <br />  <br /></td>\n</tr>\n<tr>\n<td><br />  <br />Cannot complete because of Violation  <br />  <br /></td>\n<td><br />  <br />The transaction cannot be completed because the credit card account has been flagged with a violation.  <br />  <br /></td>\n</tr>\n<tr>\n<td><br />  <br />Debit Pin Required  <br />  <br /></td>\n<td><br />  <br />The BIN is blocked by the issuer.  <br />  <br /></td>\n</tr>\n<tr>\n<td><br />  <br />Check Service authentication failure  <br />  <br /></td>\n<td><br />  <br /></td>\n</tr>\n<tr>\n<td><br />  <br />Could Not Retrieve a Valid Card Number for Token  <br />  <br /></td>\n<td><br />  <br /></td>\n</tr>\n<tr>\n<td><br />  <br />Card information is not provided  <br />  <br /></td>\n<td><br />  <br /></td>\n</tr>\n<tr>\n<td><br />  <br />No Card found for the BIN  <br />  <br /></td>\n<td><br />  <br /></td>\n</tr>\n<tr>\n<td><br />  <br />Card verification failed for card number  <br />  <br /></td>\n<td><br />  <br />Verification of the card number has failed.  <br />  <br /></td>\n</tr>\n<tr>\n<td><br />  <br />PreFraudScout Decline  <br />  <br /></td>\n<td><br />  <br />Transaction is declined in Pre Fraud rules.  <br />  <br /></td>\n</tr>\n<tr>\n<td><br />  <br />General Card Auth Decline  <br />  <br /></td>\n<td><br />  <br />This is a general decline error.  <br />  <br /></td>\n</tr>\n<tr>\n<td><br />  <br />Blocked Account  <br />  <br /></td>\n<td><br />  <br />The account provided in transaction is blocked.  <br />  <br /></td>\n</tr>\n<tr>\n<td><br />  <br />Blocked Check  <br />  <br /></td>\n<td><br />  <br />The check provided in transaction is blocked.  <br />  <br /></td>\n</tr>\n<tr>\n<td><br />  <br />Invalid Token  <br />  <br /></td>\n<td><br />  <br /></td>\n</tr>\n<tr>\n<td><br />  <br />Service Not Allowed  <br />  <br /></td>\n<td><br />  <br /></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"error-response\">Error Response</h2>\n<p>These are rare and are usually returned due to incorrect request formatting or general system errors.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Status Reason Message</th>\n<th>Details</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Format Error field details</td>\n<td>Check the formatting of your request parameters</td>\n</tr>\n<tr>\n<td>Customer requested stop of all recurring payments from specific merchant</td>\n<td></td>\n</tr>\n<tr>\n<td>Transaction is in process. Please try again after some time.</td>\n<td>Simultaneous actions cannot be performed on the same customer record. The application is unable to perform edits on a customer record while the record is in use.</td>\n</tr>\n<tr>\n<td>An error has occurred. Your request couldn't be processed because of a technical issue. Please try again later. We apologize for the inconvenience. Our technical team has been notified</td>\n<td>This is a system general error and you can contact us if you are experiencing these errors for more information.</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"6eb1c794-c698-4483-bbc6-64bc0136d126","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"dd55f844-f6cb-414c-9d63-668ab33c34e9","id":"dd55f844-f6cb-414c-9d63-668ab33c34e9","name":"Payment Gateway","type":"folder"}}}],"id":"dd55f844-f6cb-414c-9d63-668ab33c34e9","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":false},"event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""]}},{"listen":"test","script":{"type":"text/javascript","exec":[""]}}],"_postman_id":"dd55f844-f6cb-414c-9d63-668ab33c34e9","description":""},{"name":"Dashboard","item":[{"name":"Sandbox","item":[{"name":"Sandbox Dashboard","id":"09d9c839-36b1-413c-8899-e94c58c3cab6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://sandbox-dashboard.paysecureonline.com/<path>","description":"<p>For testing purposes, please use our sandbox endpoint.</p>\n","urlObject":{"host":["https://sandbox-dashboard.paysecureonline.com/<path>"],"query":[],"variable":[]}},"response":[],"_postman_id":"09d9c839-36b1-413c-8899-e94c58c3cab6"}],"id":"1b0f8591-61b4-48ad-9148-9c28ccd31f1d","_postman_id":"1b0f8591-61b4-48ad-9148-9c28ccd31f1d","description":""},{"name":"Resources","item":[{"name":"Boarding Applications","item":[{"name":"Campaigns","item":[{"name":"List","id":"d66a5729-84e5-4011-89c3-07e215f3d9ad","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/boarding-application/campaigns","description":"<p>Use this endpoint to list all Campaigns</p>\n","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"f160ec72-b784-44ef-9188-587a16e22d30","id":"f160ec72-b784-44ef-9188-587a16e22d30","name":"Boarding Applications","type":"folder"}},"urlObject":{"path":["api","boarding-application","campaigns"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"eb1ac661-01f5-444c-aec2-b34c46bf3d6a","name":"List","originalRequest":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/boarding-application/campaigns"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 05 May 2023 14:01:34 GMT"},{"key":"Content-Type","value":"application/json; charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"www-authenticate","value":"Bearer realm=\"api\""},{"key":"set-cookie","value":"sessionContinutation=99d19912da8361718f20f22e1e3217716d0c239e1e57a4f6185b11f1c9d9d226a%3A2%3A%7Bi%3A0%3Bs%3A20%3A%22sessionContinutation%22%3Bi%3A1%3Bi%3A1683296254%3B%7D; path=/; secure; SameSite=Lax"},{"key":"strict-transport-security","value":"max-age=300; includeSubDomains"},{"key":"x-content-type-options","value":"nosniff"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=ycx41n5J7cfVbTFI1LBCm8dRRNyUtvujEwHghvsDhXBK7YqVmucIjFD7mPvBY1lK4DErRYmTNcYRjusHB%2BJNJjuAWoDY0%2FIcIpcyngo1PMrELuD%2FDgHpMurvgUuEwwehciO%2FmlkWiE8DuRxfR9pCxw%3D%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"7c298427dae59c84-IAD"},{"key":"alt-svc","value":"h3=\":443\"; ma=86400, h3-29=\":443\"; ma=86400"}],"cookie":[],"responseTime":null,"body":"{\n    \"items\": [\n        {\n            \"id\": \"2\",\n            \"name\": \"3 Tier\",\n            \"type\": \"Standard\",\n            \"processingMethod\": \"All\",\n            \"createdOn\": \"2019-02-05 19:27:49\"\n        },\n        {\n            \"id\": \"1\",\n            \"name\": \"Interchange Plus\",\n            \"type\": \"Standard\",\n            \"processingMethod\": \"Acquiring\",\n            \"createdOn\": \"2019-02-05 19:27:49\"\n        }\n    ],\n    \"_links\": {\n        \"self\": {\n            \"href\": \"https://dashboard.dashboard.paysecureonline.com/api/boarding-application/campaigns?page=1\"\n        }\n    },\n    \"_meta\": {\n        \"totalCount\": 2,\n        \"pageCount\": 1,\n        \"currentPage\": 1,\n        \"perPage\": 30\n    }\n}"}],"_postman_id":"d66a5729-84e5-4011-89c3-07e215f3d9ad"}],"id":"382fe813-25f2-43db-9ae3-73b348a7d2b6","description":"<p>A Boarding Application always starts by choosing a campaign and <code>processingMethod</code>. We have two main types of campaigns <code>Standard</code> or <code>Other</code>.</p>\n<p>A standard campaign is a pre-fixed system campaign with standard pricing fees (Interchange or 3 Tier). Other is used for all the other types of campaigns where we do special conditions, pricing fees etc. The <code>processingMethod</code> determines the method of processing that a merchants wants to apply for.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Fields</th>\n<th>Description</th>\n<th>Type</th>\n<th>Filterable</th>\n<th>Required</th>\n<th>Readonly</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>Unique ID of the campaign</td>\n<td>Integer</td>\n<td>Yes</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>name</td>\n<td>Name of the campaign</td>\n<td>String</td>\n<td>Yes</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>type</td>\n<td><code>Standard</code> or <code>Other</code></td>\n<td>ENUM</td>\n<td>Yes</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>processingMethod</td>\n<td><code>Acquiring</code>, <code>ACH</code> or <code>All</code></td>\n<td>ENUM</td>\n<td>Yes</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>createdOn</td>\n<td>Date and Time of creation</td>\n<td>DateTime</td>\n<td>Yes</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"382fe813-25f2-43db-9ae3-73b348a7d2b6","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"f160ec72-b784-44ef-9188-587a16e22d30","id":"f160ec72-b784-44ef-9188-587a16e22d30","name":"Boarding Applications","type":"folder"}}},{"name":"Equipment","item":[{"name":"Terminals","item":[{"name":"List","id":"cd41c57c-332f-48e2-9c13-2563f5b3234a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/boarding-application/<id>/equipment/terminals","description":"<p>List all terminals that have been added to a Boarding Application. These terminals will be sent to the merchant when the application is approved.</p>\n","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"f160ec72-b784-44ef-9188-587a16e22d30","id":"f160ec72-b784-44ef-9188-587a16e22d30","name":"Boarding Applications","type":"folder"}},"urlObject":{"path":["api","boarding-application","<id>","equipment","terminals"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"a95e84cf-7f08-4208-bbf8-e8ddb4cd1feb","name":"List","originalRequest":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://dashboard.dashboard.paysecureonline.com/api/boarding-application/1/equipment/terminals"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\r\n    \"tid\": 7000,\r\n    \"vnumber\": \"1\",\r\n    \"gateway\": \"Internal\",\r\n    \"note\": \"Gateway 1\"\r\n},\r\n{\r\n    \"tid\": 7001,\r\n    \"vnumber\": \"2\",\r\n    \"gateway\": \"Other\",\r\n    \"note\": \"Gateway 2\"\r\n},\r\n{\r\n    \"tid\": 7003,\r\n    \"vnumber\": \"3\",\r\n    \"gateway\": \"Internal\",\r\n    \"note\": \"test\"\r\n}"}],"_postman_id":"cd41c57c-332f-48e2-9c13-2563f5b3234a"},{"name":"View","id":"c79f0644-c165-48f1-93f1-52972a8e9a52","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/boarding-application/<id>/equipment/terminal/<tid>","description":"<p>View a specific Terminal in the Equipment section of the Boarding Application</p>\n","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"f160ec72-b784-44ef-9188-587a16e22d30","id":"f160ec72-b784-44ef-9188-587a16e22d30","name":"Boarding Applications","type":"folder"}},"urlObject":{"path":["api","boarding-application","<id>","equipment","terminal","<tid>"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"e7b48bd8-2027-4495-a1a4-5607df217155","name":"View","originalRequest":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://dashboard.dashboard.paysecureonline.com/api/boarding-application/1/equipment/terminal/7000"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"tid\": 7000,\n    \"vnumber\": \"1\",\n    \"gateway\": \"Internal\",\n    \"note\": \"Gateway 1\"\n}"}],"_postman_id":"c79f0644-c165-48f1-93f1-52972a8e9a52"},{"name":"Add","id":"13515e84-a3ec-44d8-a8f0-3b5dd25dee9e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"tid\": \"7000\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://dashboard.dashboard.paysecureonline.com/api/boarding-application/<id>/equipment/terminal","description":"<p>Add a Terminal in the Equipment section of the Boarding Application</p>\n","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"f160ec72-b784-44ef-9188-587a16e22d30","id":"f160ec72-b784-44ef-9188-587a16e22d30","name":"Boarding Applications","type":"folder"}},"urlObject":{"path":["api","boarding-application","<id>","equipment","terminal"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"101dd641-9d97-412c-acec-f2f759059f9f","name":"Add","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"tid\": \"7000\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://dashboard.dashboard.paysecureonline.com/api/boarding-application/1/equipment/terminal"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"tid\": 7000,\n    \"vnumber\": null,\n    \"gateway\": \"Other\",\n    \"note\": null\n}"}],"_postman_id":"13515e84-a3ec-44d8-a8f0-3b5dd25dee9e"},{"name":"Update","id":"9b66b085-7d07-477d-a976-e1cdecccffb8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"note\": \"Updated Terminal\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://dashboard.dashboard.paysecureonline.com/api/boarding-application/<id>/equipment/terminal/<tid>","description":"<p>Update a Terminal in the Equipment section of the Boarding Application.</p>\n<p>Just as in the dashboard, most of the fields are lockable.</p>\n<p>Depending on the user's permissions in the dashboard, you won't be able to edit locked fields.</p>\n<blockquote>\n<p><strong>Important:</strong> Attempting to update a locked field or a lock flag without the appropriate permissions will simply return the old values for these fields.</p>\n</blockquote>\n","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"f160ec72-b784-44ef-9188-587a16e22d30","id":"f160ec72-b784-44ef-9188-587a16e22d30","name":"Boarding Applications","type":"folder"}},"urlObject":{"path":["api","boarding-application","<id>","equipment","terminal","<tid>"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"ebe240eb-d94a-4efb-8edf-883a027a8af0","name":"Update","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"note\": \"Updated Terminal\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://dashboard.dashboard.paysecureonline.com/api/boarding-application/1/equipment/terminal/7000"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"tid\": 7000,\n    \"vnumber\": \"5\",\n    \"gateway\": \"Internal\",\n    \"note\": \"Updated Terminal\"\n}"}],"_postman_id":"9b66b085-7d07-477d-a976-e1cdecccffb8"},{"name":"Delete","id":"5617d7e3-b6ac-4ecb-a600-961f131999e9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://dashboard.dashboard.paysecureonline.com/api/boarding-application/<id>/equipment/terminal/<tid>","description":"<p>You can utilize this endpoint to delete a terminal in the Equipment section of the Boarding Application</p>\n","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"f160ec72-b784-44ef-9188-587a16e22d30","id":"f160ec72-b784-44ef-9188-587a16e22d30","name":"Boarding Applications","type":"folder"}},"urlObject":{"path":["api","boarding-application","<id>","equipment","terminal","<tid>"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"423dca0a-ce52-4aeb-a8b3-58613572cabf","name":"Delete","originalRequest":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":"{\r\n    \"note\": \"Updated Terminal\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://dashboard.dashboard.paysecureonline.com/api/boarding-application/1/equipment/terminal/7000"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\r\n    true\r\n}"}],"_postman_id":"5617d7e3-b6ac-4ecb-a600-961f131999e9"}],"id":"ef6ff741-c226-4743-a789-ba1f3cf7b46d","description":"<p>When creating a boarding application we give you the ability to add existing terminals.</p>\n<p>By utilizing this endpoint you can perform several operations with the Existing terminals section of the Boarding Application.</p>\n<blockquote>\n<p><strong>IMPORTANT</strong> You can only create, update, and delete Terminals information on pre-approved<br />applications. </p>\n</blockquote>\n<p>Equipment Terminal Object</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Fields</th>\n<th>Description</th>\n<th>Type</th>\n<th>Filterable</th>\n<th>Required</th>\n<th>Readonly</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>tid</td>\n<td>TID</td>\n<td>Integer</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>vnumber</td>\n<td>V#</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>gateway</td>\n<td><code>Internal</code> or <code>Other</code></td>\n<td>ENUM</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>note</td>\n<td>Note</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"ef6ff741-c226-4743-a789-ba1f3cf7b46d","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"f160ec72-b784-44ef-9188-587a16e22d30","id":"f160ec72-b784-44ef-9188-587a16e22d30","name":"Boarding Applications","type":"folder"}}},{"name":"View","id":"5ee03b99-0f1a-4ee5-bd78-f28315432b55","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/boarding-application/<id>/equipment","description":"<p>Use this endpoint to view the equipment settings on a Boarding Application.</p>\n","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"f160ec72-b784-44ef-9188-587a16e22d30","id":"f160ec72-b784-44ef-9188-587a16e22d30","name":"Boarding Applications","type":"folder"}},"urlObject":{"path":["api","boarding-application","<id>","equipment"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"1dc081fb-2272-4514-960c-4a655e50d5c2","name":"View","originalRequest":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/boarding-application/1/equipment"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"equipment\": {\n        \"used\": {\n            \"value\": \"\",\n            \"locked\": \"No\"\n        },\n        \"note\": {\n            \"value\": \"\",\n            \"locked\": \"No\"\n        },\n        \"providedBy\": {\n            \"value\": null,\n            \"locked\": \"No\"\n        }\n    },\n    \"varRequired\": {\n        \"value\": \"No\",\n        \"locked\": \"No\"\n    },\n    \"discountPeriod\": {\n        \"value\": \"Daily\",\n        \"locked\": \"No\"\n    },\n    \"fundingPeriod\": {\n        \"value\": \"TwoBusinessDays\",\n        \"locked\": \"No\"\n    },\n    \"type\": {\n        \"value\": \"StageOnly\",\n        \"locked\": \"No\"\n    },\n    \"emv\": {\n        \"value\": null,\n        \"locked\": \"No\"\n    },\n    \"mobileTerminal\": {\n        \"value\": null,\n        \"locked\": \"No\"\n    },\n    \"externalPinPad\": {\n        \"value\": null,\n        \"locked\": \"No\"\n    },\n    \"contactless\": {\n        \"value\": null,\n        \"locked\": \"No\"\n    },\n    \"existingTID\": {\n        \"value\": \"No\",\n        \"locked\": \"No\",\n        \"terminals\": [\n            {\n                \"tid\": 7000,\n                \"vNumber\": null,\n                \"gateway\": \"Other\",\n                \"note\": null\n            }\n        ]\n    },\n    \"serialNumberSettings\": {\n        \"value\": null,\n        \"locked\": \"No\"\n    },\n    \"pinDebitPad\": {\n        \"value\": null,\n        \"locked\": \"No\"\n    },\n    \"ebtFnsNumber\": {\n        \"value\": null,\n        \"locked\": \"No\"\n    },\n    \"terminal\": {\n        \"paidBy\": {\n            \"value\": null,\n            \"locked\": \"No\"\n        },\n        \"paidAmount\": {\n            \"value\": null,\n            \"locked\": \"No\"\n        },\n        \"shipTo\": {\n            \"value\": null,\n            \"locked\": \"No\"\n        },\n        \"shipping\": {\n            \"address\": {\n                \"value\": \"\",\n                \"locked\": \"No\"\n            },\n            \"method\": {\n                \"value\": null,\n                \"locked\": \"No\"\n            }\n        },\n        \"communication\": {\n            \"value\": null,\n            \"locked\": \"No\"\n        },\n        \"batch\": {\n            \"type\": {\n                \"value\": null,\n                \"locked\": \"No\"\n            },\n            \"period\": {\n                \"value\": \"\",\n                \"locked\": \"No\"\n            }\n        },\n        \"header\": {\n            \"value\": \"\",\n            \"locked\": \"No\"\n        },\n        \"footerLine\": {\n            \"value\": null,\n            \"locked\": \"No\"\n        },\n        \"surcharge\": {\n            \"feeDescription\": {\n                \"value\": \"\",\n                \"locked\": \"No\"\n            },\n            \"percentage\": {\n                \"value\": null,\n                \"locked\": \"No\"\n            },\n            \"bypassOption\": {\n                \"value\": null,\n                \"locked\": \"No\"\n            },\n            \"notes\": {\n                \"value\": \"\",\n                \"locked\": \"No\"\n            }\n        },\n        \"tip\": {\n            \"line\": {\n                \"value\": \"No\",\n                \"locked\": \"No\"\n            },\n            \"prompt\": {\n                \"value\": \"No\",\n                \"locked\": \"No\"\n            },\n            \"suggestion\": {\n                \"value\": \"No\",\n                \"locked\": \"No\",\n                \"percentages\": {\n                    \"value\": \"\",\n                    \"locked\": \"No\"\n                }\n            }\n        }\n    },\n    \"lastEquipmentUpdated\": \"2023-05-11 13:19:41\",\n    \"lastAgentReview\": null\n}"}],"_postman_id":"5ee03b99-0f1a-4ee5-bd78-f28315432b55"},{"name":"Update","id":"b27bbc4f-66eb-44fc-8102-7c0619e28f41","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"equipment\": {\n        \"providedBy\": {\n            \"value\": \"ISO\"\n        }\n    },\n    \"ebt\": {\n        \"locked\": \"No\"\n    },\n    \"terminal\": {\n        \"paidBy\": {\n            \"value\": \"Merchant\"\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://dashboard.dashboard.paysecureonline.com/api/boarding-application/<id>/equipment","description":"<p>Use this endpoint the update the equipment section of a Boarding Application</p>\n<p>Just as in the dashboard, most of the fields are lockable.</p>\n<p>Depending on permission you might not be able to update locked fields.</p>\n<blockquote>\n<p><strong>Important:</strong> Attempting to update a locked field or a lock flag without the appropriate permissions will simply return the old values for these fields as they won't be updated.</p>\n</blockquote>\n","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"f160ec72-b784-44ef-9188-587a16e22d30","id":"f160ec72-b784-44ef-9188-587a16e22d30","name":"Boarding Applications","type":"folder"}},"urlObject":{"path":["api","boarding-application","<id>","equipment"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"c7cc5bb7-b498-4dd3-9a3c-884f7b89d1e0","name":"Update","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"equipment\": {\n        \"providedBy\": {\n            \"value\": \"ISO\"\n        }\n    },\n    \"ebt\": {\n        \"locked\": \"No\"\n    },\n    \"terminal\": {\n        \"paidBy\": {\n            \"value\": \"Merchant\"\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://dashboard.dashboard.paysecureonline.com/api/boarding-application/1/equipment"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"equipment\": {\n        \"used\": {\n            \"value\": \"terminals\",\n            \"locked\": \"No\"\n        },\n        \"note\": {\n            \"value\": \"Just a note\",\n            \"locked\": \"No\"\n        },\n        \"providedBy\": {\n            \"value\": \"ISO\",\n            \"locked\": \"No\"\n        }\n    },\n    \"varRequired\": {\n        \"value\": \"No\",\n        \"locked\": \"No\"\n    },\n    \"discountPeriod\": {\n        \"value\": \"Daily\",\n        \"locked\": \"No\"\n    },\n    \"fundingPeriod\": {\n        \"value\": \"TwoBusinessDays\",\n        \"locked\": \"No\"\n    },\n    \"type\": {\n        \"value\": \"StageOnly\",\n        \"locked\": \"No\"\n    },\n    \"emv\": {\n        \"value\": null,\n        \"locked\": \"No\"\n    },\n    \"mobileTerminal\": {\n        \"value\": null,\n        \"locked\": \"No\"\n    },\n    \"externalPinPad\": {\n        \"value\": null,\n        \"locked\": \"No\"\n    },\n    \"contactless\": {\n        \"value\": null,\n        \"locked\": \"No\"\n    },\n    \"existingTID\": {\n        \"value\": \"No\",\n        \"locked\": \"No\"\n    },\n    \"serialNumberSettings\": {\n        \"value\": null,\n        \"locked\": \"No\"\n    },\n    \"pinDebitPad\": {\n        \"value\": null,\n        \"locked\": \"No\"\n    },\n    \"ebt\": {\n        \"value\": null,\n        \"locked\": \"No\"\n    },\n    \"terminal\": {\n        \"paidBy\": {\n            \"value\": null,\n            \"locked\": \"No\"\n        },\n        \"paidAmount\": {\n            \"value\": null,\n            \"locked\": \"No\"\n        },\n        \"shipTo\": {\n            \"value\": null,\n            \"locked\": \"No\"\n        },\n        \"shipping\": {\n            \"address\": {\n                \"value\": null,\n                \"locked\": \"No\"\n            },\n            \"method\": {\n                \"value\": null,\n                \"locked\": \"No\"\n            }\n        },\n        \"communication\": {\n            \"value\": null,\n            \"locked\": \"No\"\n        },\n        \"batch\": {\n            \"type\": {\n                \"value\": null,\n                \"locked\": \"No\"\n            },\n            \"period\": {\n                \"value\": null,\n                \"locked\": \"No\"\n            }\n        },\n        \"header\": {\n            \"value\": null,\n            \"locked\": \"No\"\n        },\n        \"footerLine\": {\n            \"value\": null,\n            \"locked\": \"No\"\n        },\n        \"surcharge\": {\n            \"feeDescription\": {\n                \"value\": null,\n                \"locked\": \"No\"\n            },\n            \"percentage\": {\n                \"value\": null,\n                \"locked\": \"No\"\n            },\n            \"bypassOption\": {\n                \"value\": null,\n                \"locked\": \"No\"\n            },\n            \"notes\": {\n                \"value\": null,\n                \"locked\": \"No\"\n            }\n        },\n        \"tip\": {\n            \"line\": {\n                \"value\": \"No\",\n                \"locked\": \"No\"\n            },\n            \"prompt\": {\n                \"value\": \"No\",\n                \"locked\": \"No\"\n            },\n            \"suggestion\": {\n                \"value\": \"No\",\n                \"locked\": \"No\",\n                \"percentages\": {\n                    \"value\": null,\n                    \"locked\": \"No\"\n                }\n            }\n        }\n    },\n    \"lastEquipmentUpdated\": \"2023-04-24 12:10:09\",\n    \"lastAgentReview\": null\n}"}],"_postman_id":"b27bbc4f-66eb-44fc-8102-7c0619e28f41"}],"id":"04ca6112-a84c-4bb8-b1e3-c02d207c98d8","description":"<p>You can utilize this endpoint to perform several operation in the Equipment section of the Boarding Application</p>\n<p>Equipment Oject</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Fields</th>\n<th>Description</th>\n<th>Type</th>\n<th>Filterable</th>\n<th>Required</th>\n<th>Readonly</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>equipment</td>\n<td>Equipment Info</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>equipment.used</td>\n<td>Equipment Used Object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>equipment.used.value</td>\n<td>Equipment Used Value</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>equipment.used.locked</td>\n<td>Equipment Used Locked Flag <code>Yes</code> or <code>No</code></td>\n<td>Enum</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>equipment.note</td>\n<td>Equipment Note Object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>equipment.note.value</td>\n<td>Equipment Note Value</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>equipment.note.locked</td>\n<td>Equipment Note Locked Flag <code>Yes</code> or <code>No</code></td>\n<td>Enum</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>equipment.providedBy</td>\n<td>Equipment Provided By Object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>equipment.providedBy.value</td>\n<td>Equipment Provided By Value <code>ISO</code> or <code>Deployment Center</code></td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>equipment.providedBy.locked</td>\n<td>Equipment Provided By Locked Flag <code>Yes</code> or <code>No</code></td>\n<td>Enum</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>varRequired</td>\n<td>Var Required Object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>varRequired.value</td>\n<td>Var Required Value <code>Yes</code> or <code>No</code></td>\n<td>Enum</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>varRequired.locked</td>\n<td>Var Required Locked Flag <code>Yes</code> or <code>No</code></td>\n<td>Enum</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>discountPeriod</td>\n<td>Discount Period Object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>discountPeriod.value</td>\n<td>Discount Period Value <code>Daily</code> or <code>Monthly</code></td>\n<td>Enum</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>discountPeriod.locked</td>\n<td>Discount Period Locked Flag <code>Yes</code> or <code>No</code></td>\n<td>Enum</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>fundingPeriod</td>\n<td>Funding Period Object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>fundingPeriod.value</td>\n<td>Funding Period Value <code>TwoBusinessDays</code>, <code>NextDay</code>, <code>SameDay</code></td>\n<td>Enum</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>fundingPeriod.locked</td>\n<td>Funding Period Locked Flag <code>Yes</code> or <code>No</code></td>\n<td>Enum</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>type</td>\n<td>Type Object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>type.value</td>\n<td>Type Value <code>StageOnly</code> or <code>Custom</code></td>\n<td>Enum</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>type.locked</td>\n<td>Type Locked Flag <code>Yes</code> or <code>No</code></td>\n<td>Enum</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>emv</td>\n<td>Emv Object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>emv.value</td>\n<td>Emv Value <code>Yes</code> or <code>No</code></td>\n<td>Enum</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>emv.locked</td>\n<td>Emv Locked Flag <code>Yes</code> or <code>No</code></td>\n<td>Enum</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>mobileTerminal</td>\n<td>Mobile Terminal Object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>mobileTerminal.value</td>\n<td>Mobile Terminal Value <code>Yes</code> or <code>No</code></td>\n<td>Enum</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>mobileTerminal.locked</td>\n<td>Mobile Terminal Locked Flag <code>Yes</code> or <code>No</code></td>\n<td>Enum</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>externalPinPad</td>\n<td>External Pin Pad Object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>externalPinPad.value</td>\n<td>External Pin Pad Value <code>Yes</code> or <code>No</code></td>\n<td>Enum</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>externalPinPad.locked</td>\n<td>External Pin Pad Locked Flag <code>Yes</code> or <code>No</code></td>\n<td>Enum</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>contactless</td>\n<td>Contactless Object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>contactless.value</td>\n<td>Contactless Value <code>Yes</code> or <code>No</code></td>\n<td>Enum</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>contactless.locked</td>\n<td>Contactless Locked Flag <code>Yes</code> or <code>No</code></td>\n<td>Enum</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>existingTID</td>\n<td>Existing TID Object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>existingTID.value</td>\n<td>Existing TID Value <code>Yes</code> or <code>No</code></td>\n<td>Enum</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>existingTID.locked</td>\n<td>Existing TID Locked Flag <code>Yes</code> or <code>No</code></td>\n<td>Enum</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>existingTID.terminals</td>\n<td>Existing TID Boarding Application Terminals Object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>serialNumberSettings</td>\n<td>Serial Number Settings Object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>serialNumberSettings.value</td>\n<td>Serial Number Settings Value</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>serialNumberSettings.locked</td>\n<td>Serial Number Settings Locked Flag <code>Yes</code> or <code>No</code></td>\n<td>Enum</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>pinDebitPad</td>\n<td>Pin Debit Pad Object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>pinDebitPad.value</td>\n<td>Pin Debit Pad Value <code>Internal</code> or <code>External</code></td>\n<td>Enum</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>pinDebitPad.locked</td>\n<td>Pin Debit Pad Locked Flag <code>Yes</code> or <code>No</code></td>\n<td>Enum</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>ebtFnsNumber</td>\n<td>EBT FNS Number</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>ebtFnsNumber.value</td>\n<td>EBT FNS Number Value</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>ebtFnsNumber.locked</td>\n<td>EBT By Locked Flag <code>Yes</code> or <code>No</code></td>\n<td>Enum</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>terminal</td>\n<td>Terminal Object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>terminal.paidBy</td>\n<td>Terminal Paid By Object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>terminal.paidBy.value</td>\n<td>Terminal Paid By Value <code>ISO</code>, <code>Sub-Agent</code>, <code>Merchant</code></td>\n<td>Enum</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>terminal.paidBy.locked</td>\n<td>Terminal Paid By Locked Flag <code>Yes</code> or <code>No</code></td>\n<td>Enum</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>terminal.paidAmount</td>\n<td>Terminal Paid Amount Object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>terminal.paidAmount.value</td>\n<td>Terminal Paid Amount Value</td>\n<td>Number</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>terminal.paidAmount.locked</td>\n<td>Terminal Paid Amount Locked Flag <code>Yes</code> or <code>No</code></td>\n<td>Enum</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>terminal.shipTo</td>\n<td>Terminal Ship To Object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>terminal.shipTo.value</td>\n<td>Terminal Ship To Value <code>ISO</code>, <code>Sub-Agent</code>, <code>Merchant</code></td>\n<td>Enum</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>terminal.shipTo.locked</td>\n<td>Terminal Ship To Locked Flag <code>Yes</code> or <code>No</code></td>\n<td>Enum</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>terminal.shipping</td>\n<td>Terminal Shipping Object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>terminal.shipping.address</td>\n<td>Terminal Shipping Address Object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>terminal.shipping.address.value</td>\n<td>Terminal Shipping Address Value</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>terminal.shipping.address.locked</td>\n<td>Terminal Shipping Address Locked Flag <code>Yes</code> or <code>No</code></td>\n<td>Enum</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>terminal.shipping.method</td>\n<td>Terminal Shipping Method Object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>terminal.shipping.method.value</td>\n<td>Terminal Shipping Method Value <code>Overnight</code>, <code>OvernightAm</code>, <code>SecondDay</code>, <code>FedexExpressSaver</code></td>\n<td>Enum</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>terminal.shipping.method.locked</td>\n<td>Terminal Shipping Method Locked Flag <code>Yes</code> or <code>No</code></td>\n<td>Enum</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>terminal.communication</td>\n<td>Terminal Communication Object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>terminal.communication.value</td>\n<td>Terminal Communication Value <code>Dial</code>, <code>Ethernet</code>, <code>Wireless</code></td>\n<td>Enum</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>terminal.communication.locked</td>\n<td>Terminal Communication Locked Flag <code>Yes</code> or <code>No</code></td>\n<td>Enum</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>terminal.batch</td>\n<td>Terminal Batch Object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>terminal.batch.type</td>\n<td>Terminal Batch Type Object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>terminal.batch.type.value</td>\n<td>Terminal Batch Type Value <code>Auto</code> or <code>Manual</code></td>\n<td>Enum</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>terminal.batch.type.locked</td>\n<td>Terminal Batch Type Locked Flag <code>Yes</code> or <code>No</code></td>\n<td>Enum</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>terminal.batch.period</td>\n<td>Terminal Batch Period Object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>terminal.batch.period.value</td>\n<td>Terminal Batch Period Value</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>terminal.batch.period.locked</td>\n<td>Terminal Batch Period Locked Flag <code>Yes</code> or <code>No</code></td>\n<td>Enum</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>terminal.header</td>\n<td>Terminal Header Object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>terminal.header.value</td>\n<td>Terminal Header Value</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>terminal.header.locked</td>\n<td>Terminal Header Locked Flag <code>Yes</code> or <code>No</code></td>\n<td>Enum</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>terminal.footerLine</td>\n<td>Terminal Footer Line Object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>terminal.footerLine.value</td>\n<td>Terminal Footer Line Value <code>One</code>, <code>Two</code>, <code>Three</code>, <code>Four</code></td>\n<td>Enum</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>terminal.footerLine.locked</td>\n<td>Terminal Footer Line Locked Flag <code>Yes</code> or <code>No</code></td>\n<td>Enum</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>terminal.surcharge</td>\n<td>Terminal Surcharge Object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>terminal.surcharge.feeDescription</td>\n<td>Terminal Surcharge Fee Description Object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>terminal.surcharge.feeDescription.value</td>\n<td>Terminal Surcharge Fee Description Value</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>terminal.surcharge.feeDescription.locked</td>\n<td>Terminal Surcharge Fee Description Locked Flag <code>Yes</code> or <code>No</code></td>\n<td>Enum</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>terminal.surcharge.percentage</td>\n<td>Terminal Surcharge Percentage Object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>terminal.surcharge.percentage.value</td>\n<td>Terminal Surcharge Percentage Value</td>\n<td>Number</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>terminal.surcharge.percentage.locked</td>\n<td>Terminal Surcharge Percentage Locked Flag <code>Yes</code> or <code>No</code></td>\n<td>Enum</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>terminal.surcharge.bypassOption</td>\n<td>Terminal Surcharge Bypass Option Object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>terminal.surcharge.bypassOption.value</td>\n<td>Terminal Surcharge Bypass Option Value <code>Yes</code> or <code>No</code></td>\n<td>Enum</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>terminal.surcharge.bypassOption.locked</td>\n<td>Terminal Surcharge Bypass Option Locked Flag <code>Yes</code> or <code>No</code></td>\n<td>Enum</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>terminal.surcharge.notes</td>\n<td>Terminal Surcharge Notes Object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>terminal.surcharge.notes.value</td>\n<td>Terminal Surcharge Notes Value</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>terminal.surcharge.notes.locked</td>\n<td>Terminal Surcharge Notes Locked Flag <code>Yes</code> or <code>No</code></td>\n<td>Enum</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>terminal.tip</td>\n<td>Terminal Tip Object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>terminal.tip.line</td>\n<td>Terminal Tip Line Object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>terminal.tip.line.value</td>\n<td>Terminal Tip Line Value <code>Yes</code> or <code>No</code></td>\n<td>Enum</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>terminal.tip.line.locked</td>\n<td>Terminal Tip Line Locked Flag <code>Yes</code> or <code>No</code></td>\n<td>Enum</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>terminal.tip.prompt</td>\n<td>Terminal Tip Prompt Object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>terminal.tip.prompt.value</td>\n<td>Terminal Tip Prompt Value <code>Yes</code> or <code>No</code></td>\n<td>Enum</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>terminal.tip.prompt.locked</td>\n<td>Terminal Tip Prompt Locked Flag <code>Yes</code> or <code>No</code></td>\n<td>Enum</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>terminal.tip.suggestion</td>\n<td>Terminal Tip Suggestion Object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>terminal.tip.suggestion.value</td>\n<td>Terminal Tip Suggestion Value <code>Yes</code> or <code>No</code></td>\n<td>Enum</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>terminal.tip.suggestion.locked</td>\n<td>Terminal Tip Suggestion Locked Flag <code>Yes</code> or <code>No</code></td>\n<td>Enum</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>terminal.tip.suggestion.percentages</td>\n<td>Terminal Tip Suggestion Percentages Object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>terminal.tip.suggestion.percentages.value</td>\n<td>Terminal Tip Suggestion Percentages Value</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>terminal.tip.suggestion.percentages.locked</td>\n<td>Terminal Tip Suggestion Percentages Locked Flag <code>Yes</code> or <code>No</code></td>\n<td>Enum</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>lastEquipmentUpdated</td>\n<td>Last Date Equipment Updated</td>\n<td>Datetime</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>lastAgentReview</td>\n<td>Last Date Reviewed By Agent</td>\n<td>Datetime</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"04ca6112-a84c-4bb8-b1e3-c02d207c98d8","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"f160ec72-b784-44ef-9188-587a16e22d30","id":"f160ec72-b784-44ef-9188-587a16e22d30","name":"Boarding Applications","type":"folder"}}},{"name":"List","item":[{"name":"List Boarding Applications","id":"8f4a8f3b-e3db-4b1f-887d-0735a495b637","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/boarding-application","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"f160ec72-b784-44ef-9188-587a16e22d30","id":"f160ec72-b784-44ef-9188-587a16e22d30","name":"Boarding Applications","type":"folder"}},"urlObject":{"path":["api","boarding-application"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"46397d0e-8eb4-47c1-9415-e693127938d8","name":"List Boarding Applications","originalRequest":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/boarding-application"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"items\": [\n        {\n            \"id\": 606,\n            \"processingMethod\": \"Acquiring\",\n            \"company\": {\n                \"name\": null\n            },\n            \"dba\": {\n                \"name\": null\n            },\n            \"campaign\": {\n                \"id\": 1\n            },\n            \"agent\": {\n                \"id\": 14\n            },\n            \"signature\": {\n                \"status\": \"Unsigned\"\n            },\n            \"status\": \"Cancelled\",\n            \"updatedOn\": \"2023-04-16 13:13:02\",\n            \"createdOn\": \"2023-03-16 14:57:16\"\n        },\n        {\n            \"id\": 605,\n            \"processingMethod\": \"Acquiring\",\n            \"company\": {\n                \"name\": null\n            },\n            \"dba\": {\n                \"name\": null\n            },\n            \"campaign\": {\n                \"id\": 1\n            },\n            \"agent\": {\n                \"id\": 14\n            },\n            \"signature\": {\n                \"status\": \"Unsigned\"\n            },\n            \"status\": \"Cancelled\",\n            \"updatedOn\": \"2023-04-10 13:13:02\",\n            \"createdOn\": \"2023-03-10 11:05:22\"\n        },\n        {\n            \"id\": 603,\n            \"processingMethod\": \"Acquiring\",\n            \"company\": {\n                \"name\": null\n            },\n            \"dba\": {\n                \"name\": null\n            },\n            \"campaign\": {\n                \"id\": 1\n            },\n            \"agent\": {\n                \"id\": 14\n            },\n            \"signature\": {\n                \"status\": \"Unsigned\"\n            },\n            \"status\": \"Cancelled\",\n            \"updatedOn\": \"2023-04-10 13:13:02\",\n            \"createdOn\": \"2023-03-10 10:52:25\"\n        },\n        {\n            \"id\": 601,\n            \"processingMethod\": \"Acquiring\",\n            \"company\": {\n                \"name\": null\n            },\n            \"dba\": {\n                \"name\": null\n            },\n            \"campaign\": {\n                \"id\": 1\n            },\n            \"agent\": {\n                \"id\": 14\n            },\n            \"signature\": {\n                \"status\": \"Unsigned\"\n            },\n            \"status\": \"Cancelled\",\n            \"updatedOn\": \"2023-04-10 13:13:02\",\n            \"createdOn\": \"2023-03-10 10:33:17\"\n        },\n        {\n            \"id\": 600,\n            \"processingMethod\": \"Acquiring\",\n            \"company\": {\n                \"name\": null\n            },\n            \"dba\": {\n                \"name\": null\n            },\n            \"campaign\": {\n                \"id\": 1\n            },\n            \"agent\": {\n                \"id\": 14\n            },\n            \"signature\": {\n                \"status\": \"Unsigned\"\n            },\n            \"status\": \"Cancelled\",\n            \"updatedOn\": \"2023-04-10 13:13:02\",\n            \"createdOn\": \"2023-03-10 10:29:43\"\n        },\n        {\n            \"id\": 599,\n            \"processingMethod\": \"Acquiring\",\n            \"company\": {\n                \"name\": null\n            },\n            \"dba\": {\n                \"name\": null\n            },\n            \"campaign\": {\n                \"id\": 1\n            },\n            \"agent\": {\n                \"id\": 14\n            },\n            \"signature\": {\n                \"status\": \"Unsigned\"\n            },\n            \"status\": \"Cancelled\",\n            \"updatedOn\": \"2023-04-06 13:13:02\",\n            \"createdOn\": \"2023-03-04 16:26:12\"\n        },\n        {\n            \"id\": 597,\n            \"processingMethod\": \"Acquiring\",\n            \"company\": {\n                \"name\": null\n            },\n            \"dba\": {\n                \"name\": null\n            },\n            \"campaign\": {\n                \"id\": 1\n            },\n            \"agent\": {\n                \"id\": 14\n            },\n            \"signature\": {\n                \"status\": \"Signed\"\n            },\n            \"status\": \"Cancelled\",\n            \"updatedOn\": \"2023-03-23 13:13:01\",\n            \"createdOn\": \"2023-02-20 18:15:14\"\n        },\n        {\n            \"id\": 596,\n            \"processingMethod\": \"Acquiring\",\n            \"company\": {\n                \"name\": null\n            },\n            \"dba\": {\n                \"name\": null\n            },\n            \"campaign\": {\n                \"id\": 1\n            },\n            \"agent\": {\n                \"id\": 14\n            },\n            \"signature\": {\n                \"status\": \"Unsigned\"\n            },\n            \"status\": \"Cancelled\",\n            \"updatedOn\": \"2023-03-23 13:13:01\",\n            \"createdOn\": \"2023-02-20 18:14:59\"\n        },\n        {\n            \"id\": 595,\n            \"processingMethod\": \"Acquiring\",\n            \"company\": {\n                \"name\": null\n            },\n            \"dba\": {\n                \"name\": null\n            },\n            \"campaign\": {\n                \"id\": 1\n            },\n            \"agent\": {\n                \"id\": 14\n            },\n            \"signature\": {\n                \"status\": \"Unsigned\"\n            },\n            \"status\": \"Cancelled\",\n            \"updatedOn\": \"2023-03-18 13:13:01\",\n            \"createdOn\": \"2023-02-15 10:28:59\"\n        }\n    ],\n    \"_links\": {\n        \"self\": {\n            \"href\": \"https://dashboard.dashboard.paysecureonline.com/api/boarding-application?page=1\"\n        },\n        \"first\": {\n            \"href\": \"https://dashboard.dashboard.paysecureonline.com/api/boarding-application?page=1\"\n        },\n        \"last\": {\n            \"href\": \"https://dashboard.dashboard.paysecureonline.com/api/boarding-application?page=1\"\n        },\n        \"next\": {\n            \"href\": \"https://dashboard.dashboard.paysecureonline.com/api/boarding-application?page=1\"\n        }\n    },\n    \"_meta\": {\n        \"totalCount\": 7,\n        \"pageCount\": 1,\n        \"currentPage\": 1,\n        \"perPage\": 30\n    }\n}"}],"_postman_id":"8f4a8f3b-e3db-4b1f-887d-0735a495b637"}],"id":"1679cd54-9781-427d-8d42-4ba88a0663d0","description":"<p>Use this endpoint to list all Boarding Applications that you have available.</p>\n","_postman_id":"1679cd54-9781-427d-8d42-4ba88a0663d0","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"f160ec72-b784-44ef-9188-587a16e22d30","id":"f160ec72-b784-44ef-9188-587a16e22d30","name":"Boarding Applications","type":"folder"}}},{"name":"Create","item":[{"name":"Create Boarding Application","id":"e1068d1f-7f8e-4db5-9023-6841561bed5d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"campaign\": {\n        \"id\": 206\n    },\n    \"processingMethod\": \"Acquiring\"\n}","options":{"raw":{"language":"json"}}},"url":"https://dashboard.dashboard.paysecureonline.com/api/boarding-application","description":"<p>Creating an Acquiring Boarding Application from a standard Campaign with <code>ID</code> 206 as an example.</p>\n","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"f160ec72-b784-44ef-9188-587a16e22d30","id":"f160ec72-b784-44ef-9188-587a16e22d30","name":"Boarding Applications","type":"folder"}},"urlObject":{"path":["api","boarding-application"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"8551855d-3486-4f93-94af-0340065a4d75","name":"Create Boarding Application","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"campaign\": {\n        \"id\": 206\n    },\n    \"processingMethod\": \"Acquiring\"\n}","options":{"raw":{"language":"json"}}},"url":"https://dashboard.dashboard.paysecureonline.com/api/boarding-application"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 607,\n    \"processingMethod\": \"Acquiring\",\n    \"mcc\": null,\n    \"campaign\": {\n        \"id\": 206\n    },\n    \"company\": {\n        \"name\": null,\n        \"type\": null,\n        \"federalTaxId\": null,\n        \"address\": {\n            \"street\": null,\n            \"city\": null,\n            \"zip\": null,\n            \"state\": {\n                \"id\": null\n            },\n            \"country\": {\n                \"id\": 199\n            }\n        },\n        \"founded\": null\n    },\n    \"dba\": {\n        \"sameAsCompany\": \"Yes\",\n        \"name\": null,\n        \"address\": {\n            \"street\": null,\n            \"city\": null,\n            \"zip\": null,\n            \"state\": {\n                \"id\": null\n            },\n            \"country\": {\n                \"id\": 199\n            }\n        }\n    },\n    \"website\": null,\n    \"serviceDescription\": null,\n    \"mailingAddress\": \"legal\",\n    \"businessLocation\": {\n        \"buildingType\": null,\n        \"numberOfLocations\": null,\n        \"buildingOwnership\": null,\n        \"areaZoned\": null,\n        \"squareFootage\": null\n    },\n    \"customerServiceContact\": {\n        \"phone\": null,\n        \"email\": null\n    },\n    \"corporateContact\": {\n        \"phone\": null,\n        \"fax\": null,\n        \"email\": null\n    },\n    \"bankruptcy\": {\n        \"hasBankruptcy\": null,\n        \"description\": null\n    },\n    \"principals\": [\n        {\n            \"id\": 739,\n            \"title\": null,\n            \"name\": {\n                \"first\": null,\n                \"last\": null\n            },\n            \"dayOfBirth\": null,\n            \"ssn\": null,\n            \"nationalId\": null,\n            \"nationality\": {\n                \"id\": 199\n            },\n            \"driverLicense\": {\n                \"number\": null,\n                \"expiration\": null,\n                \"state\": {\n                    \"id\": null\n                }\n            },\n            \"address\": {\n                \"street\": null,\n                \"city\": null,\n                \"zip\": null,\n                \"state\": {\n                    \"id\": null\n                },\n                \"country\": {\n                    \"id\": 199\n                }\n            },\n            \"phone\": null,\n            \"email\": null,\n            \"ownershipPercentage\": null,\n            \"isManagement\": \"Yes\"\n        }\n    ],\n    \"processing\": {\n        \"bank\": {\n            \"accountNumber\": null,\n            \"routingNumber\": null\n        },\n        \"volumes\": {\n            \"monthlyTransactionAmount\": null,\n            \"avgTransactionAmount\": null,\n            \"maxTransactionAmount\": null\n        },\n        \"sales\": {\n            \"swiped\": null,\n            \"mail\": null,\n            \"internet\": null\n        },\n        \"alreadyProcessing\": {\n            \"isProcessing\": \"No\",\n            \"processor\": null\n        },\n        \"terminated\": {\n            \"isTerminated\": null,\n            \"description\": null\n        },\n        \"customers\": {\n            \"type\": {\n                \"individual\": null,\n                \"business\": null,\n                \"government\": null\n            },\n            \"location\": {\n                \"local\": null,\n                \"national\": null,\n                \"international\": null\n            }\n        },\n        \"fulfillmentPolicy\": {\n            \"fulfillment\": null,\n            \"fulfillmentOther\": null,\n            \"delivery\": null,\n            \"deliveryOther\": null\n        },\n        \"recurringPayments\": {\n            \"hasRecurring\": \"No\",\n            \"description\": null\n        },\n        \"intendedUsage\": {\n            \"creditCards\": \"No\",\n            \"pinDebit\": \"No\",\n            \"ebt\": \"No\",\n            \"fns\": null,\n            \"notes\": null\n        },\n        \"seasonalBusiness\": {\n            \"isSeasonal\": \"No\",\n            \"months\": []\n        },\n        \"inventory\": {\n            \"onSite\": \"No\",\n            \"offSite\": \"No\",\n            \"offSiteAddress\": null,\n            \"thirdParty\": \"No\",\n            \"serviceOnly\": \"No\"\n        },\n        \"retailLocation\": null,\n        \"externalFulfillment\": \"No\",\n        \"customerCharged\": null,\n        \"equipmentUsed\": null,\n        \"advertise\": null,\n        \"refundPolicy\": null,\n        \"feeSchedule\": {\n            \"fees\": [\n                {\n                    \"id\": 19321,\n                    \"type\": {\n                        \"id\": 1\n                    },\n                    \"value\": \"1.00001\"\n                },\n                {\n                    \"id\": 19322,\n                    \"type\": {\n                        \"id\": 2\n                    },\n                    \"value\": \"0.00002\"\n                },\n                {\n                    \"id\": 19323,\n                    \"type\": {\n                        \"id\": 3\n                    },\n                    \"value\": \"0.00003\"\n                },\n                {\n                    \"id\": 19324,\n                    \"type\": {\n                        \"id\": 4\n                    },\n                    \"value\": \"0.00004\"\n                },\n                {\n                    \"id\": 19325,\n                    \"type\": {\n                        \"id\": 5\n                    },\n                    \"value\": \"0.00005\"\n                },\n                {\n                    \"id\": 19326,\n                    \"type\": {\n                        \"id\": 6\n                    },\n                    \"value\": \"0.00000\"\n                },\n                {\n                    \"id\": 19327,\n                    \"type\": {\n                        \"id\": 7\n                    },\n                    \"value\": \"0.00000\"\n                },\n                {\n                    \"id\": 19328,\n                    \"type\": {\n                        \"id\": 8\n                    },\n                    \"value\": \"0.00000\"\n                },\n                {\n                    \"id\": 19329,\n                    \"type\": {\n                        \"id\": 9\n                    },\n                    \"value\": \"0.00000\"\n                },\n                {\n                    \"id\": 19330,\n                    \"type\": {\n                        \"id\": 10\n                    },\n                    \"value\": \"0.00000\"\n                },\n                {\n                    \"id\": 19331,\n                    \"type\": {\n                        \"id\": 11\n                    },\n                    \"value\": \"0.00000\"\n                },\n                {\n                    \"id\": 19332,\n                    \"type\": {\n                        \"id\": 12\n                    },\n                    \"value\": \"0.00000\"\n                },\n                {\n                    \"id\": 19333,\n                    \"type\": {\n                        \"id\": 13\n                    },\n                    \"value\": \"0.00000\"\n                },\n                {\n                    \"id\": 19334,\n                    \"type\": {\n                        \"id\": 14\n                    },\n                    \"value\": \"0.00000\"\n                },\n                {\n                    \"id\": 19335,\n                    \"type\": {\n                        \"id\": 15\n                    },\n                    \"value\": \"0.00000\"\n                },\n                {\n                    \"id\": 19336,\n                    \"type\": {\n                        \"id\": 16\n                    },\n                    \"value\": \"0.00000\"\n                },\n                {\n                    \"id\": 19337,\n                    \"type\": {\n                        \"id\": 17\n                    },\n                    \"value\": \"0.00000\"\n                },\n                {\n                    \"id\": 19338,\n                    \"type\": {\n                        \"id\": 18\n                    },\n                    \"value\": \"0.00000\"\n                },\n                {\n                    \"id\": 19339,\n                    \"type\": {\n                        \"id\": 18\n                    },\n                    \"value\": \"0.00000\"\n                },\n                {\n                    \"id\": 19340,\n                    \"type\": {\n                        \"id\": 18\n                    },\n                    \"value\": \"0.00000\"\n                },\n                {\n                    \"id\": 19341,\n                    \"type\": {\n                        \"id\": 19\n                    },\n                    \"value\": \"0.00000\"\n                },\n                {\n                    \"id\": 19342,\n                    \"type\": {\n                        \"id\": 20\n                    },\n                    \"value\": \"0.00000\"\n                },\n                {\n                    \"id\": 19343,\n                    \"type\": {\n                        \"id\": 21\n                    },\n                    \"value\": \"0.00000\"\n                },\n                {\n                    \"id\": 19344,\n                    \"type\": {\n                        \"id\": 22\n                    },\n                    \"value\": \"0.00000\"\n                }\n            ],\n            \"note\": null\n        }\n    },\n    \"ach\": null,\n    \"documents\": [],\n    \"agent\": {\n        \"id\": 14\n    },\n    \"signature\": {\n        \"status\": \"Unsigned\",\n        \"via\": null\n    },\n    \"auto\": {\n        \"sign\": \"Yes\",\n        \"underwriting\": \"No\"\n    },\n    \"status\": \"New\",\n    \"updatedOn\": \"2023-05-10 11:52:41\",\n    \"createdOn\": \"2023-05-10 11:52:40\"\n}"}],"_postman_id":"e1068d1f-7f8e-4db5-9023-6841561bed5d"}],"id":"6f7f53d4-2e74-441e-b9b7-12d422843151","description":"<p>An application needs to be created first before proceeding to updating with the necessary fields. We have 3 types of Boarding Applications based on the processing type that the merchant is applying for.</p>\n<ol>\n<li>An Acquiring Boarding Application</li>\n<li>An ACH Boarding Application</li>\n<li>A hybrid, Acquiring and ACH Boarding Application.</li>\n</ol>\n<blockquote>\n<p>Keep in mind that the number of required fields are dependent on the <code>processingMethod</code>. For example if the Boarding Application is for Acquiring there is no need to send ACH section. Also for an Acquiring Boarding Application based on the <code>processing.sales</code> values we might require additional fields if the merchant has 70% or more <code>processing.sales.mail</code> + <code>processing.sales.internet</code>.</p>\n</blockquote>\n","_postman_id":"6f7f53d4-2e74-441e-b9b7-12d422843151","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"f160ec72-b784-44ef-9188-587a16e22d30","id":"f160ec72-b784-44ef-9188-587a16e22d30","name":"Boarding Applications","type":"folder"}}},{"name":"Delete","item":[{"name":"Delete Boarding Application","id":"e03136d5-4bc8-4f3e-a7a3-90346e575a71","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/boarding-application/<id>","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"f160ec72-b784-44ef-9188-587a16e22d30","id":"f160ec72-b784-44ef-9188-587a16e22d30","name":"Boarding Applications","type":"folder"}},"urlObject":{"path":["api","boarding-application","<id>"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"72ec3d8c-4151-48c7-bf27-112d28396a1d","name":"Delete Boarding Application","originalRequest":{"method":"DELETE","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/boarding-application/599"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"e03136d5-4bc8-4f3e-a7a3-90346e575a71"}],"id":"39ec8f6e-e5cb-4804-af67-c6193b893875","description":"<p>You can use this endpoint to Delete a boarding application.</p>\n<blockquote>\n<p><strong>NOTE</strong> This functionality is permission based, and in some case we might return an exception</p>\n</blockquote>\n","_postman_id":"39ec8f6e-e5cb-4804-af67-c6193b893875","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"f160ec72-b784-44ef-9188-587a16e22d30","id":"f160ec72-b784-44ef-9188-587a16e22d30","name":"Boarding Applications","type":"folder"}}},{"name":"View","item":[{"name":"View Boarding Application","id":"6440fefb-fd87-4cbf-a8e0-0b0c36d1c457","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/boarding-application/<id>","description":"<p>You can utilize this endpoint for viewing the full Boarding Application</p>\n<p>View Boarding Application with <code>id</code> 607</p>\n","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"f160ec72-b784-44ef-9188-587a16e22d30","id":"f160ec72-b784-44ef-9188-587a16e22d30","name":"Boarding Applications","type":"folder"}},"urlObject":{"path":["api","boarding-application","<id>"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"33010733-03e0-4575-9468-d17f2a87ffe7","name":"View Boarding Application","originalRequest":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/boarding-application/607"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 607,\n    \"processingMethod\": \"Acquiring\",\n    \"mcc\": null,\n    \"campaign\": {\n        \"id\": 206\n    },\n    \"company\": {\n        \"name\": null,\n        \"type\": null,\n        \"federalTaxId\": null,\n        \"address\": {\n            \"street\": null,\n            \"city\": null,\n            \"zip\": null,\n            \"state\": {\n                \"id\": null\n            },\n            \"country\": {\n                \"id\": 199\n            }\n        },\n        \"founded\": null\n    },\n    \"dba\": {\n        \"sameAsCompany\": \"Yes\",\n        \"name\": null,\n        \"address\": {\n            \"street\": null,\n            \"city\": null,\n            \"zip\": null,\n            \"state\": {\n                \"id\": null\n            },\n            \"country\": {\n                \"id\": 199\n            }\n        }\n    },\n    \"website\": null,\n    \"serviceDescription\": null,\n    \"mailingAddress\": \"legal\",\n    \"businessLocation\": {\n        \"buildingType\": null,\n        \"numberOfLocations\": null,\n        \"buildingOwnership\": null,\n        \"areaZoned\": null,\n        \"squareFootage\": null\n    },\n    \"customerServiceContact\": {\n        \"phone\": null,\n        \"email\": null\n    },\n    \"corporateContact\": {\n        \"phone\": null,\n        \"fax\": null,\n        \"email\": null\n    },\n    \"bankruptcy\": {\n        \"hasBankruptcy\": null,\n        \"description\": null\n    },\n    \"principals\": [\n        {\n            \"id\": 739,\n            \"title\": null,\n            \"name\": {\n                \"first\": null,\n                \"last\": null\n            },\n            \"dayOfBirth\": null,\n            \"ssn\": null,\n            \"nationalId\": null,\n            \"nationality\": {\n                \"id\": 199\n            },\n            \"driverLicense\": {\n                \"number\": null,\n                \"expiration\": null,\n                \"state\": {\n                    \"id\": null\n                }\n            },\n            \"address\": {\n                \"street\": null,\n                \"city\": null,\n                \"zip\": null,\n                \"state\": {\n                    \"id\": null\n                },\n                \"country\": {\n                    \"id\": 199\n                }\n            },\n            \"phone\": null,\n            \"email\": null,\n            \"ownershipPercentage\": null,\n            \"isManagement\": \"Yes\"\n        }\n    ],\n    \"processing\": {\n        \"bank\": {\n            \"accountNumber\": null,\n            \"routingNumber\": null\n        },\n        \"volumes\": {\n            \"monthlyTransactionAmount\": null,\n            \"avgTransactionAmount\": null,\n            \"maxTransactionAmount\": null\n        },\n        \"sales\": {\n            \"swiped\": null,\n            \"mail\": null,\n            \"internet\": null\n        },\n        \"alreadyProcessing\": {\n            \"isProcessing\": \"No\",\n            \"processor\": null\n        },\n        \"terminated\": {\n            \"isTerminated\": null,\n            \"description\": null\n        },\n        \"customers\": {\n            \"type\": {\n                \"individual\": null,\n                \"business\": null,\n                \"government\": null\n            },\n            \"location\": {\n                \"local\": null,\n                \"national\": null,\n                \"international\": null\n            }\n        },\n        \"fulfillmentPolicy\": {\n            \"fulfillment\": null,\n            \"fulfillmentOther\": null,\n            \"delivery\": null,\n            \"deliveryOther\": null\n        },\n        \"recurringPayments\": {\n            \"hasRecurring\": \"No\",\n            \"description\": null\n        },\n        \"intendedUsage\": {\n            \"creditCards\": \"No\",\n            \"pinDebit\": \"No\",\n            \"ebt\": \"No\",\n            \"fns\": null,\n            \"notes\": null\n        },\n        \"seasonalBusiness\": {\n            \"isSeasonal\": \"No\",\n            \"months\": []\n        },\n        \"inventory\": {\n            \"onSite\": \"No\",\n            \"offSite\": \"No\",\n            \"offSiteAddress\": null,\n            \"thirdParty\": \"No\",\n            \"serviceOnly\": \"No\"\n        },\n        \"retailLocation\": null,\n        \"externalFulfillment\": \"No\",\n        \"customerCharged\": null,\n        \"equipmentUsed\": null,\n        \"advertise\": null,\n        \"refundPolicy\": null,\n        \"feeSchedule\": {\n            \"fees\": [\n                {\n                    \"id\": 19321,\n                    \"type\": {\n                        \"id\": 1\n                    },\n                    \"value\": \"1.00001\"\n                },\n                {\n                    \"id\": 19322,\n                    \"type\": {\n                        \"id\": 2\n                    },\n                    \"value\": \"0.00002\"\n                },\n                {\n                    \"id\": 19323,\n                    \"type\": {\n                        \"id\": 3\n                    },\n                    \"value\": \"0.00003\"\n                },\n                {\n                    \"id\": 19324,\n                    \"type\": {\n                        \"id\": 4\n                    },\n                    \"value\": \"0.00004\"\n                },\n                {\n                    \"id\": 19325,\n                    \"type\": {\n                        \"id\": 5\n                    },\n                    \"value\": \"0.00005\"\n                },\n                {\n                    \"id\": 19326,\n                    \"type\": {\n                        \"id\": 6\n                    },\n                    \"value\": \"0.00000\"\n                },\n                {\n                    \"id\": 19327,\n                    \"type\": {\n                        \"id\": 7\n                    },\n                    \"value\": \"0.00000\"\n                },\n                {\n                    \"id\": 19328,\n                    \"type\": {\n                        \"id\": 8\n                    },\n                    \"value\": \"0.00000\"\n                },\n                {\n                    \"id\": 19329,\n                    \"type\": {\n                        \"id\": 9\n                    },\n                    \"value\": \"0.00000\"\n                },\n                {\n                    \"id\": 19330,\n                    \"type\": {\n                        \"id\": 10\n                    },\n                    \"value\": \"0.00000\"\n                },\n                {\n                    \"id\": 19331,\n                    \"type\": {\n                        \"id\": 11\n                    },\n                    \"value\": \"0.00000\"\n                },\n                {\n                    \"id\": 19332,\n                    \"type\": {\n                        \"id\": 12\n                    },\n                    \"value\": \"0.00000\"\n                },\n                {\n                    \"id\": 19333,\n                    \"type\": {\n                        \"id\": 13\n                    },\n                    \"value\": \"0.00000\"\n                },\n                {\n                    \"id\": 19334,\n                    \"type\": {\n                        \"id\": 14\n                    },\n                    \"value\": \"0.00000\"\n                },\n                {\n                    \"id\": 19335,\n                    \"type\": {\n                        \"id\": 15\n                    },\n                    \"value\": \"0.00000\"\n                },\n                {\n                    \"id\": 19336,\n                    \"type\": {\n                        \"id\": 16\n                    },\n                    \"value\": \"0.00000\"\n                },\n                {\n                    \"id\": 19337,\n                    \"type\": {\n                        \"id\": 17\n                    },\n                    \"value\": \"0.00000\"\n                },\n                {\n                    \"id\": 19338,\n                    \"type\": {\n                        \"id\": 18\n                    },\n                    \"value\": \"0.00000\"\n                },\n                {\n                    \"id\": 19339,\n                    \"type\": {\n                        \"id\": 18\n                    },\n                    \"value\": \"0.00000\"\n                },\n                {\n                    \"id\": 19340,\n                    \"type\": {\n                        \"id\": 18\n                    },\n                    \"value\": \"0.00000\"\n                },\n                {\n                    \"id\": 19341,\n                    \"type\": {\n                        \"id\": 19\n                    },\n                    \"value\": \"0.00000\"\n                },\n                {\n                    \"id\": 19342,\n                    \"type\": {\n                        \"id\": 20\n                    },\n                    \"value\": \"0.00000\"\n                },\n                {\n                    \"id\": 19343,\n                    \"type\": {\n                        \"id\": 21\n                    },\n                    \"value\": \"0.00000\"\n                },\n                {\n                    \"id\": 19344,\n                    \"type\": {\n                        \"id\": 22\n                    },\n                    \"value\": \"0.00000\"\n                }\n            ],\n            \"note\": null\n        }\n    },\n    \"ach\": null,\n    \"documents\": [],\n    \"agent\": {\n        \"id\": 14\n    },\n    \"signature\": {\n        \"status\": \"Unsigned\",\n        \"via\": null\n    },\n    \"auto\": {\n        \"sign\": \"Yes\",\n        \"underwriting\": \"No\"\n    },\n    \"status\": \"New\",\n    \"updatedOn\": \"2023-05-10 11:52:41\",\n    \"createdOn\": \"2023-05-10 11:52:40\"\n}"}],"_postman_id":"6440fefb-fd87-4cbf-a8e0-0b0c36d1c457"}],"id":"2c454cbb-42be-4a8a-bc3a-014a57c37cf8","description":"<p>You can either view the full Boarding Application or only a specific section.</p>\n<blockquote>\n<p>Keep in mind that based on the <code>processingMethod</code> the Processing/ACH section can be null. </p>\n</blockquote>\n<p>The sections of the Boarding Application that are available to be viewed/updated separately are as follows:</p>\n<ul>\n<li><strong>Principals</strong></li>\n<li><strong>Processing</strong></li>\n<li><strong>ACH</strong></li>\n<li><strong>Documents</strong></li>\n<li><strong>Fees</strong></li>\n</ul>\n<p>Each section and all endpoints associated with it are described in detail in our developers documentation</p>\n","_postman_id":"2c454cbb-42be-4a8a-bc3a-014a57c37cf8","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"f160ec72-b784-44ef-9188-587a16e22d30","id":"f160ec72-b784-44ef-9188-587a16e22d30","name":"Boarding Applications","type":"folder"}}},{"name":"Update","item":[{"name":"Update Boarding Application","id":"a0efa9af-942a-4931-9810-00e3ea9577cb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"company\": {\n        \"name\":\"Demo Company 2\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://dashboard.dashboard.paysecureonline.com/api/boarding-application/608","description":"<p>In the below example, we are updating only the <code>company.name</code> of the Boarding Application.</p>\n","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"f160ec72-b784-44ef-9188-587a16e22d30","id":"f160ec72-b784-44ef-9188-587a16e22d30","name":"Boarding Applications","type":"folder"}},"urlObject":{"path":["api","boarding-application","608"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"b9533b22-28b3-4d99-a2ee-8b6f67519f01","name":"Update Boarding Application","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"company\": {\n        \"name\":\"Demo Company 2\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://dashboard.dashboard.paysecureonline.com/api/boarding-application/608"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 608,\n    \"processingMethod\": \"Acquiring\",\n    \"mcc\": null,\n    \"campaign\": {\n        \"id\": 206\n    },\n    \"company\": {\n        \"name\": \"Demo Company 2\",\n        \"type\": null,\n        \"federalTaxId\": null,\n        \"address\": {\n            \"street\": null,\n            \"city\": null,\n            \"zip\": null,\n            \"state\": {\n                \"id\": null\n            },\n            \"country\": {\n                \"id\": 199\n            }\n        },\n        \"founded\": null\n    },\n    \"dba\": {\n        \"sameAsCompany\": \"Yes\",\n        \"name\": null,\n        \"address\": {\n            \"street\": null,\n            \"city\": null,\n            \"zip\": null,\n            \"state\": {\n                \"id\": null\n            },\n            \"country\": {\n                \"id\": 199\n            }\n        }\n    },\n    \"website\": null,\n    \"serviceDescription\": null,\n    \"mailingAddress\": \"legal\",\n    \"businessLocation\": {\n        \"buildingType\": null,\n        \"numberOfLocations\": null,\n        \"buildingOwnership\": null,\n        \"areaZoned\": null,\n        \"squareFootage\": null\n    },\n    \"customerServiceContact\": {\n        \"phone\": null,\n        \"email\": null\n    },\n    \"corporateContact\": {\n        \"phone\": null,\n        \"fax\": null,\n        \"email\": null\n    },\n    \"bankruptcy\": {\n        \"hasBankruptcy\": null,\n        \"description\": null\n    },\n    \"principals\": [\n        {\n            \"id\": 740,\n            \"title\": null,\n            \"name\": {\n                \"first\": null,\n                \"last\": null\n            },\n            \"dayOfBirth\": null,\n            \"ssn\": null,\n            \"nationalId\": null,\n            \"nationality\": {\n                \"id\": 199\n            },\n            \"driverLicense\": {\n                \"number\": null,\n                \"expiration\": null,\n                \"state\": {\n                    \"id\": null\n                }\n            },\n            \"address\": {\n                \"street\": null,\n                \"city\": null,\n                \"zip\": null,\n                \"state\": {\n                    \"id\": null\n                },\n                \"country\": {\n                    \"id\": 199\n                }\n            },\n            \"phone\": null,\n            \"email\": null,\n            \"ownershipPercentage\": null,\n            \"isManagement\": \"Yes\"\n        }\n    ],\n    \"processing\": {\n        \"bank\": {\n            \"accountNumber\": null,\n            \"routingNumber\": null\n        },\n        \"volumes\": {\n            \"monthlyTransactionAmount\": null,\n            \"avgTransactionAmount\": null,\n            \"maxTransactionAmount\": null\n        },\n        \"sales\": {\n            \"swiped\": null,\n            \"mail\": null,\n            \"internet\": null\n        },\n        \"alreadyProcessing\": {\n            \"isProcessing\": \"No\",\n            \"processor\": null\n        },\n        \"terminated\": {\n            \"isTerminated\": null,\n            \"description\": null\n        },\n        \"customers\": {\n            \"type\": {\n                \"individual\": null,\n                \"business\": null,\n                \"government\": null\n            },\n            \"location\": {\n                \"local\": null,\n                \"national\": null,\n                \"international\": null\n            }\n        },\n        \"fulfillmentPolicy\": {\n            \"fulfillment\": null,\n            \"fulfillmentOther\": null,\n            \"delivery\": null,\n            \"deliveryOther\": null\n        },\n        \"recurringPayments\": {\n            \"hasRecurring\": \"No\",\n            \"description\": null\n        },\n        \"intendedUsage\": {\n            \"creditCards\": \"No\",\n            \"pinDebit\": \"No\",\n            \"ebt\": \"No\",\n            \"fns\": null,\n            \"notes\": null\n        },\n        \"seasonalBusiness\": {\n            \"isSeasonal\": \"No\",\n            \"months\": []\n        },\n        \"inventory\": {\n            \"onSite\": \"No\",\n            \"offSite\": \"No\",\n            \"offSiteAddress\": null,\n            \"thirdParty\": \"No\",\n            \"serviceOnly\": \"No\"\n        },\n        \"retailLocation\": null,\n        \"externalFulfillment\": \"No\",\n        \"customerCharged\": null,\n        \"equipmentUsed\": null,\n        \"advertise\": null,\n        \"refundPolicy\": null,\n        \"feeSchedule\": {\n            \"fees\": [\n                {\n                    \"id\": 19357,\n                    \"type\": {\n                        \"id\": 1\n                    },\n                    \"value\": \"1.00001\"\n                },\n                {\n                    \"id\": 19358,\n                    \"type\": {\n                        \"id\": 2\n                    },\n                    \"value\": \"0.00002\"\n                },\n                {\n                    \"id\": 19359,\n                    \"type\": {\n                        \"id\": 3\n                    },\n                    \"value\": \"0.00003\"\n                },\n                {\n                    \"id\": 19360,\n                    \"type\": {\n                        \"id\": 4\n                    },\n                    \"value\": \"0.00004\"\n                },\n                {\n                    \"id\": 19361,\n                    \"type\": {\n                        \"id\": 5\n                    },\n                    \"value\": \"0.00005\"\n                },\n                {\n                    \"id\": 19362,\n                    \"type\": {\n                        \"id\": 6\n                    },\n                    \"value\": \"0.00000\"\n                },\n                {\n                    \"id\": 19363,\n                    \"type\": {\n                        \"id\": 7\n                    },\n                    \"value\": \"0.00000\"\n                },\n                {\n                    \"id\": 19364,\n                    \"type\": {\n                        \"id\": 8\n                    },\n                    \"value\": \"0.00000\"\n                },\n                {\n                    \"id\": 19365,\n                    \"type\": {\n                        \"id\": 9\n                    },\n                    \"value\": \"0.00000\"\n                },\n                {\n                    \"id\": 19366,\n                    \"type\": {\n                        \"id\": 10\n                    },\n                    \"value\": \"0.00000\"\n                },\n                {\n                    \"id\": 19367,\n                    \"type\": {\n                        \"id\": 11\n                    },\n                    \"value\": \"0.00000\"\n                },\n                {\n                    \"id\": 19368,\n                    \"type\": {\n                        \"id\": 12\n                    },\n                    \"value\": \"0.00000\"\n                },\n                {\n                    \"id\": 19369,\n                    \"type\": {\n                        \"id\": 13\n                    },\n                    \"value\": \"0.00000\"\n                },\n                {\n                    \"id\": 19370,\n                    \"type\": {\n                        \"id\": 14\n                    },\n                    \"value\": \"0.00000\"\n                },\n                {\n                    \"id\": 19371,\n                    \"type\": {\n                        \"id\": 15\n                    },\n                    \"value\": \"0.00000\"\n                },\n                {\n                    \"id\": 19372,\n                    \"type\": {\n                        \"id\": 16\n                    },\n                    \"value\": \"0.00000\"\n                },\n                {\n                    \"id\": 19373,\n                    \"type\": {\n                        \"id\": 17\n                    },\n                    \"value\": \"0.00000\"\n                },\n                {\n                    \"id\": 19374,\n                    \"type\": {\n                        \"id\": 18\n                    },\n                    \"value\": \"0.00000\"\n                },\n                {\n                    \"id\": 19375,\n                    \"type\": {\n                        \"id\": 18\n                    },\n                    \"value\": \"0.00000\"\n                },\n                {\n                    \"id\": 19376,\n                    \"type\": {\n                        \"id\": 18\n                    },\n                    \"value\": \"0.00000\"\n                },\n                {\n                    \"id\": 19377,\n                    \"type\": {\n                        \"id\": 19\n                    },\n                    \"value\": \"0.00000\"\n                },\n                {\n                    \"id\": 19378,\n                    \"type\": {\n                        \"id\": 20\n                    },\n                    \"value\": \"0.00000\"\n                },\n                {\n                    \"id\": 19379,\n                    \"type\": {\n                        \"id\": 21\n                    },\n                    \"value\": \"0.00000\"\n                },\n                {\n                    \"id\": 19380,\n                    \"type\": {\n                        \"id\": 22\n                    },\n                    \"value\": \"0.00000\"\n                }\n            ],\n            \"note\": null\n        }\n    },\n    \"ach\": null,\n    \"documents\": [],\n    \"agent\": {\n        \"id\": 14\n    },\n    \"signature\": {\n        \"status\": \"Unsigned\",\n        \"via\": null\n    },\n    \"auto\": {\n        \"sign\": \"Yes\",\n        \"underwriting\": \"No\"\n    },\n    \"status\": \"New\",\n    \"updatedOn\": \"2023-05-10 11:59:19\",\n    \"createdOn\": \"2023-05-10 11:59:19\""}],"_postman_id":"a0efa9af-942a-4931-9810-00e3ea9577cb"}],"id":"a3747021-784c-4d0e-a94f-23538db1304e","description":"<p>For testing purposes, please use our sandbox endpoint below.</p>\n","_postman_id":"a3747021-784c-4d0e-a94f-23538db1304e","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"f160ec72-b784-44ef-9188-587a16e22d30","id":"f160ec72-b784-44ef-9188-587a16e22d30","name":"Boarding Applications","type":"folder"}}},{"name":"Principals","item":[{"name":"List Principals","id":"47b92ae7-c588-47e7-bcf2-8578e2a4895b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/boarding-application/608/principals","description":"<p>List all Principals for Boarding Application 608.</p>\n","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"f160ec72-b784-44ef-9188-587a16e22d30","id":"f160ec72-b784-44ef-9188-587a16e22d30","name":"Boarding Applications","type":"folder"}},"urlObject":{"path":["api","boarding-application","608","principals"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"6b80b86b-af51-4c90-bdbf-1a1f9e7837f5","name":"List Principals","originalRequest":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/boarding-application/608/principals"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"items\": [\n        {\n            \"id\": 740,\n            \"title\": null,\n            \"name\": {\n                \"first\": null,\n                \"last\": null\n            },\n            \"dayOfBirth\": null,\n            \"ssn\": null,\n            \"nationalId\": null,\n            \"nationality\": {\n                \"id\": 199\n            },\n            \"driverLicense\": {\n                \"number\": null,\n                \"expiration\": null,\n                \"state\": {\n                    \"id\": null\n                }\n            },\n            \"address\": {\n                \"street\": null,\n                \"city\": null,\n                \"zip\": null,\n                \"state\": {\n                    \"id\": null\n                },\n                \"country\": {\n                    \"id\": 199\n                }\n            },\n            \"phone\": null,\n            \"email\": null,\n            \"ownershipPercentage\": null,\n            \"isManagement\": \"Yes\"\n        }\n    ],\n    \"_links\": {\n        \"self\": {\n            \"href\": \"https://dashboard.dashboard.paysecureonline.com//api/boarding-application/608/principals?page=1\"\n        },\n        \"first\": {\n            \"href\": \"https://dashboard.dashboard.paysecureonline.com//api/boarding-application/608/principals?page=1\"\n        },\n        \"last\": {\n            \"href\": \"https://dashboard.dashboard.paysecureonline.com//api/boarding-application/608/principals?page=1\"\n        }\n    },\n    \"_meta\": {\n        \"totalCount\": 1,\n        \"pageCount\": 1,\n        \"currentPage\": 1,\n        \"perPage\": 30\n    }\n}"}],"_postman_id":"47b92ae7-c588-47e7-bcf2-8578e2a4895b"},{"name":"Create Principal","id":"26863f15-bf52-4b3b-b0aa-f83899ffa0fc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"title\": \"CEO\",\n    \"name\": {\n        \"first\": \"Robert\",\n        \"last\": \"Smith\"\n    },\n    \"dayOfBirth\": \"1986-10-18\",\n    \"ssn\": null,\n    \"nationalId\": null,\n    \"nationality\": {\n        \"id\": 199\n    },\n    \"driverLicense\": {\n        \"number\": null,\n        \"expiration\": null,\n        \"state\": {\n            \"id\": 5\n        }\n    },\n    \"address\": {\n        \"street\": \"123 Str Name\",\n        \"city\": \"Calabasas\",\n        \"zip\": \"91302\",\n        \"state\": {\n            \"id\": 5\n        },\n        \"country\": {\n            \"id\": 199\n        }\n    },\n    \"phone\": null,\n    \"email\": null,\n    \"ownershipPercentage\": 50,\n    \"isManagement\": \"Yes\"\n}","options":{"raw":{"language":"json"}}},"url":"https://dashboard.dashboard.paysecureonline.com/api/boarding-application/608/principal","description":"<p>Add a second Principal to Boarding Application 608</p>\n","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"f160ec72-b784-44ef-9188-587a16e22d30","id":"f160ec72-b784-44ef-9188-587a16e22d30","name":"Boarding Applications","type":"folder"}},"urlObject":{"path":["api","boarding-application","608","principal"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"33e63d6d-73a7-4618-8f01-874e2e4e5389","name":"Create Principal","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"title\": \"CEO\",\n    \"name\": {\n        \"first\": \"Robert\",\n        \"last\": \"Smith\"\n    },\n    \"dayOfBirth\": \"1986-10-18\",\n    \"ssn\": null,\n    \"nationalId\": null,\n    \"nationality\": {\n        \"id\": 199\n    },\n    \"driverLicense\": {\n        \"number\": null,\n        \"expiration\": null,\n        \"state\": {\n            \"id\": 5\n        }\n    },\n    \"address\": {\n        \"street\": \"123 Str Name\",\n        \"city\": \"Calabasas\",\n        \"zip\": \"91302\",\n        \"state\": {\n            \"id\": 5\n        },\n        \"country\": {\n            \"id\": 199\n        }\n    },\n    \"phone\": null,\n    \"email\": null,\n    \"ownershipPercentage\": 50,\n    \"isManagement\": \"Yes\"\n}","options":{"raw":{"language":"json"}}},"url":"https://dashboard.dashboard.paysecureonline.com/api/boarding-application/608/principal"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 741,\n    \"title\": \"CEO\",\n    \"name\": {\n        \"first\": \"Robert\",\n        \"last\": \"Smith\"\n    },\n    \"dayOfBirth\": \"1986-10-18\",\n    \"ssn\": null,\n    \"nationalId\": null,\n    \"nationality\": {\n        \"id\": 199\n    },\n    \"driverLicense\": {\n        \"number\": null,\n        \"expiration\": null,\n        \"state\": {\n            \"id\": 5\n        }\n    },\n    \"address\": {\n        \"street\": \"123 Str Name\",\n        \"city\": \"Calabasas\",\n        \"zip\": \"91302\",\n        \"state\": {\n            \"id\": 5\n        },\n        \"country\": {\n            \"id\": null\n        }\n    },\n    \"phone\": null,\n    \"email\": null,\n    \"ownershipPercentage\": 50,\n    \"isManagement\": \"Yes\"\n}"}],"_postman_id":"26863f15-bf52-4b3b-b0aa-f83899ffa0fc"},{"name":"Update a Single Principal","id":"3c8f330b-df1b-4553-9d62-5b03c2dac6a1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"dayOfBirth\": \"1986-10-21\"\n}","options":{"raw":{"language":"json"}}},"url":"https://dashboard.dashboard.paysecureonline.com/api/boarding-application/607/principal/741","description":"<p>You can utilize this endpoint to update information on a single principal in the Principals section of the Boarding Application.</p>\n<p>Updating the <code>dayOfBirth</code> for Principal with <code>id</code> 741 for Boarding Application 607.</p>\n<blockquote>\n<p><strong>NOTE</strong> Only send the parameters that you want to update, there is no need to send a full request with all the parameters for the Principal.</p>\n</blockquote>\n","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"f160ec72-b784-44ef-9188-587a16e22d30","id":"f160ec72-b784-44ef-9188-587a16e22d30","name":"Boarding Applications","type":"folder"}},"urlObject":{"path":["api","boarding-application","607","principal","741"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"c5ca1ae9-7d11-4d05-98bb-cc03057608fa","name":"Update Principals","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"dayOfBirth\": \"1986-10-21\"\n}","options":{"raw":{"language":"json"}}},"url":"https://dashboard.dashboard.paysecureonline.com/api/boarding-application/607/principal/741"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 741,\n        \"title\": \"CEO\",\n        \"name\": {\n            \"first\": \"Robert\",\n            \"last\": \"Smith\"\n        },\n        \"dayOfBirth\": \"1986-10-21\",\n        \"ssn\": null,\n        \"nationalId\": null,\n        \"nationality\": {\n            \"id\": 199\n        },\n        \"driverLicense\": {\n            \"number\": null,\n            \"expiration\": null,\n            \"state\": {\n                \"id\": 5\n            }\n        },\n        \"address\": {\n            \"street\": \"123 Str Name\",\n            \"city\": \"Calabasas\",\n            \"zip\": \"91302\",\n            \"state\": {\n                \"id\": 5\n            },\n            \"country\": {\n                \"id\": 199\n            }\n        },\n        \"phone\": null,\n        \"email\": null,\n        \"ownershipPercentage\": 50,\n        \"isManagement\": \"No\"\n    }\n]"}],"_postman_id":"3c8f330b-df1b-4553-9d62-5b03c2dac6a1"},{"name":"Mass update Principals","id":"82ddeb6e-695c-4172-b840-93d67b62f335","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"[\n    {\n        \"id\": 744,\n        \"dayOfBirth\": \"1986-10-21\"\n    }\n]","options":{"raw":{"language":"json"}}},"url":"https://dashboard.dashboard.paysecureonline.com/api/boarding-application/608/principals","description":"<p>You can utilize this endpoint to mass add, update or delete principal information.</p>\n<blockquote>\n<p><strong>IMPORTANT</strong> Only send the parameters that you want to update for a specific principal, there is no need to send a full request with all the parameters for the Principal. However, if you have more than one principal on the Boarding Application you will need to provide all the Principal id's even if there are no changes to them or else those id's that are not provided in the request will be deleted.</p>\n</blockquote>\n","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"f160ec72-b784-44ef-9188-587a16e22d30","id":"f160ec72-b784-44ef-9188-587a16e22d30","name":"Boarding Applications","type":"folder"}},"urlObject":{"path":["api","boarding-application","608","principals"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"9a0a3c91-1a26-4cf3-b2f0-a2f0ca195dde","name":"Update Principals","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"[\n    {\n        \"id\": 744,\n        \"dayOfBirth\": \"1986-10-21\"\n    },\n    {\n        \"id\": 745\n    }\n]","options":{"raw":{"language":"json"}}},"url":"https://dashboard.dashboard.paysecureonline.com/api/boarding-application/608/principals"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 744,\n        \"title\": \"CEO\",\n        \"name\": {\n            \"first\": \"Robert\",\n            \"last\": \"Smith\"\n        },\n        \"dayOfBirth\": \"1986-10-21\",\n        \"ssn\": null,\n        \"nationalId\": null,\n        \"nationality\": {\n            \"id\": 199\n        },\n        \"driverLicense\": {\n            \"number\": null,\n            \"expiration\": null,\n            \"state\": {\n                \"id\": 5\n            }\n        },\n        \"address\": {\n            \"street\": \"123 Str Name\",\n            \"city\": \"Calabasas\",\n            \"zip\": \"91302\",\n            \"state\": {\n                \"id\": 5\n            },\n            \"country\": {\n                \"id\": 199\n            }\n        },\n        \"phone\": null,\n        \"email\": null,\n        \"ownershipPercentage\": 50,\n        \"isManagement\": \"No\"\n    },\n    {\n        \"id\": 745,\n        \"title\": \"CEO\",\n        \"name\": {\n            \"first\": \"John\",\n            \"last\": \"Wick\"\n        },\n        \"dayOfBirth\": \"1988-10-21\",\n        \"ssn\": null,\n        \"nationalId\": null,\n        \"nationality\": {\n            \"id\": 199\n        },\n        \"driverLicense\": {\n            \"number\": null,\n            \"expiration\": null,\n            \"state\": {\n                \"id\": 5\n            }\n        },\n        \"address\": {\n            \"street\": \"123 Str Name\",\n            \"city\": \"Calabasas\",\n            \"zip\": \"91302\",\n            \"state\": {\n                \"id\": 5\n            },\n            \"country\": {\n                \"id\": 199\n            }\n        },\n        \"phone\": null,\n        \"email\": null,\n        \"ownershipPercentage\": 50,\n        \"isManagement\": \"No\"\n    }\n]"}],"_postman_id":"82ddeb6e-695c-4172-b840-93d67b62f335"},{"name":"Delete Principal","id":"314a6190-91ff-4ae9-931f-de63425b34d4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://dashboard.dashboard.paysecureonline.com/api/boarding-application/607/principal/741","description":"<p>Delete Principal with <code>id</code> 741 for Boarding Application 607.</p>\n","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"f160ec72-b784-44ef-9188-587a16e22d30","id":"f160ec72-b784-44ef-9188-587a16e22d30","name":"Boarding Applications","type":"folder"}},"urlObject":{"path":["api","boarding-application","607","principal","741"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"f436a505-c6d7-4c21-8eda-9d52ee824a04","name":"Delete Principal","originalRequest":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://dashboard.dashboard.paysecureonline.com/api/boarding-application/607/principal/741"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"true"}],"_postman_id":"314a6190-91ff-4ae9-931f-de63425b34d4"}],"id":"203f9b7e-58d2-43a6-a214-4cc15e41031c","description":"<p>You can use this endpoint to execute all necessary operations in the Principals section of the Boarding Application. You can do the following:</p>\n<ul>\n<li>List all Principals</li>\n<li>Create an additional Principal</li>\n<li>Update Principal informaion</li>\n<li>Delete a Principal</li>\n</ul>\n","_postman_id":"203f9b7e-58d2-43a6-a214-4cc15e41031c","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"f160ec72-b784-44ef-9188-587a16e22d30","id":"f160ec72-b784-44ef-9188-587a16e22d30","name":"Boarding Applications","type":"folder"}}},{"name":"Processing","item":[{"name":"View Processing section","id":"1c1b9574-39e0-4555-bb05-b9d0e85f883f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/boarding-application/607/processing","description":"<p>You can use this endpoint to view the necessary information in the Processing section of the Boarding Application.</p>\n<p>Viewing only the Processing section of Boarding Application with <code>id</code> 607</p>\n","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"f160ec72-b784-44ef-9188-587a16e22d30","id":"f160ec72-b784-44ef-9188-587a16e22d30","name":"Boarding Applications","type":"folder"}},"urlObject":{"path":["api","boarding-application","607","processing"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"d9c8ed2c-c5e7-427a-b361-1667fd449cc9","name":"View Processing section","originalRequest":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/boarding-application/607/processing"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"bank\": {\n        \"accountNumber\": null,\n        \"routingNumber\": null\n    },\n    \"volumes\": {\n        \"monthlyTransactionAmount\": null,\n        \"avgTransactionAmount\": null,\n        \"maxTransactionAmount\": null\n    },\n    \"sales\": {\n        \"swiped\": null,\n        \"mail\": null,\n        \"internet\": null\n    },\n    \"alreadyProcessing\": {\n        \"isProcessing\": \"No\",\n        \"processor\": null\n    },\n    \"terminated\": {\n        \"isTerminated\": null,\n        \"description\": null\n    },\n    \"customers\": {\n        \"type\": {\n            \"individual\": null,\n            \"business\": null,\n            \"government\": null\n        },\n        \"location\": {\n            \"local\": null,\n            \"national\": null,\n            \"international\": null\n        }\n    },\n    \"fulfillmentPolicy\": {\n        \"fulfillment\": null,\n        \"fulfillmentOther\": null,\n        \"delivery\": null,\n        \"deliveryOther\": null\n    },\n    \"recurringPayments\": {\n        \"hasRecurring\": \"No\",\n        \"description\": null\n    },\n    \"intendedUsage\": {\n        \"creditCards\": \"No\",\n        \"pinDebit\": \"No\",\n        \"ebt\": \"No\",\n        \"fns\": null,\n        \"notes\": null\n    },\n    \"seasonalBusiness\": {\n        \"isSeasonal\": \"No\",\n        \"months\": []\n    },\n    \"inventory\": {\n        \"onSite\": \"No\",\n        \"offSite\": \"No\",\n        \"offSiteAddress\": null,\n        \"thirdParty\": \"No\",\n        \"serviceOnly\": \"No\"\n    },\n    \"retailLocation\": null,\n    \"externalFulfillment\": \"No\",\n    \"customerCharged\": null,\n    \"equipmentUsed\": null,\n    \"advertise\": null,\n    \"refundPolicy\": null,\n    \"feeSchedule\": {\n        \"fees\": [\n            {\n                \"id\": 19357,\n                \"type\": {\n                    \"id\": 1\n                },\n                \"value\": \"1.00001\"\n            },\n            {\n                \"id\": 19358,\n                \"type\": {\n                    \"id\": 2\n                },\n                \"value\": \"0.00002\"\n            },\n            {\n                \"id\": 19359,\n                \"type\": {\n                    \"id\": 3\n                },\n                \"value\": \"0.00003\"\n            },\n            {\n                \"id\": 19360,\n                \"type\": {\n                    \"id\": 4\n                },\n                \"value\": \"0.00004\"\n            },\n            {\n                \"id\": 19361,\n                \"type\": {\n                    \"id\": 5\n                },\n                \"value\": \"0.00005\"\n            },\n            {\n                \"id\": 19362,\n                \"type\": {\n                    \"id\": 6\n                },\n                \"value\": \"0.00000\"\n            },\n            {\n                \"id\": 19363,\n                \"type\": {\n                    \"id\": 7\n                },\n                \"value\": \"0.00000\"\n            },\n            {\n                \"id\": 19364,\n                \"type\": {\n                    \"id\": 8\n                },\n                \"value\": \"0.00000\"\n            },\n            {\n                \"id\": 19365,\n                \"type\": {\n                    \"id\": 9\n                },\n                \"value\": \"0.00000\"\n            },\n            {\n                \"id\": 19366,\n                \"type\": {\n                    \"id\": 10\n                },\n                \"value\": \"0.00000\"\n            },\n            {\n                \"id\": 19367,\n                \"type\": {\n                    \"id\": 11\n                },\n                \"value\": \"0.00000\"\n            },\n            {\n                \"id\": 19368,\n                \"type\": {\n                    \"id\": 12\n                },\n                \"value\": \"0.00000\"\n            },\n            {\n                \"id\": 19369,\n                \"type\": {\n                    \"id\": 13\n                },\n                \"value\": \"0.00000\"\n            },\n            {\n                \"id\": 19370,\n                \"type\": {\n                    \"id\": 14\n                },\n                \"value\": \"0.00000\"\n            },\n            {\n                \"id\": 19371,\n                \"type\": {\n                    \"id\": 15\n                },\n                \"value\": \"0.00000\"\n            },\n            {\n                \"id\": 19372,\n                \"type\": {\n                    \"id\": 16\n                },\n                \"value\": \"0.00000\"\n            },\n            {\n                \"id\": 19373,\n                \"type\": {\n                    \"id\": 17\n                },\n                \"value\": \"0.00000\"\n            },\n            {\n                \"id\": 19374,\n                \"type\": {\n                    \"id\": 18\n                },\n                \"value\": \"0.00000\"\n            },\n            {\n                \"id\": 19375,\n                \"type\": {\n                    \"id\": 18\n                },\n                \"value\": \"0.00000\"\n            },\n            {\n                \"id\": 19376,\n                \"type\": {\n                    \"id\": 18\n                },\n                \"value\": \"0.00000\"\n            },\n            {\n                \"id\": 19377,\n                \"type\": {\n                    \"id\": 19\n                },\n                \"value\": \"0.00000\"\n            },\n            {\n                \"id\": 19378,\n                \"type\": {\n                    \"id\": 20\n                },\n                \"value\": \"0.00000\"\n            },\n            {\n                \"id\": 19379,\n                \"type\": {\n                    \"id\": 21\n                },\n                \"value\": \"0.00000\"\n            },\n            {\n                \"id\": 19380,\n                \"type\": {\n                    \"id\": 22\n                },\n                \"value\": \"0.00000\"\n            }\n        ],\n        \"note\": null\n    }\n}"}],"_postman_id":"1c1b9574-39e0-4555-bb05-b9d0e85f883f"},{"name":"Update Processing section","id":"16a8448b-734d-4615-9713-b8cc723337b2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"bank\": {\n        \"accountNumber\": \"222222233\",\n        \"routingNumber\": \"444444444\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://dashboard.dashboard.paysecureonline.com/api/boarding-application/607/processing","description":"<p>You can use this endpoint to update the necessary information in the Processing section of the Boarding Application.</p>\n<p>Update the <code>bank.accountNumber</code> and <code>bank.routingNumber</code> in the Processing section of Boarding Application with <code>id</code> 607</p>\n<blockquote>\n<p><strong>NOTE</strong> You do not need to send the all the parameters in the Processing section. You can send only the parameters that you are updating.</p>\n</blockquote>\n","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"f160ec72-b784-44ef-9188-587a16e22d30","id":"f160ec72-b784-44ef-9188-587a16e22d30","name":"Boarding Applications","type":"folder"}},"urlObject":{"path":["api","boarding-application","607","processing"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"309123a0-293a-4e7a-b158-0f4797eac292","name":"Update Processing section","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"bank\": {\n        \"accountNumber\": \"222222233\",\n        \"routingNumber\": \"444444444\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://dashboard.dashboard.paysecureonline.com/api/boarding-application/607/processing"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"bank\": {\n        \"accountNumber\": \"222222233\",\n        \"routingNumber\": \"444444444\"\n    },\n    \"volumes\": {\n        \"monthlyTransactionAmount\": null,\n        \"avgTransactionAmount\": null,\n        \"maxTransactionAmount\": null\n    },\n    \"sales\": {\n        \"swiped\": null,\n        \"mail\": null,\n        \"internet\": null\n    },\n    \"alreadyProcessing\": {\n        \"isProcessing\": \"No\",\n        \"processor\": null\n    },\n    \"terminated\": {\n        \"isTerminated\": null,\n        \"description\": null\n    },\n    \"customers\": {\n        \"type\": {\n            \"individual\": null,\n            \"business\": null,\n            \"government\": null\n        },\n        \"location\": {\n            \"local\": null,\n            \"national\": null,\n            \"international\": null\n        }\n    },\n    \"fulfillmentPolicy\": {\n        \"fulfillment\": null,\n        \"fulfillmentOther\": null,\n        \"delivery\": null,\n        \"deliveryOther\": null\n    },\n    \"recurringPayments\": {\n        \"hasRecurring\": \"No\",\n        \"description\": null\n    },\n    \"intendedUsage\": {\n        \"creditCards\": \"No\",\n        \"pinDebit\": \"No\",\n        \"ebt\": \"No\",\n        \"fns\": null,\n        \"notes\": null\n    },\n    \"seasonalBusiness\": {\n        \"isSeasonal\": \"No\",\n        \"months\": []\n    },\n    \"inventory\": {\n        \"onSite\": \"No\",\n        \"offSite\": \"No\",\n        \"offSiteAddress\": null,\n        \"thirdParty\": \"No\",\n        \"serviceOnly\": \"No\"\n    },\n    \"retailLocation\": null,\n    \"externalFulfillment\": \"No\",\n    \"customerCharged\": null,\n    \"equipmentUsed\": null,\n    \"advertise\": null,\n    \"refundPolicy\": null,\n    \"feeSchedule\": {\n        \"fees\": [\n            {\n                \"id\": 19357,\n                \"type\": {\n                    \"id\": 1\n                },\n                \"value\": \"1.00001\"\n            },\n            {\n                \"id\": 19358,\n                \"type\": {\n                    \"id\": 2\n                },\n                \"value\": \"0.00002\"\n            },\n            {\n                \"id\": 19359,\n                \"type\": {\n                    \"id\": 3\n                },\n                \"value\": \"0.00003\"\n            },\n            {\n                \"id\": 19360,\n                \"type\": {\n                    \"id\": 4\n                },\n                \"value\": \"0.00004\"\n            },\n            {\n                \"id\": 19361,\n                \"type\": {\n                    \"id\": 5\n                },\n                \"value\": \"0.00005\"\n            },\n            {\n                \"id\": 19362,\n                \"type\": {\n                    \"id\": 6\n                },\n                \"value\": \"0.00000\"\n            },\n            {\n                \"id\": 19363,\n                \"type\": {\n                    \"id\": 7\n                },\n                \"value\": \"0.00000\"\n            },\n            {\n                \"id\": 19364,\n                \"type\": {\n                    \"id\": 8\n                },\n                \"value\": \"0.00000\"\n            },\n            {\n                \"id\": 19365,\n                \"type\": {\n                    \"id\": 9\n                },\n                \"value\": \"0.00000\"\n            },\n            {\n                \"id\": 19366,\n                \"type\": {\n                    \"id\": 10\n                },\n                \"value\": \"0.00000\"\n            },\n            {\n                \"id\": 19367,\n                \"type\": {\n                    \"id\": 11\n                },\n                \"value\": \"0.00000\"\n            },\n            {\n                \"id\": 19368,\n                \"type\": {\n                    \"id\": 12\n                },\n                \"value\": \"0.00000\"\n            },\n            {\n                \"id\": 19369,\n                \"type\": {\n                    \"id\": 13\n                },\n                \"value\": \"0.00000\"\n            },\n            {\n                \"id\": 19370,\n                \"type\": {\n                    \"id\": 14\n                },\n                \"value\": \"0.00000\"\n            },\n            {\n                \"id\": 19371,\n                \"type\": {\n                    \"id\": 15\n                },\n                \"value\": \"0.00000\"\n            },\n            {\n                \"id\": 19372,\n                \"type\": {\n                    \"id\": 16\n                },\n                \"value\": \"0.00000\"\n            },\n            {\n                \"id\": 19373,\n                \"type\": {\n                    \"id\": 17\n                },\n                \"value\": \"0.00000\"\n            },\n            {\n                \"id\": 19374,\n                \"type\": {\n                    \"id\": 18\n                },\n                \"value\": \"0.00000\"\n            },\n            {\n                \"id\": 19375,\n                \"type\": {\n                    \"id\": 18\n                },\n                \"value\": \"0.00000\"\n            },\n            {\n                \"id\": 19376,\n                \"type\": {\n                    \"id\": 18\n                },\n                \"value\": \"0.00000\"\n            },\n            {\n                \"id\": 19377,\n                \"type\": {\n                    \"id\": 19\n                },\n                \"value\": \"0.00000\"\n            },\n            {\n                \"id\": 19378,\n                \"type\": {\n                    \"id\": 20\n                },\n                \"value\": \"0.00000\"\n            },\n            {\n                \"id\": 19379,\n                \"type\": {\n                    \"id\": 21\n                },\n                \"value\": \"0.00000\"\n            },\n            {\n                \"id\": 19380,\n                \"type\": {\n                    \"id\": 22\n                },\n                \"value\": \"0.00000\"\n            }\n        ],\n        \"note\": null\n    }\n}"}],"_postman_id":"16a8448b-734d-4615-9713-b8cc723337b2"}],"id":"b85a8b3c-09f5-4beb-aa3d-62dd6592fead","description":"<p>You can use this endpoint to execute all necessary operations in the Processing section of the Boarding Application. You can do the following:</p>\n<ul>\n<li>View all the information in the Processing section</li>\n<li>Update information in the Processing section</li>\n</ul>\n","_postman_id":"b85a8b3c-09f5-4beb-aa3d-62dd6592fead","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"f160ec72-b784-44ef-9188-587a16e22d30","id":"f160ec72-b784-44ef-9188-587a16e22d30","name":"Boarding Applications","type":"folder"}}},{"name":"ACH","item":[{"name":"View ACH section","id":"1991824d-f945-40ba-b51e-2a5ce89614f7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/boarding-application/609/ach","description":"<p>You can use this endpoint to view the necessary information in the ACH section of the Boarding Application.</p>\n<p>Viewing only the ACH section of Boarding Application with <code>id</code> 609</p>\n","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"f160ec72-b784-44ef-9188-587a16e22d30","id":"f160ec72-b784-44ef-9188-587a16e22d30","name":"Boarding Applications","type":"folder"}},"urlObject":{"path":["api","boarding-application","609","ach"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"f3db3de3-7f1e-476b-a03a-e717ba932549","name":"View ACH section","originalRequest":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/boarding-application/609/ach"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"bank\": {\n        \"accountNumber\": null,\n        \"routingNumber\": null\n    },\n    \"volumes\": {\n        \"monthlyTransactions\": null,\n        \"monthlyTransactionAmount\": null,\n        \"avgTransactionAmount\": null,\n        \"maxTransactionAmount\": null\n    },\n    \"alreadyProcessing\": {\n        \"isProcessing\": \"No\",\n        \"processor\": null\n    },\n    \"terminated\": {\n        \"isTerminated\": \"No\",\n        \"description\": null\n    },\n    \"customers\": {\n        \"type\": {\n            \"individual\": null,\n            \"business\": null,\n            \"government\": null\n        },\n        \"location\": {\n            \"local\": null,\n            \"national\": null,\n            \"international\": null\n        }\n    },\n    \"fulfillmentPolicy\": {\n        \"delivery\": null,\n        \"deliveryOther\": null\n    },\n    \"recurringPayments\": {\n        \"hasRecurring\": \"No\",\n        \"description\": null\n    },\n    \"issueCredits\": {\n        \"hasIssueCredits\": null,\n        \"description\": null\n    },\n    \"secCodes\": {\n        \"ccd\": null,\n        \"ppd\": null,\n        \"tel\": null,\n        \"web\": null\n    },\n    \"customerCharged\": null,\n    \"refundPolicy\": null,\n    \"feeSchedule\": {\n        \"fees\": [\n            {\n                \"id\": 19417,\n                \"type\": {\n                    \"id\": 25\n                },\n                \"value\": \"0.00000\"\n            },\n            {\n                \"id\": 19418,\n                \"type\": {\n                    \"id\": 26\n                },\n                \"value\": \"0.00000\"\n            },\n            {\n                \"id\": 19419,\n                \"type\": {\n                    \"id\": 27\n                },\n                \"value\": \"0.00000\"\n            },\n            {\n                \"id\": 19420,\n                \"type\": {\n                    \"id\": 28\n                },\n                \"value\": \"0.00000\"\n            },\n            {\n                \"id\": 19421,\n                \"type\": {\n                    \"id\": 29\n                },\n                \"value\": \"0.00000\"\n            },\n            {\n                \"id\": 19422,\n                \"type\": {\n                    \"id\": 30\n                },\n                \"value\": \"0.00000\"\n            },\n            {\n                \"id\": 19423,\n                \"type\": {\n                    \"id\": 31\n                },\n                \"value\": \"0.00000\"\n            },\n            {\n                \"id\": 19424,\n                \"type\": {\n                    \"id\": 32\n                },\n                \"value\": \"0.00000\"\n            },\n            {\n                \"id\": 19425,\n                \"type\": {\n                    \"id\": 33\n                },\n                \"value\": \"0.00000\"\n            },\n            {\n                \"id\": 19426,\n                \"type\": {\n                    \"id\": 35\n                },\n                \"value\": \"0.00000\"\n            },\n            {\n                \"id\": 19427,\n                \"type\": {\n                    \"id\": 35\n                },\n                \"value\": \"0.00000\"\n            },\n            {\n                \"id\": 19428,\n                \"type\": {\n                    \"id\": 35\n                },\n                \"value\": \"0.00000\"\n            }\n        ],\n        \"note\": null\n    }\n}"}],"_postman_id":"1991824d-f945-40ba-b51e-2a5ce89614f7"},{"name":"Update ACH section","id":"f0a29a35-d7ba-46d6-b59b-7e34b2ad129c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"bank\": {\n        \"accountNumber\":\"1122334455\",\n        \"routingNumber\":\"112233440\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://dashboard.dashboard.paysecureonline.com/api/boarding-application/609/ach","description":"<p>You can use this endpoint to update the necessary information in the ACH section of the Boarding Application.</p>\n<p>Update the <code>bank.accountNumber</code> and <code>bank.routingNumber</code> in the ACH section of Boarding Application with <code>id</code> 609</p>\n<p><strong>NOTE</strong> You do not need to send all the parameters in the Ach section. You can send only the parameters that you are updating.</p>\n","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"f160ec72-b784-44ef-9188-587a16e22d30","id":"f160ec72-b784-44ef-9188-587a16e22d30","name":"Boarding Applications","type":"folder"}},"urlObject":{"path":["api","boarding-application","609","ach"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"fb14aa63-c24f-4e55-a04d-ad3fdc4827f4","name":"Update ACH section","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"bank\": {\n        \"accountNumber\":\"1122334455\",\n        \"routingNumber\":\"112233440\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://dashboard.dashboard.paysecureonline.com/api/boarding-application/609/ach"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"bank\": {\n        \"accountNumber\": \"1122334455\",\n        \"routingNumber\": \"112233440\"\n    },\n    \"volumes\": {\n        \"monthlyTransactions\": null,\n        \"monthlyTransactionAmount\": null,\n        \"avgTransactionAmount\": null,\n        \"maxTransactionAmount\": null\n    },\n    \"alreadyProcessing\": {\n        \"isProcessing\": \"No\",\n        \"processor\": null\n    },\n    \"terminated\": {\n        \"isTerminated\": \"No\",\n        \"description\": null\n    },\n    \"customers\": {\n        \"type\": {\n            \"individual\": null,\n            \"business\": null,\n            \"government\": null\n        },\n        \"location\": {\n            \"local\": null,\n            \"national\": null,\n            \"international\": null\n        }\n    },\n    \"fulfillmentPolicy\": {\n        \"delivery\": null,\n        \"deliveryOther\": null\n    },\n    \"recurringPayments\": {\n        \"hasRecurring\": \"No\",\n        \"description\": null\n    },\n    \"issueCredits\": {\n        \"hasIssueCredits\": null,\n        \"description\": null\n    },\n    \"secCodes\": {\n        \"ccd\": null,\n        \"ppd\": null,\n        \"tel\": null,\n        \"web\": null\n    },\n    \"customerCharged\": null,\n    \"refundPolicy\": null,\n    \"feeSchedule\": {\n        \"fees\": [\n            {\n                \"id\": 19417,\n                \"type\": {\n                    \"id\": 25\n                },\n                \"value\": \"0.00000\"\n            },\n            {\n                \"id\": 19418,\n                \"type\": {\n                    \"id\": 26\n                },\n                \"value\": \"0.00000\"\n            },\n            {\n                \"id\": 19419,\n                \"type\": {\n                    \"id\": 27\n                },\n                \"value\": \"0.00000\"\n            },\n            {\n                \"id\": 19420,\n                \"type\": {\n                    \"id\": 28\n                },\n                \"value\": \"0.00000\"\n            },\n            {\n                \"id\": 19421,\n                \"type\": {\n                    \"id\": 29\n                },\n                \"value\": \"0.00000\"\n            },\n            {\n                \"id\": 19422,\n                \"type\": {\n                    \"id\": 30\n                },\n                \"value\": \"0.00000\"\n            },\n            {\n                \"id\": 19423,\n                \"type\": {\n                    \"id\": 31\n                },\n                \"value\": \"0.00000\"\n            },\n            {\n                \"id\": 19424,\n                \"type\": {\n                    \"id\": 32\n                },\n                \"value\": \"0.00000\"\n            },\n            {\n                \"id\": 19425,\n                \"type\": {\n                    \"id\": 33\n                },\n                \"value\": \"0.00000\"\n            },\n            {\n                \"id\": 19426,\n                \"type\": {\n                    \"id\": 35\n                },\n                \"value\": \"0.00000\"\n            },\n            {\n                \"id\": 19427,\n                \"type\": {\n                    \"id\": 35\n                },\n                \"value\": \"0.00000\"\n            },\n            {\n                \"id\": 19428,\n                \"type\": {\n                    \"id\": 35\n                },\n                \"value\": \"0.00000\"\n            }\n        ],\n        \"note\": null\n    }\n}"}],"_postman_id":"f0a29a35-d7ba-46d6-b59b-7e34b2ad129c"}],"id":"5d8496e2-b6fe-4f60-9688-ac0f8e27f9ac","description":"<p>You can use this endpoint to execute all necessary operations in the ACH section of the Boarding Application. You can do the following:</p>\n<ul>\n<li>View all the information in the ACH section</li>\n<li>Update information in the ACH section</li>\n</ul>\n","_postman_id":"5d8496e2-b6fe-4f60-9688-ac0f8e27f9ac","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"f160ec72-b784-44ef-9188-587a16e22d30","id":"f160ec72-b784-44ef-9188-587a16e22d30","name":"Boarding Applications","type":"folder"}}},{"name":"Documents","item":[{"name":"Attachment About","item":[{"name":"List All Document Categories","id":"60b92f71-a65b-41cf-89b7-3dd8e255c8e6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/boarding-application/attachments/about","description":"<p><strong>Note:</strong> Keep in mind that the <code>about.id</code> differs from our Sandbox and Production environments. Please ensure to use and assign the correct <code>about.id</code> with their corresponding environment.</p>\n","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"f160ec72-b784-44ef-9188-587a16e22d30","id":"f160ec72-b784-44ef-9188-587a16e22d30","name":"Boarding Applications","type":"folder"}},"urlObject":{"path":["api","boarding-application","attachments","about"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"114068fe-cfa6-455d-a074-2186a65f0761","name":"List All Document Categories","originalRequest":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/boarding-application/attachments/about"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"name\": \"Voided Check / Bank Letter\",\n        \"owner\": false,\n        \"forMerchant\": true,\n        \"forStaff\": true,\n        \"id\": 2\n    },\n    {\n        \"name\": \"Fulfillment Agreement\",\n        \"owner\": false,\n        \"forMerchant\": true,\n        \"forStaff\": true,\n        \"id\": 5\n    },\n    {\n        \"name\": \"Driver’s License\",\n        \"owner\": true,\n        \"forMerchant\": true,\n        \"forStaff\": true,\n        \"id\": 6\n    },\n    {\n        \"name\": \"Bank Statement\",\n        \"owner\": false,\n        \"forMerchant\": true,\n        \"forStaff\": true,\n        \"id\": 4\n    },\n    {\n        \"name\": \"Processing Statement\",\n        \"owner\": false,\n        \"forMerchant\": true,\n        \"forStaff\": true,\n        \"id\": 3\n    },\n    {\n        \"name\": \"Processing Statement - 3 months\",\n        \"owner\": false,\n        \"forMerchant\": true,\n        \"forStaff\": true,\n        \"id\": 128\n    },\n    {\n        \"name\": \"Financials\",\n        \"owner\": false,\n        \"forMerchant\": true,\n        \"forStaff\": true,\n        \"id\": 10\n    },\n    {\n        \"name\": \"Tax Returns\",\n        \"owner\": false,\n        \"forMerchant\": true,\n        \"forStaff\": true,\n        \"id\": 9\n    },\n    {\n        \"name\": \"Corporation Documents\",\n        \"owner\": false,\n        \"forMerchant\": true,\n        \"forStaff\": true,\n        \"id\": 11\n    },\n    {\n        \"name\": \"PCI\",\n        \"owner\": false,\n        \"forMerchant\": true,\n        \"forStaff\": true,\n        \"id\": 16\n    },\n    {\n        \"name\": \"Other\",\n        \"owner\": false,\n        \"forMerchant\": true,\n        \"forStaff\": true,\n        \"id\": 1\n    }\n]"}],"_postman_id":"60b92f71-a65b-41cf-89b7-3dd8e255c8e6"}],"id":"48f1227b-e65f-4d90-a328-64a3a6d92fe2","description":"<p>The Attachment-about endpoint is used for the categorization of all the supporting documents that can be assigned to a Boarding Application. We have a list of several categories that are used to tell us what the document on a Boarding Application contains.</p>\n<blockquote>\n<p><strong>IMPORTANT</strong> Always add <code>about.id</code> to your documents when assigning them to a Boarding Application. This will speed up the Underwriting process. We allow more than one <code>about.id</code> to be added to a document when you have more information in it. </p>\n</blockquote>\n<p>Attachment About Object</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Fields</th>\n<th>Description</th>\n<th>Type</th>\n<th>Filterable</th>\n<th>Required</th>\n<th>Readonly</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>ID of the about</td>\n<td>Integer</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>name</td>\n<td>Description of the about</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>owner</td>\n<td><code>true</code> or <code>false</code></td>\n<td>ENUM</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>forMerchant</td>\n<td><code>true</code> or <code>false</code></td>\n<td>ENUM</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>forStaff</td>\n<td><code>true</code> or <code>false</code></td>\n<td>ENUM</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"48f1227b-e65f-4d90-a328-64a3a6d92fe2","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"f160ec72-b784-44ef-9188-587a16e22d30","id":"f160ec72-b784-44ef-9188-587a16e22d30","name":"Boarding Applications","type":"folder"}}},{"name":"View all documents","id":"da7fe2fb-b801-41a9-9701-2f3a1abc7891","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/boarding-application/<id>/documents","description":"<p>You can utilize this endpoint to list all uploaded documents to a boarding application.</p>\n","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"f160ec72-b784-44ef-9188-587a16e22d30","id":"f160ec72-b784-44ef-9188-587a16e22d30","name":"Boarding Applications","type":"folder"}},"urlObject":{"path":["api","boarding-application","<id>","documents"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"a9f94d32-9221-4286-9994-beb0a3584298","name":"View all documents","originalRequest":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/boarding-application/607/documents"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"items\": [\n        {\n            \"attachment\": {\n                \"id\": 1913\n            },\n            \"about\": [\n                2\n            ],\n            \"principal\": {\n                \"id\": null\n            }\n        },\n        {\n            \"attachment\": {\n                \"id\": 1912\n            },\n            \"about\": [\n                6\n            ],\n            \"principal\": {\n                \"id\": 744\n            }\n        }\n    ],\n    \"_links\": {\n        \"self\": {\n            \"href\": \"https://dashboard.dashboard.paysecureonline.com/dashboard/api/boarding-application/608/documents?page=1\"\n        },\n        \"first\": {\n            \"href\": \"https://dashboard.dashboard.paysecureonline.com/dashboard/api/boarding-application/608/documents?page=1\"\n        },\n        \"last\": {\n            \"href\": \"https://dashboard.dashboard.paysecureonline.com/dashboard/api/boarding-application/608/documents?page=1\"\n        }\n    },\n    \"_meta\": {\n        \"totalCount\": 2,\n        \"pageCount\": 1,\n        \"currentPage\": 1,\n        \"perPage\": 30\n    }\n}"}],"_postman_id":"da7fe2fb-b801-41a9-9701-2f3a1abc7891"},{"name":"MPA","id":"026a797e-08f6-4063-bab2-6ef9098f58b9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/boarding-application/<id>/download-signed-document/<type>","description":"<p>Once a boarding application has been signed, you can utilize this endpoint to download the merchant agreement.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ach</td>\n<td>The signed ACH merchant agreement pdf</td>\n</tr>\n<tr>\n<td>acquiring</td>\n<td>The signed Acquiring merchant agreement pdf</td>\n</tr>\n<tr>\n<td>certificate</td>\n<td>The e-signed certificate pdf</td>\n</tr>\n<tr>\n<td>all</td>\n<td>This will download all MPA related documents in a zip file</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"f160ec72-b784-44ef-9188-587a16e22d30","id":"f160ec72-b784-44ef-9188-587a16e22d30","name":"Boarding Applications","type":"folder"}},"urlObject":{"path":["api","boarding-application","<id>","download-signed-document","<type>"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"45178bef-50fd-4ebe-8a1d-97279045217a","name":"Download MPA","originalRequest":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/boarding-application/1/download-signed-document/all"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"026a797e-08f6-4063-bab2-6ef9098f58b9"},{"name":"Assign a single document","id":"b40c7269-a20f-4ebc-aa3b-3d154f2682d5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"attachment\": {\n        \"id\": 1916\n    },\n    \"about\": [\n        1,\n        2\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://dashboard.dashboard.paysecureonline.com/api/boarding-application/607/document","description":"<p>In this example, we will add one document and categorize it by adding to it <code>about.id</code> [1,2] for \"Other\" and \"Voided Check\"</p>\n<blockquote>\n<p><strong>NOTE</strong> We allow more than one <code>about.id</code> to be set to an attachment when you are uploading a larger document that has more information in it.</p>\n</blockquote>\n","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"f160ec72-b784-44ef-9188-587a16e22d30","id":"f160ec72-b784-44ef-9188-587a16e22d30","name":"Boarding Applications","type":"folder"}},"urlObject":{"path":["api","boarding-application","607","document"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"ae513c99-b4d5-41e2-9038-5677b50a4877","name":"Assign a single document","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"attachment\": {\n        \"id\": 1916\n    },\n    \"about\": [\n        1,\n        2\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://dashboard.dashboard.paysecureonline.com/api/boarding-application/607/document"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"attachment\": {\n        \"id\": 1916\n    },\n    \"about\": [\n        1,\n        2\n    ],\n    \"principal\": {\n        \"id\": null\n    }\n}"}],"_postman_id":"b40c7269-a20f-4ebc-aa3b-3d154f2682d5"},{"name":"Assign multiple documents","id":"c84cdf40-0fec-47f7-9609-d77043df045a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"[\n    {\n        \"attachment\": {\n            \"id\": 1916\n        },\n        \"about\": [2\n        ]\n    },\n    {\n        \"attachment\": {\n            \"id\": 1915\n        },\n        \"about\": [6],\n        \"principal\": {\n            \"id\": 744\n        }\n    }\n]","options":{"raw":{"language":"json"}}},"url":"https://dashboard.dashboard.paysecureonline.com/api/boarding-application/607/documents","description":"<p>In this example, we will add</p>\n<ul>\n<li>One document and categorize it by adding to it <code>about.id</code> 2 for \"Voided Check\"</li>\n<li>And another document and categorize it by adding to it <code>about.id</code> 6 for \"Driver’s License\" and additionally adding a <code>principal.id</code> so that we can provide additional detail to which principal this driver's license belongs.</li>\n</ul>\n<blockquote>\n<p><strong>IMPORTANT</strong> Again it is important to mention that <code>principal.id</code> is needed if the <code>about.owner</code> is true. See our <strong>Attachment About</strong> endpoint.</p>\n</blockquote>\n","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"f160ec72-b784-44ef-9188-587a16e22d30","id":"f160ec72-b784-44ef-9188-587a16e22d30","name":"Boarding Applications","type":"folder"}},"urlObject":{"path":["api","boarding-application","607","documents"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"eb15149c-5102-407c-839e-b47e177fcfb3","name":"Assign multiple documents","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"[\n    {\n        \"attachment\": {\n            \"id\": 1916\n        },\n        \"about\": [2\n        ]\n    },\n    {\n        \"attachment\": {\n            \"id\": 1915\n        },\n        \"about\": [6],\n        \"principal\": {\n            \"id\": 744\n        }\n    }\n]","options":{"raw":{"language":"json"}}},"url":"https://dashboard.dashboard.paysecureonline.com/api/boarding-application/607/documents"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"attachment\": {\n            \"id\": 1915\n        },\n        \"about\": [\n            6\n        ],\n        \"principal\": {\n            \"id\": 744\n        }\n    },\n    {\n        \"attachment\": {\n            \"id\": 1916\n        },\n        \"about\": [\n            2\n        ],\n        \"principal\": {\n            \"id\": null\n        }\n    }\n]"}],"_postman_id":"c84cdf40-0fec-47f7-9609-d77043df045a"},{"name":"Update a single document","id":"b77aa699-07c9-4a8a-9bb0-d259e1d41c50","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"about\": [\n        2,\n        4\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://dashboard.dashboard.paysecureonline.com/api/boarding-application/607/document/1916","description":"<p>In this example, we will update the <code>about.id</code> for document with <code>id</code>1916</p>\n","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"f160ec72-b784-44ef-9188-587a16e22d30","id":"f160ec72-b784-44ef-9188-587a16e22d30","name":"Boarding Applications","type":"folder"}},"urlObject":{"path":["api","boarding-application","607","document","1916"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"3780bccf-91cd-4023-856d-fd04f430a1d4","name":"Update a single document","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"about\": [\n        2,\n        4\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://dashboard.dashboard.paysecureonline.com/api/boarding-application/607/document/1916"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"attachment\": {\n        \"id\": 1916\n    },\n    \"about\": [\n        2,\n        4\n    ],\n    \"principal\": {\n        \"id\": null\n    }\n}"}],"_postman_id":"b77aa699-07c9-4a8a-9bb0-d259e1d41c50"},{"name":"Delete a single document","id":"4bf7d232-2c9c-4982-a100-2b9dc176f0e0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://dashboard.dashboard.paysecureonline.com/api/boarding-application/607/document/1916","description":"<p>In this example, we will delete document with <code>id</code>1916</p>\n","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"f160ec72-b784-44ef-9188-587a16e22d30","id":"f160ec72-b784-44ef-9188-587a16e22d30","name":"Boarding Applications","type":"folder"}},"urlObject":{"path":["api","boarding-application","607","document","1916"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"e4a3b97a-cf36-4595-bb6d-7fc5f56489d1","name":"Delete a single document","originalRequest":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://dashboard.dashboard.paysecureonline.com/api/boarding-application/607/document/1916"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"4bf7d232-2c9c-4982-a100-2b9dc176f0e0"}],"id":"0bb775a9-99b5-412a-a86d-851858b09468","description":"<p>This endpoint is used for all the supporting documents on a Boarding Application. There are several things to consider with documents on a Boarding Application.</p>\n<ol>\n<li>The process begins by utilizing one of our upload methods via the <a href=\"#6937871f-3321-4ff1-a6f2-20a6f925c137\">Attachments</a> endpoint.</li>\n<li>Each attachment needs to be assigned to a Boarding Application and categorized with <code>about.id</code>. (See <a href=\"#99a0c2d7-eb9d-4342-aebf-3d3ef245aafb\">Attachment About</a>) Assigning an <code>about.id</code> tells us what the attached document contains.</li>\n</ol>\n<blockquote>\n<p><strong>IMPORTANT</strong> It is important to note that the drivers license category with <code>about.id</code> 6 needs an additional <code>principal.id</code>, since more than one principals can exist on a Boarding Application. </p>\n</blockquote>\n<blockquote>\n<p><strong>NOTE</strong> We allow more than one <code>about.id</code> to be set to an attachment when you are uploading a larger document that has more information in it. </p>\n</blockquote>\n<p>Documents Object</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Fields</th>\n<th>Description</th>\n<th>Type</th>\n<th>Filterable</th>\n<th>Required</th>\n<th>Readonly</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>attachment</td>\n<td>Object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>attachment.id</td>\n<td>Relation to the ID of the <a href=\"#6937871f-3321-4ff1-a6f2-20a6f925c137\">attachment</a></td>\n<td>Integer</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>about</td>\n<td>Object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>about.id</td>\n<td><a href=\"#99a0c2d7-eb9d-4342-aebf-3d3ef245aafb\">ID</a> of the about</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>principal</td>\n<td>Object</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>principal.id</td>\n<td>Principal ID on the Boarding Application</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><p>You can use this endpoint to execute all necessary operations in the Documents section of the Boarding Application. You can do the following:</p>\n<ul>\n<li>View all assigned documents to a Boarding Application</li>\n<li>Assign documents to a Boarding Application</li>\n<li>Update documents to a Boarding Application</li>\n<li>Delete documents in a Boarding Application</li>\n</ul>\n","_postman_id":"0bb775a9-99b5-412a-a86d-851858b09468","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"f160ec72-b784-44ef-9188-587a16e22d30","id":"f160ec72-b784-44ef-9188-587a16e22d30","name":"Boarding Applications","type":"folder"}}},{"name":"Fees","item":[{"name":"Types","item":[{"name":"List","id":"9ce0cdfe-3af9-4cce-b08c-2585f20a553d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/fees","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"f160ec72-b784-44ef-9188-587a16e22d30","id":"f160ec72-b784-44ef-9188-587a16e22d30","name":"Boarding Applications","type":"folder"}},"urlObject":{"path":["api","fees"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"18d49a90-87b6-4fbb-afe3-a89931b640cb","name":"List","originalRequest":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/fees"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"items\": [\n        {\n            \"id\": 1,\n            \"name\": \"Interchange Plus\",\n            \"type\": \"percent\",\n            \"period\": \"Year\",\n            \"processingMethod\": \"Acquiring\"\n        },\n        {\n            \"id\": 2,\n            \"name\": \"PIN Debit Rate\",\n            \"type\": \"percent\",\n            \"period\": \"Transaction\",\n            \"processingMethod\": \"Acquiring\"\n        },\n        {\n            \"id\": 3,\n            \"name\": \"EBT Rate\",\n            \"type\": \"percent\",\n            \"period\": \"Month\",\n            \"processingMethod\": \"Acquiring\"\n        },\n        {\n            \"id\": 4,\n            \"name\": \"Transaction Fee\",\n            \"type\": \"amount\",\n            \"period\": \"Transaction\",\n            \"processingMethod\": \"Acquiring\"\n        },\n        {\n            \"id\": 5,\n            \"name\": \"Authorization Fee\",\n            \"type\": \"amount\",\n            \"period\": \"Year\",\n            \"processingMethod\": \"Acquiring\"\n        },\n        {\n            \"id\": 6,\n            \"name\": \"AVS\",\n            \"type\": \"amount\",\n            \"period\": \"OneTime\",\n            \"processingMethod\": \"Acquiring\"\n        },\n        {\n            \"id\": 7,\n            \"name\": \"Voice Authorization\",\n            \"type\": \"amount\",\n            \"period\": \"OneTime\",\n            \"processingMethod\": \"Acquiring\"\n        },\n        {\n            \"id\": 8,\n            \"name\": \"PIN Debit Authorization Fee\",\n            \"type\": \"amount\",\n            \"period\": \"OneTime\",\n            \"processingMethod\": \"Acquiring\"\n        },\n        {\n            \"id\": 9,\n            \"name\": \"EBT Authorization Fee\",\n            \"type\": \"amount\",\n            \"period\": \"OneTime\",\n            \"processingMethod\": \"Acquiring\"\n        },\n        {\n            \"id\": 10,\n            \"name\": \"Monthly Online Access Fee\",\n            \"type\": \"amount\",\n            \"period\": \"OneTime\",\n            \"processingMethod\": \"Acquiring\"\n        },\n        {\n            \"id\": 11,\n            \"name\": \"Monthly PCI Fee\",\n            \"type\": \"amount\",\n            \"period\": \"OneTime\",\n            \"processingMethod\": \"Acquiring\"\n        },\n        {\n            \"id\": 12,\n            \"name\": \"Monthly Minimum Fee\",\n            \"type\": \"amount\",\n            \"period\": \"OneTime\",\n            \"processingMethod\": \"Acquiring\"\n        },\n        {\n            \"id\": 13,\n            \"name\": \"Application Fee\",\n            \"type\": \"amount\",\n            \"period\": \"OneTime\",\n            \"processingMethod\": \"Acquiring\"\n        },\n        {\n            \"id\": 14,\n            \"name\": \"Annual Fee\",\n            \"type\": \"amount\",\n            \"period\": \"OneTime\",\n            \"processingMethod\": \"Acquiring\"\n        },\n        {\n            \"id\": 15,\n            \"name\": \"Batch Fee\",\n            \"type\": \"amount\",\n            \"period\": \"OneTime\",\n            \"processingMethod\": \"Acquiring\"\n        },\n        {\n            \"id\": 16,\n            \"name\": \"Chargeback Fee\",\n            \"type\": \"amount\",\n            \"period\": \"OneTime\",\n            \"processingMethod\": \"Acquiring\"\n        },\n        {\n            \"id\": 17,\n            \"name\": \"Retrieval Fee\",\n            \"type\": \"amount\",\n            \"period\": \"OneTime\",\n            \"processingMethod\": \"Acquiring\"\n        },\n        {\n            \"id\": 18,\n            \"name\": \"Other\",\n            \"type\": \"amount\",\n            \"period\": \"OneTime\",\n            \"processingMethod\": \"Acquiring\"\n        },\n        {\n            \"id\": 19,\n            \"name\": \"Qualified Rate\",\n            \"type\": \"percent\",\n            \"period\": \"OneTime\",\n            \"processingMethod\": \"Acquiring\"\n        },\n        {\n            \"id\": 20,\n            \"name\": \"Monthly Fee\",\n            \"type\": \"amount\",\n            \"period\": \"Month\",\n            \"processingMethod\": \"Acquiring\"\n        },\n        {\n            \"id\": 21,\n            \"name\": \"Mid-Qual Surcharge (Qual+)\",\n            \"type\": \"percent\",\n            \"period\": \"Month\",\n            \"processingMethod\": \"Acquiring\"\n        },\n        {\n            \"id\": 22,\n            \"name\": \"Non-Qual Surcharge (Qual+)\",\n            \"type\": \"percent\",\n            \"period\": \"Month\",\n            \"processingMethod\": \"Acquiring\"\n        },\n        {\n            \"id\": 25,\n            \"name\": \"Initial Setup Fee\",\n            \"type\": \"amount\",\n            \"period\": \"OneTime\",\n            \"processingMethod\": \"ACH\"\n        },\n        {\n            \"id\": 26,\n            \"name\": \"Per File Fee\",\n            \"type\": \"amount\",\n            \"period\": \"Transaction\",\n            \"processingMethod\": \"ACH\"\n        },\n        {\n            \"id\": 27,\n            \"name\": \"FED Unauthorized Return Fee\",\n            \"type\": \"amount\",\n            \"period\": \"Transaction\",\n            \"processingMethod\": \"ACH\"\n        },\n        {\n            \"id\": 28,\n            \"name\": \"Rate\",\n            \"type\": \"percent\",\n            \"period\": \"Month\",\n            \"processingMethod\": \"ACH\"\n        },\n        {\n            \"id\": 29,\n            \"name\": \"Notification of Change\",\n            \"type\": \"amount\",\n            \"period\": \"Transaction\",\n            \"processingMethod\": \"ACH\"\n        },\n        {\n            \"id\": 30,\n            \"name\": \"Per Transaction Fee\",\n            \"type\": \"amount\",\n            \"period\": \"Transaction\",\n            \"processingMethod\": \"ACH\"\n        },\n        {\n            \"id\": 31,\n            \"name\": \"Return Item Processing\",\n            \"type\": \"amount\",\n            \"period\": \"Transaction\",\n            \"processingMethod\": \"ACH\"\n        },\n        {\n            \"id\": 32,\n            \"name\": \"Monthly Maintenance Fee\",\n            \"type\": \"amount\",\n            \"period\": \"Month\",\n            \"processingMethod\": \"ACH\"\n        }\n    ],\n    \"_links\": {\n        \"self\": {\n            \"href\": \"https://dashboard.dashboard.paysecureonline.com/api/fees?page=1\"\n        },\n        \"first\": {\n            \"href\": \"https://dashboard.dashboard.paysecureonline.com/api/fees?page=1\"\n        },\n        \"last\": {\n            \"href\": \"https://dashboard.dashboard.paysecureonline.com/api/fees?page=2\"\n        },\n        \"next\": {\n            \"href\": \"https://dashboard.dashboard.paysecureonline.com/api/fees?page=2\"\n        }\n    },\n    \"_meta\": {\n        \"totalCount\": 33,\n        \"pageCount\": 2,\n        \"currentPage\": 1,\n        \"perPage\": 30\n    }\n}"}],"_postman_id":"9ce0cdfe-3af9-4cce-b08c-2585f20a553d"}],"id":"c6dd8a68-cd08-44a6-b24e-18a7414bfae1","description":"<p>Use this endpoint to list all the system fee types with their corresponding detailed information.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Fields</th>\n<th>Description</th>\n<th>Type</th>\n<th>Filterable</th>\n<th>Required</th>\n<th>Readonly</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>ID of the fee</td>\n<td>Integer</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>name</td>\n<td>Fee name</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>type</td>\n<td><code>percent</code> or <code>amount</code></td>\n<td>ENUM</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>period</td>\n<td><code>Year</code>,<code>Month</code>, <code>Week</code>,<code>Day</code>,<code>OneTime</code>,<code>Transaction</code></td>\n<td>ENUM</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>processingMethod</td>\n<td><code>Acquiring</code> or <code>Ach</code></td>\n<td>ENUM</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"c6dd8a68-cd08-44a6-b24e-18a7414bfae1","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"f160ec72-b784-44ef-9188-587a16e22d30","id":"f160ec72-b784-44ef-9188-587a16e22d30","name":"Boarding Applications","type":"folder"}}},{"name":"List all fees","id":"ff750be5-fc26-424f-87c9-916d662de06a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/boarding-application/608/fees","description":"<p>Listing all fees for boarding application with <code>id</code> 608</p>\n","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"f160ec72-b784-44ef-9188-587a16e22d30","id":"f160ec72-b784-44ef-9188-587a16e22d30","name":"Boarding Applications","type":"folder"}},"urlObject":{"path":["api","boarding-application","608","fees"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"f7898835-d469-43c6-a703-a671271cea8e","name":"List all fees","originalRequest":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/boarding-application/608/fees"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n     \"items\": [\n        {\n            \"id\": 19452,\n            \"type\": {\n                \"id\": 22\n            },\n            \"value\": \"0.00000\"\n        },\n        {\n            \"id\": 19451,\n            \"type\": {\n                \"id\": 21\n            },\n            \"value\": \"0.00000\"\n        },\n        {\n            \"id\": 19450,\n            \"type\": {\n                \"id\": 20\n            },\n            \"value\": \"0.00000\"\n        },\n        {\n            \"id\": 19449,\n            \"type\": {\n                \"id\": 19\n            },\n            \"value\": \"0.00000\"\n        },\n        {\n            \"id\": 19448,\n            \"type\": {\n                \"id\": 18\n            },\n            \"value\": \"0.00000\"\n        },\n        {\n            \"id\": 19447,\n            \"type\": {\n                \"id\": 18\n            },\n            \"value\": \"0.00000\"\n        },\n        {\n            \"id\": 19446,\n            \"type\": {\n                \"id\": 18\n            },\n            \"value\": \"0.00000\"\n        },\n        {\n            \"id\": 19445,\n            \"type\": {\n                \"id\": 17\n            },\n            \"value\": \"0.00000\"\n        },\n        {\n            \"id\": 19444,\n            \"type\": {\n                \"id\": 16\n            },\n            \"value\": \"0.00000\"\n        },\n        {\n            \"id\": 19443,\n            \"type\": {\n                \"id\": 15\n            },\n            \"value\": \"0.00000\"\n        },\n        {\n            \"id\": 19442,\n            \"type\": {\n                \"id\": 14\n            },\n            \"value\": \"0.00000\"\n        },\n        {\n            \"id\": 19441,\n            \"type\": {\n                \"id\": 13\n            },\n            \"value\": \"0.00000\"\n        },\n        {\n            \"id\": 19440,\n            \"type\": {\n                \"id\": 12\n            },\n            \"value\": \"0.00000\"\n        },\n        {\n            \"id\": 19439,\n            \"type\": {\n                \"id\": 11\n            },\n            \"value\": \"0.00000\"\n        },\n        {\n            \"id\": 19438,\n            \"type\": {\n                \"id\": 10\n            },\n            \"value\": \"0.00000\"\n        },\n        {\n            \"id\": 19437,\n            \"type\": {\n                \"id\": 9\n            },\n            \"value\": \"0.00000\"\n        },\n        {\n            \"id\": 19436,\n            \"type\": {\n                \"id\": 8\n            },\n            \"value\": \"0.00000\"\n        },\n        {\n            \"id\": 19435,\n            \"type\": {\n                \"id\": 7\n            },\n            \"value\": \"0.00000\"\n        },\n        {\n            \"id\": 19434,\n            \"type\": {\n                \"id\": 6\n            },\n            \"value\": \"0.00000\"\n        },\n        {\n            \"id\": 19433,\n            \"type\": {\n                \"id\": 5\n            },\n            \"value\": \"0.00000\"\n        },\n        {\n            \"id\": 19432,\n            \"type\": {\n                \"id\": 4\n            },\n            \"value\": \"0.00000\"\n        },\n        {\n            \"id\": 19431,\n            \"type\": {\n                \"id\": 3\n            },\n            \"value\": \"0.00000\"\n        },\n        {\n            \"id\": 19430,\n            \"type\": {\n                \"id\": 2\n            },\n            \"value\": \"0.00000\"\n        },\n        {\n            \"id\": 19429,\n            \"type\": {\n                \"id\": 1\n            },\n            \"value\": \"0.00000\"\n        }\n    ],\n    \"_links\": {\n        \"self\": {\n            \"href\": \"https://dashboard.dashboard.paysecureonline.com/dashboard/api/boarding-application/608/fees?page=1\"\n        },\n        \"first\": {\n            \"href\": \"https://dashboard.dashboard.paysecureonline.com/dashboard/api/boarding-application/608/fees?page=1\"\n        },\n        \"last\": {\n            \"href\": \"https://dashboard.dashboard.paysecureonline.com/dashboard/api/boarding-application/608/fees?page=1\"\n        },\n        \"next\": {\n            \"href\": \"https://dashboard.dashboard.paysecureonline.com/dashboard/api/boarding-application/608/fees?page=1\"\n        }\n    },\n    \"_meta\": {\n        \"totalCount\": 24,\n        \"pageCount\": 1,\n        \"currentPage\": 1,\n        \"perPage\": 30\n    }\n}"}],"_postman_id":"ff750be5-fc26-424f-87c9-916d662de06a"},{"name":"View a specific fee","id":"544d4546-9bc6-4cd5-8c5c-cc151dd3b3a5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/boarding-application/608/fee/19445","description":"<p>View all the information for fee with <code>id</code> 19445 for boarding application with <code>id</code> 608</p>\n","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"f160ec72-b784-44ef-9188-587a16e22d30","id":"f160ec72-b784-44ef-9188-587a16e22d30","name":"Boarding Applications","type":"folder"}},"urlObject":{"path":["api","boarding-application","608","fee","19445"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"5775bf75-a53e-4475-bdbd-d046d097050e","name":"View a specific fee","originalRequest":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/boarding-application/608/fee/19445"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 19445,\n    \"type\": {\n        \"id\": 17\n    },\n    \"value\": \"0.00000\"\n}"}],"_postman_id":"544d4546-9bc6-4cd5-8c5c-cc151dd3b3a5"},{"name":"Update a single fee","id":"17164a2e-04c1-437b-916e-e5278d7ea4b0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"value\": \"0.10000\"\n}","options":{"raw":{"language":"json"}}},"url":"https://dashboard.dashboard.paysecureonline.com/api/boarding-application/608/fee/19445","description":"<p>Update the value for fee with <code>id</code> 19445 for boarding application with <code>id</code> 608</p>\n","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"f160ec72-b784-44ef-9188-587a16e22d30","id":"f160ec72-b784-44ef-9188-587a16e22d30","name":"Boarding Applications","type":"folder"}},"urlObject":{"path":["api","boarding-application","608","fee","19445"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"de3f626f-a4bc-4a48-b903-8dd7f8df0788","name":"Update a single fee","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"value\": \"0.10000\"\n}","options":{"raw":{"language":"json"}}},"url":"https://dashboard.dashboard.paysecureonline.com/api/boarding-application/608/fee/19445"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 19445,\n    \"type\": {\n        \"id\": 17\n    },\n    \"value\": \"0.10000\"\n}"}],"_postman_id":"17164a2e-04c1-437b-916e-e5278d7ea4b0"},{"name":"Update multiple fees","id":"77c42be4-6d2e-42d9-be79-4925b129588f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"[\n    {\n        \"id\": 19452,\n        \"value\": \"0.01\"\n    },\n    {\n        \"id\": 19451,\n        \"value\": \"0.02\"\n    }\n]","options":{"raw":{"language":"json"}}},"url":"https://dashboard.dashboard.paysecureonline.com/api/boarding-application/608/fees","description":"<p>Update the values for fees with <code>id</code> 19452 and <code>id</code> 19451 for boarding application with <code>id</code> 608</p>\n","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"f160ec72-b784-44ef-9188-587a16e22d30","id":"f160ec72-b784-44ef-9188-587a16e22d30","name":"Boarding Applications","type":"folder"}},"urlObject":{"path":["api","boarding-application","608","fees"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"e78af72a-59d6-40c8-b73f-6988d3d52882","name":"Update multiple fees","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"[\n    {\n        \"id\": 19452,\n        \"value\": \"0.01\"\n    },\n    {\n        \"id\": 19451,\n        \"value\": \"0.02\"\n    }\n]","options":{"raw":{"language":"json"}}},"url":"https://dashboard.dashboard.paysecureonline.com/api/boarding-application/608/fees"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 19429,\n        \"type\": {\n            \"id\": 1\n        },\n        \"value\": \"0.00000\"\n    },\n    {\n        \"id\": 19430,\n        \"type\": {\n            \"id\": 2\n        },\n        \"value\": \"0.00000\"\n    },\n    {\n        \"id\": 19431,\n        \"type\": {\n            \"id\": 3\n        },\n        \"value\": \"0.00000\"\n    },\n    {\n        \"id\": 19432,\n        \"type\": {\n            \"id\": 4\n        },\n        \"value\": \"0.00000\"\n    },\n    {\n        \"id\": 19433,\n        \"type\": {\n            \"id\": 5\n        },\n        \"value\": \"0.00000\"\n    },\n    {\n        \"id\": 19434,\n        \"type\": {\n            \"id\": 6\n        },\n        \"value\": \"0.00000\"\n    },\n    {\n        \"id\": 19435,\n        \"type\": {\n            \"id\": 7\n        },\n        \"value\": \"0.00000\"\n    },\n    {\n        \"id\": 19436,\n        \"type\": {\n            \"id\": 8\n        },\n        \"value\": \"0.00000\"\n    },\n    {\n        \"id\": 19437,\n        \"type\": {\n            \"id\": 9\n        },\n        \"value\": \"0.00000\"\n    },\n    {\n        \"id\": 19438,\n        \"type\": {\n            \"id\": 10\n        },\n        \"value\": \"0.00000\"\n    },\n    {\n        \"id\": 19439,\n        \"type\": {\n            \"id\": 11\n        },\n        \"value\": \"0.00000\"\n    },\n    {\n        \"id\": 19440,\n        \"type\": {\n            \"id\": 12\n        },\n        \"value\": \"0.00000\"\n    },\n    {\n        \"id\": 19441,\n        \"type\": {\n            \"id\": 13\n        },\n        \"value\": \"0.00000\"\n    },\n    {\n        \"id\": 19442,\n        \"type\": {\n            \"id\": 14\n        },\n        \"value\": \"0.00000\"\n    },\n    {\n        \"id\": 19443,\n        \"type\": {\n            \"id\": 15\n        },\n        \"value\": \"0.00000\"\n    },\n    {\n        \"id\": 19444,\n        \"type\": {\n            \"id\": 16\n        },\n        \"value\": \"0.00000\"\n    },\n    {\n        \"id\": 19445,\n        \"type\": {\n            \"id\": 17\n        },\n        \"value\": \"0.00000\"\n    },\n    {\n        \"id\": 19446,\n        \"type\": {\n            \"id\": 18\n        },\n        \"value\": \"0.00000\"\n    },\n    {\n        \"id\": 19447,\n        \"type\": {\n            \"id\": 18\n        },\n        \"value\": \"0.00000\"\n    },\n    {\n        \"id\": 19448,\n        \"type\": {\n            \"id\": 18\n        },\n        \"value\": \"0.00000\"\n    },\n    {\n        \"id\": 19449,\n        \"type\": {\n            \"id\": 19\n        },\n        \"value\": \"0.00000\"\n    },\n    {\n        \"id\": 19450,\n        \"type\": {\n            \"id\": 20\n        },\n        \"value\": \"0.00000\"\n    },\n    {\n        \"id\": 19451,\n        \"type\": {\n            \"id\": 21\n        },\n        \"value\": \"0.02000\"\n    },\n    {\n        \"id\": 19452,\n        \"type\": {\n            \"id\": 22\n        },\n        \"value\": \"0.01000\"\n    }\n]"}],"_postman_id":"77c42be4-6d2e-42d9-be79-4925b129588f"}],"id":"74a923dd-00ca-4884-bb32-0888884bc137","description":"<p>You can use this endpoint to execute all necessary operations in the Fee section of the Boarding Application. You can do the following:</p>\n<ul>\n<li>List all the fees in the Fee section</li>\n<li>View a single fee in the Fee section</li>\n<li>Update a single or multiple fees in the Fee section</li>\n</ul>\n<p>Fee Object</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Fields</th>\n<th>Description</th>\n<th>Type</th>\n<th>Filterable</th>\n<th>Required</th>\n<th>Readonly</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>Unique ID of the fee line item for the specific Boarding Application</td>\n<td>Integer</td>\n<td>No</td>\n<td>Yes</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>type</td>\n<td>Object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>type.id</td>\n<td>This is a relation to the ID of fee line item <strong>Fees</strong></td>\n<td>Integer</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>value</td>\n<td>The value for the fee line item on the specific Boarding Application</td>\n<td>Integer</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"74a923dd-00ca-4884-bb32-0888884bc137","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"f160ec72-b784-44ef-9188-587a16e22d30","id":"f160ec72-b784-44ef-9188-587a16e22d30","name":"Boarding Applications","type":"folder"}}},{"name":"Validate","item":[{"name":"Validate a Boarding Application","id":"00f5e4f1-9fa6-4f77-abbf-21f797b16dc0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/boarding-application/386/validate","description":"<p>Validate Boarding Application with <code>id</code> 386</p>\n","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"f160ec72-b784-44ef-9188-587a16e22d30","id":"f160ec72-b784-44ef-9188-587a16e22d30","name":"Boarding Applications","type":"folder"}},"urlObject":{"path":["api","boarding-application","386","validate"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"53042855-0f0e-49be-a863-13b6028e7db6","name":"Validate a Boarding Application","originalRequest":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/boarding-application/386/validate"},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"principals[497]dayOfBirth\": \"cannot be blank.\",\n    \"principals[498]dayOfBirth\": \"cannot be blank.\"\n}"}],"_postman_id":"00f5e4f1-9fa6-4f77-abbf-21f797b16dc0"}],"id":"198301d4-43fa-498f-80a0-e0b2cb4572dd","description":"<p>Use this endpoint to validate your Boarding Application before changing the <code>status</code> to Underwriting. </p>\n<p>In doing so you will eliminate status change exception errors and you will make sure there is no missing required information in the Boarding Application.</p>\n","_postman_id":"198301d4-43fa-498f-80a0-e0b2cb4572dd","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"f160ec72-b784-44ef-9188-587a16e22d30","id":"f160ec72-b784-44ef-9188-587a16e22d30","name":"Boarding Applications","type":"folder"}}},{"name":"URL","item":[{"name":"GET URL of Boarding Application","id":"ea53a615-a705-46fd-8b7a-2942ba3da8ee","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/boarding-application/608/url","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"f160ec72-b784-44ef-9188-587a16e22d30","id":"f160ec72-b784-44ef-9188-587a16e22d30","name":"Boarding Applications","type":"folder"}},"urlObject":{"path":["api","boarding-application","608","url"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"1ea126b4-cd74-46c2-b121-0b86e9476bec","name":"GET URL of Boarding Application","originalRequest":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/boarding-application/608/url"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"url\": \"https://dashboard.dashboard.paysecureonline.com//dashboard/web/boarding/public/modify?id=608&guest=&token=716baea1-9749-3543-acd7-7dfc3affb40b\"\n}"}],"_postman_id":"ea53a615-a705-46fd-8b7a-2942ba3da8ee"}],"id":"dfdf95bf-ff3d-4b5c-8b02-e3fde6de109b","description":"<p>You can get the Boarding Application URL to send out for merchant completion via our online web interface form.</p>\n<p>Utilizing this endpoint we will return the URL that can be used to fill in all required information.</p>\n","_postman_id":"dfdf95bf-ff3d-4b5c-8b02-e3fde6de109b","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"f160ec72-b784-44ef-9188-587a16e22d30","id":"f160ec72-b784-44ef-9188-587a16e22d30","name":"Boarding Applications","type":"folder"}}},{"name":"Signature","item":[{"name":"Request Signature","id":"a5c18208-5f11-4c5f-8180-0d737c771aa9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/boarding-application/608/request-signature","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"f160ec72-b784-44ef-9188-587a16e22d30","id":"f160ec72-b784-44ef-9188-587a16e22d30","name":"Boarding Applications","type":"folder"}},"urlObject":{"path":["api","boarding-application","608","request-signature"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"cdc34587-0b2b-4318-baf9-5a85df63af31","name":"Request Signature","originalRequest":{"method":"PUT","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/boarding-application/608/request-signature"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"a5c18208-5f11-4c5f-8180-0d737c771aa9"}],"id":"f2c7151b-59be-41e0-bb99-5b7c3a7d9988","description":"<p>An application needs to be completed with a signature(s) before you can send it to Underwriting for approval and boarding.</p>\n<p>There are several ways to achieve signing of the application. Either manually requesting a signature or by using <a href=\"#d0bbcbe7-aab5-4e95-83e9-82e75543e0b7\">Boarding Application Automation</a> options.</p>\n<p>When manually requesting signing we initiate an email to all the principals on the application with a link to our online eSign section.</p>\n<blockquote>\n<p><strong>IMPORTANT</strong> Keep in mind that before initiating a signature request the Boarding Application needs to be fully completed with all the required field. You can always use our <strong>Validate</strong> endpoint for verification.</p>\n</blockquote>\n","_postman_id":"f2c7151b-59be-41e0-bb99-5b7c3a7d9988","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"f160ec72-b784-44ef-9188-587a16e22d30","id":"f160ec72-b784-44ef-9188-587a16e22d30","name":"Boarding Applications","type":"folder"}}},{"name":"Automation","item":[{"name":"AutoSign","item":[{"name":"Set AutoSign","id":"145b7937-f601-4647-bc18-4840d4947e4d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/boarding-application/608/auto-sign/Yes","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"f160ec72-b784-44ef-9188-587a16e22d30","id":"f160ec72-b784-44ef-9188-587a16e22d30","name":"Boarding Applications","type":"folder"}},"urlObject":{"path":["api","boarding-application","608","auto-sign","Yes"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"84c126a1-b567-47e3-b5d4-0cd48e6c2c56","name":"Set AutoSign","originalRequest":{"method":"PUT","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/boarding-application/608/auto-sign/Yes"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"145b7937-f601-4647-bc18-4840d4947e4d"}],"id":"bc6d6f3c-0605-4c44-95f8-402fb925202e","description":"<p>Enabling this option will trigger the eSign section of the online application after all the required fields from the other sections have been completed.</p>\n<blockquote>\n<p><strong>NOTE</strong> If you feel confident that all the information will be filled correctly on a Boarding Application we always encourage you to use this automation as it will speed up the approval process.</p>\n</blockquote>\n","_postman_id":"bc6d6f3c-0605-4c44-95f8-402fb925202e","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"f160ec72-b784-44ef-9188-587a16e22d30","id":"f160ec72-b784-44ef-9188-587a16e22d30","name":"Boarding Applications","type":"folder"}}},{"name":"AutoUnderwriting","item":[{"name":"Set AutoUnderwriting","id":"308ba2b3-ff8c-4c7c-84b0-90a40b77bae8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/boarding-application/608/auto-underwriting/Yes","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"f160ec72-b784-44ef-9188-587a16e22d30","id":"f160ec72-b784-44ef-9188-587a16e22d30","name":"Boarding Applications","type":"folder"}},"urlObject":{"path":["api","boarding-application","608","auto-underwriting","Yes"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"b51bd890-7b20-4d4b-a7ae-175195f7c25e","name":"Set AutoUnderwriting","originalRequest":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/boarding-application/608/auto-underwriting/Yes"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"308ba2b3-ff8c-4c7c-84b0-90a40b77bae8"}],"id":"0717bb1d-5423-4452-a9c1-d859e8caffe1","description":"<p>Enabling this option will trigger the eSign section of the online Boarding Application and after the application is signed its status will automatically change to <strong>Underwriting</strong>.</p>\n<blockquote>\n<p><strong>NOTE</strong> If you feel confident that all the information will be filled correctly on a Boarding Application we always encourage you to use this automation as it will speed up the approval process.</p>\n</blockquote>\n","_postman_id":"0717bb1d-5423-4452-a9c1-d859e8caffe1","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"f160ec72-b784-44ef-9188-587a16e22d30","id":"f160ec72-b784-44ef-9188-587a16e22d30","name":"Boarding Applications","type":"folder"}}}],"id":"156efa07-e8c0-4965-9921-1855007c8060","description":"<p>We offer Boarding Application automation to streamline some of the processes where needed. At this point there are two options, <strong>AutoSign</strong> and <strong>AutoUnderwriting</strong>.</p>\n","_postman_id":"156efa07-e8c0-4965-9921-1855007c8060","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"f160ec72-b784-44ef-9188-587a16e22d30","id":"f160ec72-b784-44ef-9188-587a16e22d30","name":"Boarding Applications","type":"folder"}}},{"name":"Status","item":[{"name":"Set status to Underwriting","id":"501b3aa1-5379-40a9-b263-d7b2817fb751","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/boarding-application/608/status/Underwriting","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"f160ec72-b784-44ef-9188-587a16e22d30","id":"f160ec72-b784-44ef-9188-587a16e22d30","name":"Boarding Applications","type":"folder"}},"urlObject":{"path":["api","boarding-application","608","status","Underwriting"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"e94d5023-f7e1-40c5-bef0-4fbeeea28866","name":"Set status to Underwriting","originalRequest":{"method":"PUT","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/boarding-application/608/status/Underwriting"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"501b3aa1-5379-40a9-b263-d7b2817fb751"}],"id":"610cb2dc-d8d0-48fb-ac66-68db03b9b1b0","description":"<p>In order to initiate the approval process of a Boarding Application its status needs to be changed to Underwriting. </p>\n<p>This can be achieved either using the Automation options or by manually changing the status of the application.</p>\n","_postman_id":"610cb2dc-d8d0-48fb-ac66-68db03b9b1b0","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"f160ec72-b784-44ef-9188-587a16e22d30","id":"f160ec72-b784-44ef-9188-587a16e22d30","name":"Boarding Applications","type":"folder"}}},{"name":"Notes","item":[{"name":"List","id":"cb0917a5-c748-4c14-9616-6568eb5792d9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/boarding-application/608/notes","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"f160ec72-b784-44ef-9188-587a16e22d30","id":"f160ec72-b784-44ef-9188-587a16e22d30","name":"Boarding Applications","type":"folder"}},"urlObject":{"path":["api","boarding-application","608","notes"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"efc7cac5-b4b0-46e5-912e-a983fa21232e","name":"List","originalRequest":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/boarding-application/608/notes"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"items\": [\n        {\n            \"id\": 740,\n            \"note\": \"<strong>Duplicate</strong>: Duplicate information found on this application.\",\n            \"user\": false,\n            \"notification\": \"No\",\n            \"updatedOn\": \"2023-05-11 15:50:02\",\n            \"createdOn\": \"2023-05-11 15:50:02\"\n        },\n        {\n            \"id\": 63,\n            \"note\": \"A Funding Period for <strong>TwoBusinessDays</strong> has been requested.<br />\\n<br />\\nA Discount Period for <strong>Daily</strong> has been requested.\",\n            \"user\": false,\n            \"notification\": \"Yes\",\n            \"updatedOn\": \"2020-02-19 15:27:56\",\n            \"createdOn\": \"2020-02-19 15:27:56\"\n        }\n    ],\n    \"_links\": {\n        \"self\": {\n            \"href\": \"https://dashboard.dashboard.paysecureonline.com/api/boarding-application/136/notes?page=1\"\n        },\n        \"first\": {\n            \"href\": \"https://dashboard.dashboard.paysecureonline.com/api/boarding-application/136/notes?page=1\"\n        },\n        \"last\": {\n            \"href\": \"https://dashboard.dashboard.paysecureonline.com/api/boarding-application/136/notes?page=1\"\n        }\n    },\n    \"_meta\": {\n        \"totalCount\": 3,\n        \"pageCount\": 1,\n        \"currentPage\": 1,\n        \"perPage\": 30\n    }\n}"}],"_postman_id":"cb0917a5-c748-4c14-9616-6568eb5792d9"},{"name":"Create","id":"2815a0c3-a2f1-4c64-88de-de4ec4f519da","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"note\": \"I will send the needed information ASAP\",\n    \"notification\": \"Yes\"\n}","options":{"raw":{"language":"json"}}},"url":"https://dashboard.dashboard.paysecureonline.com/api/boarding-application/608/note","description":"<p>Create a note for Boarding Application with <code>id</code> 608 and send a notification to the appropriate department</p>\n","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"f160ec72-b784-44ef-9188-587a16e22d30","id":"f160ec72-b784-44ef-9188-587a16e22d30","name":"Boarding Applications","type":"folder"}},"urlObject":{"path":["api","boarding-application","608","note"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"149da9cc-b5d4-4083-b101-66edb7eb451b","name":"Create","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"note\": \"I will send the needed information ASAP\",\n    \"notification\": \"Yes\"\n}","options":{"raw":{"language":"json"}}},"url":"https://dashboard.dashboard.paysecureonline.com/api/boarding-application/608/note"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"149\",\n    \"note\": \"I will send the needed information ASAP\",\n    \"user\": {\n        \"id\": \"14\",\n        \"name\": \"Demo Outside Agent\",\n        \"email\": \"demo-agent@email.com\"\n    },\n    \"notification\": \"Yes\",\n    \"updatedOn\": \"2021-10-06 15:09:39\",\n    \"createdOn\": \"2021-10-06 15:09:39\"\n}"}],"_postman_id":"2815a0c3-a2f1-4c64-88de-de4ec4f519da"}],"id":"b3819e21-c75c-4aa0-ad8d-254043181794","description":"<p>By utilizing this endpoint you can read all notes associated with the Boarding Application. During the underwriting process, additional information may be requested and this is the endpoint to read all the notes from our Underwriting team.</p>\n<p>Notes Object</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Fields</th>\n<th>Description</th>\n<th>Type</th>\n<th>Filterable</th>\n<th>Required</th>\n<th>Readonly</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>Unique ID of the Boarding Application Note</td>\n<td>Integer</td>\n<td>Yes</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>note</td>\n<td>Content of the note</td>\n<td>String</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>user</td>\n<td>The user who create the note</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>notification</td>\n<td>Notification for the added note <code>Yes</code> <code>No</code></td>\n<td>ENUM</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>updatedOn</td>\n<td>Date and Time of last update on the application note</td>\n<td>Datetime</td>\n<td>Yes</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>createdOn</td>\n<td>Date and Time when the application note was created</td>\n<td>Datetime</td>\n<td>Yes</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><p>You can do the following:</p>\n<ul>\n<li>List all notes for a specific Boarding Application</li>\n<li>Create a note for a specific Boarding Application</li>\n</ul>\n","_postman_id":"b3819e21-c75c-4aa0-ad8d-254043181794","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"f160ec72-b784-44ef-9188-587a16e22d30","id":"f160ec72-b784-44ef-9188-587a16e22d30","name":"Boarding Applications","type":"folder"}}}],"id":"f160ec72-b784-44ef-9188-587a16e22d30","description":"<p>This endpoint provides an interface for working with Boarding Applications. Each application belongs to a pre-created campaign. A campaign controls several aspects of a Boarding Application, such as pricing fees, the type of processing and several other parameters.</p>\n<p>The overall boarding process is as follows:</p>\n<ol>\n<li>Create a Boarding Application and get the Boarding Application <code>id</code></li>\n<li>Update the Boarding Application data using the <code>id</code><ul>\n<li>Update Principal using the <code>principals.id</code></li>\n<li>Add Principals or Mass Update/Insert Principals if needed</li>\n<li>Update the Processing/ACH section</li>\n<li>Upload necessary documents and assign them to the Boarding Application</li>\n<li>Update Fee where necessary</li>\n</ul>\n</li>\n<li>Request <strong>eSign</strong> or use <strong>AutoSign</strong> functionality to get needed signatures from principals.</li>\n<li>Update application <code>status</code> to <code>Underwriting</code> or use <strong>AutoUnderwriting</strong> functionality</li>\n<li>Check application <code>status</code> for changes.</li>\n</ol>\n<blockquote>\n<p>Keep in mind that after creating an application you can get the <code>url</code> and send it for merchant completion. The link will initiate a web interface which allows the Boarding Application to be completed by the merchant online. </p>\n</blockquote>\n<p>Application Object</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Fields</th>\n<th>Description</th>\n<th>Type</th>\n<th>Filterable</th>\n<th>Required</th>\n<th>Readonly</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>Unique ID of the Boarding Application</td>\n<td>Integer</td>\n<td>Yes</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>processingMethod</td>\n<td><code>Acquiring</code>, <code>ACH</code>, <code>All</code></td>\n<td>ENUM</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>campaign</td>\n<td>Object</td>\n<td>Object</td>\n<td>No</td>\n<td>Yes</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>campaign.id</td>\n<td>Unique ID of the Campaign to which the Boarding Application is assigned</td>\n<td>Integer</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>company</td>\n<td>Object</td>\n<td>Object</td>\n<td>No</td>\n<td>Yes</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>company.name</td>\n<td>Corporate / Legal Name</td>\n<td>String</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>company.type</td>\n<td><code>Individual</code>, <code>Partnership</code>, <code>Corporation</code>, <code>Government</code>, <code>LLC</code>, <code>Non-Profit</code>, <code>Publicly-Traded</code></td>\n<td>ENUM</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>company.federalTaxId</td>\n<td>Federal Tax ID/EIN</td>\n<td>Integer</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>company.address</td>\n<td>Object</td>\n<td>Object</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>company.address.street</td>\n<td>Street address</td>\n<td>String</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>company.address.city</td>\n<td>City</td>\n<td>String</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>company.address.zip</td>\n<td>Zip code</td>\n<td>String</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>company.address.state</td>\n<td>Object</td>\n<td>Object</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>company.address.state.id</td>\n<td>State ID</td>\n<td>Integer</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>company.address.country</td>\n<td>Object</td>\n<td>Object</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>company.address.country.id</td>\n<td>Country ID</td>\n<td>Integer</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>company.founded</td>\n<td>The date when the business was founded</td>\n<td>Date</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>dba</td>\n<td>Object</td>\n<td>Object</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>dba.sameAsCompany</td>\n<td>Set as <code>Yes</code> if DBA information is the same as legal/corporate else <code>No</code></td>\n<td>ENUM</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>dba.name</td>\n<td>DBA Name</td>\n<td>String</td>\n<td>Yes</td>\n<td>Conditional</td>\n<td>No</td>\n</tr>\n<tr>\n<td>dba.address</td>\n<td>Object</td>\n<td>Object</td>\n<td>No</td>\n<td>Conditional</td>\n<td>No</td>\n</tr>\n<tr>\n<td>dba.address.street</td>\n<td>Street address</td>\n<td>String</td>\n<td>No</td>\n<td>Conditional</td>\n<td>No</td>\n</tr>\n<tr>\n<td>dba.address.city</td>\n<td>City</td>\n<td>String</td>\n<td>No</td>\n<td>Conditional</td>\n<td>No</td>\n</tr>\n<tr>\n<td>dba.address.zip</td>\n<td>Zip code</td>\n<td>String</td>\n<td>No</td>\n<td>Conditional</td>\n<td>No</td>\n</tr>\n<tr>\n<td>dba.address.state</td>\n<td>Object</td>\n<td>Object</td>\n<td>No</td>\n<td>Conditional</td>\n<td>No</td>\n</tr>\n<tr>\n<td>dba.address.state.id</td>\n<td>State ID</td>\n<td>Integer</td>\n<td>No</td>\n<td>Conditional</td>\n<td>No</td>\n</tr>\n<tr>\n<td>dba.address.country</td>\n<td>Object</td>\n<td>Object</td>\n<td>No</td>\n<td>Conditional</td>\n<td>No</td>\n</tr>\n<tr>\n<td>dba.address.country.id</td>\n<td>Country ID</td>\n<td>Integer</td>\n<td>No</td>\n<td>Conditional</td>\n<td>No</td>\n</tr>\n<tr>\n<td>website</td>\n<td>Business website</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>serviceDescription</td>\n<td>Describe your products and services</td>\n<td>String</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>mailingAddress</td>\n<td><code>dba</code>, <code>legal</code> (Preference where to receive mail)</td>\n<td>ENUM</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>businessLocation</td>\n<td>Object</td>\n<td>Object</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>businessLocation.buildingType</td>\n<td><code>Shopping Center</code>, <code>Office Building</code>, <code>Industrial Building</code>, <code>Residence</code></td>\n<td>ENUM</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>businessLocation.numberOfLocations</td>\n<td>Number of business locations</td>\n<td>Integer</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>businessLocation.buildingOwnership</td>\n<td><code>Owns</code>, <code>Rents</code></td>\n<td>ENUM</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>businessLocation.areaZoned</td>\n<td><code>Commercial</code>, <code>Industrial</code>, <code>Residential</code></td>\n<td>ENUM</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>businessLocation.squareFootage</td>\n<td><code>0-501</code>,<code>501-2500</code>,<code>2501-5000</code>,<code>5000-10000</code>,<code>10000+</code></td>\n<td>ENUM</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>customerServiceContact</td>\n<td>Object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>customerServiceContact.phone</td>\n<td>Customer service phone number</td>\n<td>String</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>customerServiceContact.email</td>\n<td>Customer service email</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>corporateContact</td>\n<td>Object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>corporateContact.phone</td>\n<td>Corporate phone number</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>corporateContact.fax</td>\n<td>Corporate fax number</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>corporateContact.email</td>\n<td>Corporate email</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>bankruptcy</td>\n<td>Object</td>\n<td>Object</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>bankruptcy.hasBankruptcy</td>\n<td><code>Business Bankruptcy</code>, <code>Personal Bankruptcy</code>, <code>Never</code></td>\n<td>ENUM</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>bankruptcy.description</td>\n<td>If applicable, explain bankruptcy reason</td>\n<td>String</td>\n<td>No</td>\n<td>Conditional</td>\n<td>No</td>\n</tr>\n<tr>\n<td>principals</td>\n<td>Array of Objects</td>\n<td>Object</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>principals.id</td>\n<td>Unique ID of principal</td>\n<td>Integer</td>\n<td>Yes</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>principals.title</td>\n<td><code>CEO</code>, <code>CFO</code>, <code>Chairman</code>, <code>Co-owner</code>, <code>Controller</code>, <code>Director</code>, <code>General Manager</code>, <code>Office Manager</code>, <code>Owner</code>, <code>Partner</code>, <code>President</code>, <code>Treasurer</code>, <code>Vice President</code></td>\n<td>ENUM</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>principals.name</td>\n<td>Object</td>\n<td>Object</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>principals.name.first</td>\n<td>First name</td>\n<td>String</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>principals.name.last</td>\n<td>Last name</td>\n<td>String</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>principals.dayOfBirth</td>\n<td>Date of Birth</td>\n<td>Date</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>principals.ssn</td>\n<td>Social Security Number</td>\n<td>String</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>principals.driverLicense</td>\n<td>Object</td>\n<td>Object</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>principals.driverLicense.number</td>\n<td>Driver's License Number</td>\n<td>String</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>principals.driverLicense.expiration</td>\n<td>Driver's License Expiration Date</td>\n<td>Date</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>principals.driverLicense.state</td>\n<td>Object</td>\n<td>Object</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>principals.driverLicense.state.id</td>\n<td>The ID of the Driver's License State</td>\n<td>Integer</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>principals.address</td>\n<td>Object</td>\n<td>Object</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>principals.address.street</td>\n<td>Street address</td>\n<td>String</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>principals.address.city</td>\n<td>City</td>\n<td>String</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>principals.address.zip</td>\n<td>Zip code</td>\n<td>String</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>principals.address.state</td>\n<td>Object</td>\n<td>Object</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>principals.address.state.id</td>\n<td>State ID</td>\n<td>String</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>principals.address.country</td>\n<td>Object</td>\n<td>Object</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>principals.address.country.id</td>\n<td>Country ID</td>\n<td>String</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>principals.phone</td>\n<td>Object</td>\n<td>Object</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>principals.email</td>\n<td>Country ID</td>\n<td>String</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>principals.ownershipPercentage</td>\n<td>Percentage of ownership</td>\n<td>Integer</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>principals.isManagement</td>\n<td><code>Yes</code>, <code>No</code> (If this is the individual you want to list as management)</td>\n<td>ENUM</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>processing</td>\n<td>Object</td>\n<td>Object</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>processing.bank</td>\n<td>Object (Business bank account information where funds are to be deposited)</td>\n<td>Object</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>processing.bank.accountNumber</td>\n<td>Bank Account Number</td>\n<td>Integer</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>processing.bank.routingNumber</td>\n<td>Bank Routing Number</td>\n<td>Integer</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>processing.volumes</td>\n<td>Object</td>\n<td>Object</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>processing.volumes.monthlyTransactionAmount</td>\n<td>Monthly Volume</td>\n<td>Integer</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>processing.volumes.avgTransactionAmount</td>\n<td>Average Transaction Amount</td>\n<td>Integer</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>processing.volumes.maxTransactionAmount</td>\n<td>Max Transaction Amount</td>\n<td>Integer</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>processing.sales</td>\n<td>Object</td>\n<td>Object</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>processing.sales.swiped</td>\n<td>Percentage of card-present transactions</td>\n<td>Integer</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>processing.sales.mail</td>\n<td>Percentage of mail/phone card not present transactions</td>\n<td>Integer</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>processing.sales.internet</td>\n<td>Percentage of internet/eCommerce card not present transactions</td>\n<td>Integer</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>processing.alreadyProcessing</td>\n<td>Object</td>\n<td>String</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>processing.alreadyProcessing.isProcessing</td>\n<td><code>Yes</code>, <code>No</code> (If this business currently accept credit/debit cards)</td>\n<td>ENUM</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>processing.alreadyProcessing.processor</td>\n<td>If applicable who is the current processor</td>\n<td>String</td>\n<td>No</td>\n<td>Conditional</td>\n<td>No</td>\n</tr>\n<tr>\n<td>processing.terminated</td>\n<td>Object</td>\n<td>Object</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>processing.terminated.isTerminated</td>\n<td><code>Yes</code>, <code>No</code> (If business or any principal has ever been terminated from accepting bank cards)</td>\n<td>ENUM</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>processing.terminated.description</td>\n<td>If applicable Explain Terminated Reason</td>\n<td>String</td>\n<td>No</td>\n<td>Conditional</td>\n<td>No</td>\n</tr>\n<tr>\n<td>processing.customers</td>\n<td>Object</td>\n<td>Object</td>\n<td>No</td>\n<td>Conditional</td>\n<td>No</td>\n</tr>\n<tr>\n<td>processing.customers.type</td>\n<td>Object</td>\n<td>Object</td>\n<td>No</td>\n<td>Conditional</td>\n<td>No</td>\n</tr>\n<tr>\n<td>processing.customers.type.individual</td>\n<td>Percentage of sales to individual customers</td>\n<td>Integer</td>\n<td>No</td>\n<td>Conditional</td>\n<td>No</td>\n</tr>\n<tr>\n<td>processing.customers.type.business</td>\n<td>Percentage of sales to business customers</td>\n<td>Integer</td>\n<td>No</td>\n<td>Conditional</td>\n<td>No</td>\n</tr>\n<tr>\n<td>processing.customers.type.government</td>\n<td>Percentage of sales to government customers</td>\n<td>Integer</td>\n<td>No</td>\n<td>Conditional</td>\n<td>No</td>\n</tr>\n<tr>\n<td>processing.customers.location</td>\n<td>Object</td>\n<td>Object</td>\n<td>No</td>\n<td>Conditional</td>\n<td>No</td>\n</tr>\n<tr>\n<td>processing.customers.location.local</td>\n<td>Percentage of local sales</td>\n<td>Integer</td>\n<td>No</td>\n<td>Conditional</td>\n<td>No</td>\n</tr>\n<tr>\n<td>processing.customers.location.national</td>\n<td>Percentage of national sales</td>\n<td>Integer</td>\n<td>No</td>\n<td>Conditional</td>\n<td>No</td>\n</tr>\n<tr>\n<td>processing.customers.location.international</td>\n<td>Percentage of international sales</td>\n<td>Integer</td>\n<td>No</td>\n<td>Conditional</td>\n<td>No</td>\n</tr>\n<tr>\n<td>processing.fulfillmentPolicy</td>\n<td>Object</td>\n<td>Object</td>\n<td>No</td>\n<td>Conditional</td>\n<td>No</td>\n</tr>\n<tr>\n<td>processing.fulfillmentPolicy.fulfillment</td>\n<td><code>24-hours</code>,<code>2-days</code>,<code>3-10-days</code>,<code>11-30-days</code>,<code>31-90-days</code>,<code>90-plus-days</code>,<code>other</code></td>\n<td>ENUM</td>\n<td>No</td>\n<td>Conditional</td>\n<td>No</td>\n</tr>\n<tr>\n<td>processing.fulfillmentPolicy.fulfillmentOther</td>\n<td>If your fulfillment policy is not listed above explain it briefly here</td>\n<td>String</td>\n<td>No</td>\n<td>Conditional</td>\n<td>No</td>\n</tr>\n<tr>\n<td>processing.fulfillmentPolicy.delivery</td>\n<td><code>24-hours</code>, <code>2-5-days</code>, <code>6-10-days</code>, <code>11-plus-days</code>, <code>other</code></td>\n<td>ENUM</td>\n<td>No</td>\n<td>Conditional</td>\n<td>No</td>\n</tr>\n<tr>\n<td>processing.fulfillmentPolicy.deliveryOther</td>\n<td>If your delivery policy is not listed above explain it briefly here</td>\n<td>String</td>\n<td>No</td>\n<td>Conditional</td>\n<td>No</td>\n</tr>\n<tr>\n<td>processing.recurringPayments</td>\n<td>Object</td>\n<td>Object</td>\n<td>Yes</td>\n<td>Conditional</td>\n<td>No</td>\n</tr>\n<tr>\n<td>processing.recurringPayments.hasRecurring</td>\n<td><code>Yes</code>, <code>No</code></td>\n<td>ENUM</td>\n<td>Yes</td>\n<td>Conditional</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>processing.recurringPayments.description</td>\n<td>Explain if offered any subscriptions, memberships, recurring plans etc.</td>\n<td>String</td>\n<td>No</td>\n<td>Conditional</td>\n<td>No</td>\n</tr>\n<tr>\n<td>processing.intendedUsage</td>\n<td>Object (Which payments would you like to accept?)</td>\n<td>String</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>processing.intendedUsage.creditCards</td>\n<td><code>Yes</code>, <code>No</code></td>\n<td>ENUM</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>processing.intendedUsage.pinDebit</td>\n<td><code>Yes</code>, <code>No</code></td>\n<td>ENUM</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>processing.intendedUsage.ebt</td>\n<td><code>Yes</code>, <code>No</code></td>\n<td>ENUM</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>processing.intendedUsage.fns</td>\n<td>EBT - EBT FNS Number</td>\n<td>String</td>\n<td>No</td>\n<td>Conditional</td>\n<td>No</td>\n</tr>\n<tr>\n<td>processing.intendedUsage.notes</td>\n<td>Intended usage notes</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>processing.seasonalBusiness</td>\n<td>Object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>processing.seasonalBusiness.isSeasonal</td>\n<td><code>Yes</code>, <code>No</code> (Is business seasonal?)</td>\n<td>ENUM</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>processing.seasonalBusiness.months</td>\n<td><code>Jan</code>, <code>Feb</code>,<code>Mar</code>,<code>Apr</code>,<code>May</code>,<code>Jun</code>,<code>Jul</code>,<code>Aug</code>,<code>Sep</code>,<code>Oct</code>,<code>Nov</code>,<code>Dec</code></td>\n<td>ENUM</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>processing.inventory</td>\n<td>Object (Where is inventory maintained)</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>processing.inventory.onSite</td>\n<td><code>Yes</code>, <code>No</code> (Inventory maintained On-Site)</td>\n<td>ENUM</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>processing.inventory.offSite</td>\n<td><code>Yes</code>, <code>No</code> (Inventory maintained Off-Site, Warehouse)</td>\n<td>ENUM</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>processing.inventory.offSiteAddress</td>\n<td>If inventory is maintained off-site provide the address</td>\n<td>String</td>\n<td>No</td>\n<td>Conditional</td>\n<td>No</td>\n</tr>\n<tr>\n<td>processing.inventory.thirdParty</td>\n<td><code>Yes</code>, <code>No</code> (If you are using 3rd Party Fulfillment Center)</td>\n<td>ENUM</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>processing.inventory.serviceOnly</td>\n<td><code>Yes</code>, <code>No</code> (Service only business, no product sold)</td>\n<td>ENUM</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>processing.retailLocation</td>\n<td>Confirm Physical Address of retail location</td>\n<td>String</td>\n<td>No</td>\n<td>Conditional</td>\n<td>No</td>\n</tr>\n<tr>\n<td>processing.externalFulfillment</td>\n<td><code>Yes</code>, <code>No</code> (If there are any other external companies involved in fulfillment)</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>processing.customerCharged</td>\n<td><code>time-offer-order</code>, <code>upon-shipment</code> (When is the customer charged)</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>processing.equipmentUsed</td>\n<td>List equipment and/or software used to process cards (point-of-sale, terminal, payment gateway, etc.)</td>\n<td>String</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>processing.advertise</td>\n<td>How do you advertise (internet, magazines, tv, etc.)</td>\n<td>String</td>\n<td>No</td>\n<td>Conditional</td>\n<td>No</td>\n</tr>\n<tr>\n<td>processing.refundPolicy</td>\n<td>Describe your refund and return policy</td>\n<td>String</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>ach</td>\n<td>Object</td>\n<td>String</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>ach.bank</td>\n<td>Object (Business bank account information where funds are to be deposited)</td>\n<td>Object</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>ach.bank.accountNumber</td>\n<td>Bank Account Number</td>\n<td>Integer</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>ach.bank.routingNumber</td>\n<td>Bank Routing Number</td>\n<td>Integer</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>ach.volumes</td>\n<td>Object</td>\n<td>Object</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>ach.volumes.monthlyTransactions</td>\n<td>Number Of Monthly Transactions</td>\n<td>Integer</td>\n<td>No</td>\n<td>Yes</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>ach.volumes.monthlyTransactionAmount</td>\n<td>Monthly Volume</td>\n<td>Integer</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>ach.volumes.avgTransactionAmount</td>\n<td>Average Transaction Amount</td>\n<td>Integer</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>ach.volumes.maxTransactionAmount</td>\n<td>Max Transaction Amount</td>\n<td>Integer</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>ach.alreadyProcessing</td>\n<td>Object</td>\n<td>String</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>ach.alreadyProcessing.isProcessing</td>\n<td><code>Yes</code>, <code>No</code> (If this business currently processes ACH payments)</td>\n<td>ENUM</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>ach.alreadyProcessing.isProcessing.processor</td>\n<td>If applicable who is the current processor</td>\n<td>String</td>\n<td>No</td>\n<td>Conditional</td>\n<td>No</td>\n</tr>\n<tr>\n<td>ach.terminated</td>\n<td>Object</td>\n<td>Object</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>ach.terminated.isTerminated</td>\n<td><code>Yes</code>, <code>No</code> (If business or any principal has ever been terminated from accepting bank cards)</td>\n<td>ENUM</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>ach.terminated.description</td>\n<td>If applicable Explain Terminated Reason</td>\n<td>String</td>\n<td>No</td>\n<td>Conditional</td>\n<td>No</td>\n</tr>\n<tr>\n<td>ach.customers</td>\n<td>Object</td>\n<td>Object</td>\n<td>No</td>\n<td>Conditional</td>\n<td>No</td>\n</tr>\n<tr>\n<td>ach.customers.type</td>\n<td>Object</td>\n<td>Object</td>\n<td>No</td>\n<td>Conditional</td>\n<td>No</td>\n</tr>\n<tr>\n<td>ach.customers.type.individual</td>\n<td>Percentage of sales to individual customers</td>\n<td>Integer</td>\n<td>No</td>\n<td>Conditional</td>\n<td>No</td>\n</tr>\n<tr>\n<td>ach.customers.type.business</td>\n<td>Percentage of sales to business customers</td>\n<td>Integer</td>\n<td>No</td>\n<td>Conditional</td>\n<td>No</td>\n</tr>\n<tr>\n<td>ach.customers.type.government</td>\n<td>Percentage of sales to government customers</td>\n<td>Integer</td>\n<td>No</td>\n<td>Conditional</td>\n<td>No</td>\n</tr>\n<tr>\n<td>ach.customers.location</td>\n<td>Object</td>\n<td>Object</td>\n<td>No</td>\n<td>Conditional</td>\n<td>No</td>\n</tr>\n<tr>\n<td>ach.customers.location.local</td>\n<td>Percentage of local sales</td>\n<td>Integer</td>\n<td>No</td>\n<td>Conditional</td>\n<td>No</td>\n</tr>\n<tr>\n<td>ach.customers.location.national</td>\n<td>Percentage of national sales</td>\n<td>Integer</td>\n<td>No</td>\n<td>Conditional</td>\n<td>No</td>\n</tr>\n<tr>\n<td>ach.customers.location.international</td>\n<td>Percentage of international sales</td>\n<td>Integer</td>\n<td>No</td>\n<td>Conditional</td>\n<td>No</td>\n</tr>\n<tr>\n<td>ach.fulfillmentPolicy</td>\n<td>Object</td>\n<td>Object</td>\n<td>No</td>\n<td>Conditional</td>\n<td>No</td>\n</tr>\n<tr>\n<td>ach.fulfillmentPolicy.delivery</td>\n<td><code>24-hours</code>,<code>2-5-days</code>,<code>6-10-days</code>,<code>11-plus-days</code>,<code>other</code></td>\n<td>ENUM</td>\n<td>No</td>\n<td>Conditional</td>\n<td>No</td>\n</tr>\n<tr>\n<td>ach.fulfillmentPolicy.deliveryOther</td>\n<td>If your fulfillment policy is not listed above explain it briefly here</td>\n<td>String</td>\n<td>No</td>\n<td>Conditional</td>\n<td>No</td>\n</tr>\n<tr>\n<td>ach.recurringPayments</td>\n<td>Object</td>\n<td>Object</td>\n<td>Yes</td>\n<td>Conditional</td>\n<td>No</td>\n</tr>\n<tr>\n<td>ach.recurringPayments.hasRecurring</td>\n<td><code>Yes</code>, <code>No</code> (Do you charge any sort of recurring fees for ongoing)</td>\n<td>ENUM</td>\n<td>Yes</td>\n<td>Conditional</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>ach.recurringPayments.description</td>\n<td>Explain if offered any subscriptions, memberships, recurring plans/fees etc.</td>\n<td>String</td>\n<td>No</td>\n<td>Conditional</td>\n<td>No</td>\n</tr>\n<tr>\n<td>ach.issueCredits</td>\n<td>Object</td>\n<td>Object</td>\n<td>Yes</td>\n<td>Conditional</td>\n<td>No</td>\n</tr>\n<tr>\n<td>ach.issueCredits.hasissueCredit</td>\n<td><code>Yes</code>, <code>No</code> (Will you need to issue credits)</td>\n<td>ENUM</td>\n<td>Yes</td>\n<td>Conditional</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>ach.issueCredits.description</td>\n<td>Provide details if you need to issue credits</td>\n<td>String</td>\n<td>No</td>\n<td>Conditional</td>\n<td>No</td>\n</tr>\n<tr>\n<td>ach.secCodes</td>\n<td>Object</td>\n<td>Object</td>\n<td>Yes</td>\n<td>Conditional</td>\n<td>No</td>\n</tr>\n<tr>\n<td>ach.secCodes.ccd</td>\n<td>Percentage of CCD ACH transactions</td>\n<td>Integer</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>ach.secCodes.ppd</td>\n<td>Percentage of PPD ACH transactions</td>\n<td>Integer</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>ach.secCodes.tel</td>\n<td>Percentage of TEL ACH transactions</td>\n<td>Integer</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>ach.secCodes.web</td>\n<td>Percentage of WEB ACH transactions</td>\n<td>Integer</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>ach.customerCharged</td>\n<td><code>time-offer-order</code>, <code>upon-shipment</code> (When is the customer charged)</td>\n<td>ENUM</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>ach.refundPolicy</td>\n<td>Describe your refund and return policy</td>\n<td>String</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>documents</td>\n<td>Array of attachment ID's</td>\n<td>Array</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>agent</td>\n<td>Object</td>\n<td>String</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>agent.id</td>\n<td>Unique id of the agent to whom the Boarding Application is assigned</td>\n<td>Integer</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>signature</td>\n<td>Object</td>\n<td>Object</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>signature.status</td>\n<td><code>Unsigned</code>, <code>Partially Signed</code>, <code>Signed</code>, <code>Rejected</code></td>\n<td>ENUM</td>\n<td>Yes</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>signature.via</td>\n<td><code>eSign</code>, <code>DocuSign</code>, <code>PrintedPDF</code> (How was the application signed)</td>\n<td>ENUM</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>status</td>\n<td><code>New</code>, <code>Pending</code>, <code>Underwriting</code>, <code>Approved</code>, <code>Declined</code>, <code>Cancelled</code></td>\n<td>ENUM</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>updatedOn</td>\n<td>Date and Time of last update on the Boarding Application</td>\n<td>Datetime</td>\n<td>Yes</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>createdOn</td>\n<td>Date and Time when the Boarding Application was created</td>\n<td>Datetime</td>\n<td>Yes</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":false},"event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""]}},{"listen":"test","script":{"type":"text/javascript","exec":[""]}}],"_postman_id":"f160ec72-b784-44ef-9188-587a16e22d30"},{"name":"ACH Payments","item":[{"name":"General Information","item":[],"id":"5d8202cb-b592-4b53-81c5-81fa73520110","description":"<p>We offer a secure, streamlined ACH payment processing system. This endpoint enables you to make secure bank-to-bank transfers. We offer one-time and recurring ACH payments for various payment scenarios including corporate, consumer, telephone, and web payments.</p>\n<p>ACH Object</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Fields</th>\n<th>Description</th>\n<th>Type</th>\n<th>Filterable</th>\n<th>Required</th>\n<th>Readonly</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>Unique ID of the ACH record</td>\n<td>Integer</td>\n<td>Yes</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>amount</td>\n<td>Amount of the transaction including tax</td>\n<td>Number</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>tax</td>\n<td>The tax included in the amount in absolute value</td>\n<td>Number</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>checkNumber</td>\n<td>Check Number</td>\n<td>String</td>\n<td>Yes</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>routingNumber</td>\n<td>Routing Number</td>\n<td>String</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>accountName</td>\n<td>Name of the account</td>\n<td>String</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>accountNumber</td>\n<td>Access Number</td>\n<td>String</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>accountType</td>\n<td><code>Checking</code> or <code>Savings</code></td>\n<td>ENUM</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>traceNumber</td>\n<td>Trace Number</td>\n<td>String</td>\n<td>Yes</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>transactionID</td>\n<td>Transaction ID</td>\n<td>Integer</td>\n<td>Yes</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>SECCode</td>\n<td><code>PPD</code>, <code>CCD</code>, <code>WEB</code> or <code>TEL</code></td>\n<td>ENUM</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>transactionType</td>\n<td><code>Debit</code> or <code>Credit</code></td>\n<td>ENUM</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>transactionDate</td>\n<td>The desired date to submit the transaction. If itâ€™s empty, it takes the current date but never before.</td>\n<td>Date</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>transactionStatus</td>\n<td>Status of the transaction</td>\n<td>ENUM</td>\n<td>Yes</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>memo</td>\n<td>Short note on your check</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>addendaText</td>\n<td>Additional information for the transaction, to appear on the statement based on the banking institution.</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>file</td>\n<td>File</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>file.id</td>\n<td>Origination File ID</td>\n<td>Integer</td>\n<td>Yes</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>file.date</td>\n<td>Origination File Date</td>\n<td>Datetime</td>\n<td>Yes</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>dba</td>\n<td>Doing Business As</td>\n<td>Object</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>dba.id</td>\n<td>ID of your DBA</td>\n<td>Integer</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>dba.name</td>\n<td>Name of the DBA</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>customer</td>\n<td>Customer Details</td>\n<td>Object</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>customer.id</td>\n<td>Unique ID of the customer</td>\n<td>String</td>\n<td>Yes</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>customer.firstName</td>\n<td>First name of the customer</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>customer.lastName</td>\n<td>Last name of the customer</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>customer.phone</td>\n<td>Phone number of the customer</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>customer.email</td>\n<td>Email address of the customer</td>\n<td>String</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>customer.address1</td>\n<td>Address of the customer line 1</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>customer.address2</td>\n<td>Address of the customer line 2</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>customer.city</td>\n<td>City of the customer</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>customer.state</td>\n<td>State of the customer. Example: NY, CA, etc...</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>customer.zipCode</td>\n<td>Zip Code of the customer</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>customer.identifier</td>\n<td>External Unique ID on a merchants platform</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>customer.sendReceipt</td>\n<td>Send receipt to the customer. <code>Yes</code> or <code>No</code> default <code>No</code></td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>customer.save</td>\n<td>Save customer info for further use. <code>Yes</code> or <code>No</code></td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>recurring</td>\n<td>Recurring Payment object concerned only for <code>recurring.id</code>. Everything else <code>recurring.\\*</code> is with the initializing transaction.</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>recurring.id</td>\n<td>The ID of the parent recurring transaction</td>\n<td>Integer</td>\n<td>Yes</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>recurring.init</td>\n<td>Determine if this is a recurring transaction - <code>Yes</code> or <code>No</code></td>\n<td>String</td>\n<td>Yes</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>recurring.every</td>\n<td>Billing Every</td>\n<td>Integer</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>recurring.frequency</td>\n<td>Billing Frequency</td>\n<td>ENUM</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>recurring.beginDate</td>\n<td>Begin Date</td>\n<td>Date</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>recurring.endAfter</td>\n<td>Define the number of transactions after which recurring needs to end. If 0 will be unlimited.</td>\n<td>Integer</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>recurring.status</td>\n<td>The recurring transaction status: <code>Active</code>, <code>Cancelled</code> or <code>Completed</code></td>\n<td>String</td>\n<td>Yes</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>verification</td>\n<td>Verification Data</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>verification.status</td>\n<td>Verification Status</td>\n<td>ENUM</td>\n<td>Yes</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>verification.date</td>\n<td>Datetime of last update</td>\n<td>Datetime</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>source</td>\n<td>Source</td>\n<td>ENUM</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>return</td>\n<td>Return Data</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>return.code</td>\n<td>Return Code</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>return.date</td>\n<td>Return Date</td>\n<td>Date</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>createdOn</td>\n<td>Datetime of creation</td>\n<td>Datetime</td>\n<td>Yes</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>updatedOn</td>\n<td>Datetime of last update</td>\n<td>Datetime</td>\n<td>Yes</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"5d8202cb-b592-4b53-81c5-81fa73520110","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"97060493-a487-4f0e-bc21-31fcf8ef1657","id":"97060493-a487-4f0e-bc21-31fcf8ef1657","name":"ACH Payments","type":"folder"}}},{"name":"Transactions","item":[{"name":"SEC Codes","item":[],"id":"e6c65389-3b97-4eb3-87d7-5c0372fa0865","description":"<p>You need to provide the SEC Code when creating an ACH transaction.</p>\n<p>Here is a list of SEC codes we support.</p>\n<blockquote>\n<p><strong>IMPORTANT</strong> Note that some SEC codes do not allow addendaText </p>\n</blockquote>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Code</th>\n<th>Debit</th>\n<th>Credit</th>\n<th>Addenda Text</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>PPD</code></td>\n<td>Yes</td>\n<td>Yes</td>\n<td>Allowed</td>\n</tr>\n<tr>\n<td><code>CCD</code></td>\n<td>Yes</td>\n<td>Yes</td>\n<td>Allowed</td>\n</tr>\n<tr>\n<td><code>WEB</code></td>\n<td>Yes</td>\n<td>No</td>\n<td>Not Allowed</td>\n</tr>\n<tr>\n<td><code>TEL</code></td>\n<td>Yes</td>\n<td>No</td>\n<td>Not Allowed</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"e6c65389-3b97-4eb3-87d7-5c0372fa0865","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"97060493-a487-4f0e-bc21-31fcf8ef1657","id":"97060493-a487-4f0e-bc21-31fcf8ef1657","name":"ACH Payments","type":"folder"}}},{"name":"Statuses","item":[],"id":"c0adbc38-fda5-440e-b431-3cde9b83294d","description":"<p>When you have successfully created an ACH Transaction, it will be given one of the following statuses, depending on the case.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Status</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Voided</td>\n<td>The item was voided upon entry for various administrative purposes. This is very rare, and typically warrants an interactive login or call to support</td>\n</tr>\n<tr>\n<td>Held</td>\n<td>The item was accepted but placed on <strong>hold</strong>. This can be common and typically occurs if your daily processing limits have been exceeded. A held item is typically held for a reason and can only be released by us.</td>\n</tr>\n<tr>\n<td>Pending</td>\n<td>This is the \"so far so good\" status which means your item will be processed soon.</td>\n</tr>\n<tr>\n<td>Submitted</td>\n<td>A variant of <strong>Pending</strong>, consider <strong>Pending</strong> and <strong>Submitted</strong> to be identical. This is the most common status you will see.</td>\n</tr>\n</tbody>\n</table>\n</div><p>Once your item has been accepted (status = <strong>Pending</strong> or <strong>Submitted</strong>) there are a few more statuses that get applied to it:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Status</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Transmitted</td>\n<td>This occurs when the item has been sent out to the ACH network. The most significant thing to know about this status is that your item can no longer be edited or <strong>VOIDED</strong>.</td>\n</tr>\n<tr>\n<td>Settled</td>\n<td>For DEBIT items, this means that the debited funds have been successfully settled in your account. For CREDIT items, this means that the pre-funding requirements for your credit have been met and the credit is \"all good.\"</td>\n</tr>\n<tr>\n<td>Returned</td>\n<td>This status occurs when an item has been returned for one of many different reasons.</td>\n</tr>\n</tbody>\n</table>\n</div><blockquote>\n<p><strong>Settled</strong> and <strong>Returned</strong> are both considered \"rested\" statuses. Once a transaction enters into one of those two statuses, it <strong>never leaves it</strong>. </p>\n</blockquote>\n<h3 id=\"verification-statuses\">Verification Statuses</h3>\n<p>We have internal advanced prescreen ACH payment tools and based on your account settings some transaction types will require verification. We use these to reduce the risk of fraud and returns. This service will process a submitted Routing and Account Number against our database containing positive and negative ACH/check writing history. It will validate the account is open and in good standing while also returning information about critical accounts and transactions.</p>\n<p>In most cases, you will see your <code>verification.status</code> in <strong>Pending</strong>, meaning no additional verification was required, and if needed we can perform a manual check for a specific ACH transaction record.</p>\n<blockquote>\n<p><strong>IMPORTANT</strong> If your account is setup with mandatory validation and your ACH transactions do not pass our validation tool we will not process them. </p>\n</blockquote>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Status</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Pending</td>\n<td>The transaction awaits verification.</td>\n</tr>\n<tr>\n<td>APIError</td>\n<td>There has been a problem with the verification API. If this occurs please contact us to investigate the problem.</td>\n</tr>\n<tr>\n<td>Fail</td>\n<td>The transaction has failed our verification processes.</td>\n</tr>\n<tr>\n<td>Pass</td>\n<td>The transaction has passed our verification processes.</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"sources\">Sources</h4>\n<p>Every ACH transaction record in our dashboard has a source. These are the current sources:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Source</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Dashboard</td>\n<td>The transaction is initialized by the dashboard interface.</td>\n</tr>\n<tr>\n<td>Imported</td>\n<td>The transaction is initialized by the import CSV file.</td>\n</tr>\n<tr>\n<td>Hosted</td>\n<td>The transaction is initialized by the hosted form.</td>\n</tr>\n<tr>\n<td>API</td>\n<td>The transaction is initialized by the current ACH API.</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"c0adbc38-fda5-440e-b431-3cde9b83294d","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"97060493-a487-4f0e-bc21-31fcf8ef1657","id":"97060493-a487-4f0e-bc21-31fcf8ef1657","name":"ACH Payments","type":"folder"}}},{"name":"Actions","item":[{"name":"Action","id":"e2ceb0b6-3bd8-4993-950d-78d53a975a02","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/ach/<id>/<action>","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"97060493-a487-4f0e-bc21-31fcf8ef1657","id":"97060493-a487-4f0e-bc21-31fcf8ef1657","name":"ACH Payments","type":"folder"}},"urlObject":{"path":["api","ach","<id>","<action>"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"05e9cd92-04cf-4d4c-beea-44525c354bbe","name":"Void","originalRequest":{"method":"POST","header":[],"url":"https://dashboard.example.com/api/ach/334/cancel"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[true]"}],"_postman_id":"e2ceb0b6-3bd8-4993-950d-78d53a975a02"}],"id":"d37cbee7-1dfc-4cdf-83c2-71c3bf044276","description":"<p>Actions give you the possibility to update your ACH records in specific statuses.</p>\n<p>The available actions are as follows</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Action</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>void</td>\n<td>This is used to void a transaction. This action will change the status of a transaction to voided. Keep in mind that void can't be used before a transaction is submitted for processing.</td>\n</tr>\n<tr>\n<td>cancel</td>\n<td>This is used to change a recurring transaction record to a \"canceled\" status.</td>\n</tr>\n<tr>\n<td>verify</td>\n<td>This is used to pre-verify a transaction before you submit it. We use several different algorithms for this verification process.</td>\n</tr>\n</tbody>\n</table>\n</div><blockquote>\n<p><strong>IMPORTANT</strong> You can void a transaction only in these statuses: </p>\n</blockquote>\n<ol>\n<li>Held</li>\n<li>Pending</li>\n<li>Submitted</li>\n</ol>\n","_postman_id":"d37cbee7-1dfc-4cdf-83c2-71c3bf044276","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"97060493-a487-4f0e-bc21-31fcf8ef1657","id":"97060493-a487-4f0e-bc21-31fcf8ef1657","name":"ACH Payments","type":"folder"}}},{"name":"History Log","item":[{"name":"Log","id":"7650b51f-1383-4973-8246-dab1842b2885","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/ach/<id>/log","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"97060493-a487-4f0e-bc21-31fcf8ef1657","id":"97060493-a487-4f0e-bc21-31fcf8ef1657","name":"ACH Payments","type":"folder"}},"urlObject":{"path":["api","ach","<id>","log"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"95a7690d-0b10-4395-9d5c-1ac23cc0833f","name":"Log","originalRequest":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/ach/335/log"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"items\": [\n        {\n            \"date\": \"2023-04-13 08:48:24\",\n            \"description\": \"Transaction Settled\"\n        },\n        {\n            \"date\": \"2023-04-12 21:07:35\",\n            \"description\": \"Transaction sent to origination File ID: 22287\"\n        },\n        {\n            \"date\": \"2023-04-12 21:05:53\",\n            \"description\": \"Transaction released from submitted\"\n        },\n        {\n            \"date\": \"2023-04-12 21:04:11\",\n            \"description\": \"Transaction released to PENDING from SUBMITTED\"\n        },\n        {\n            \"date\": \"2023-04-12 21:04:07\",\n            \"description\": \"Transaction Created via Requester Service, SUBMITTED\"\n        }\n    ],\n    \"_links\": {\n        \"self\": {\n            \"href\": \"https://dashboard.dashboard.paysecureonline.com/api/ach/3669937/log?page=1\"\n        },\n        \"first\": {\n            \"href\": \"\"https://dashboard.dashboard.paysecureonline.com/api/ach/3669937/log?page=1\"\n        },\n        \"last\": {\n            \"href\": \"https://dashboard.dashboard.paysecureonline.com/api/ach/3669937/log?page=1\"\n        }\n    },\n    \"_meta\": {\n        \"totalCount\": 15,\n        \"pageCount\": 1,\n        \"currentPage\": 1,\n        \"perPage\": 30\n    }\n}"}],"_postman_id":"7650b51f-1383-4973-8246-dab1842b2885"}],"id":"154882b6-5929-4eb8-b94f-e933b174f6e1","description":"<p>Utilizing this endpoint you can see the full history log of an ACH transaction record.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Fields</th>\n<th>Description</th>\n<th>Type</th>\n<th>Filterable</th>\n<th>Required</th>\n<th>Readonly</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>date</td>\n<td>Date and time of the log</td>\n<td>Datetime</td>\n<td>Yes</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>description</td>\n<td>Description of the log</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"154882b6-5929-4eb8-b94f-e933b174f6e1","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"97060493-a487-4f0e-bc21-31fcf8ef1657","id":"97060493-a487-4f0e-bc21-31fcf8ef1657","name":"ACH Payments","type":"folder"}}},{"name":"List","id":"7982a944-f5c5-48da-a141-63848fcdc70d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/ach","description":"<p>Use this endpoint to list all ACH transactions in your dashboard.</p>\n","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"97060493-a487-4f0e-bc21-31fcf8ef1657","id":"97060493-a487-4f0e-bc21-31fcf8ef1657","name":"ACH Payments","type":"folder"}},"urlObject":{"path":["api","ach"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"2e8014ce-bba5-4e36-8882-2ba705375968","name":"List","originalRequest":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/ach"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"items\": [\n        {\n            \"id\": 326,\n            \"amount\": \"9.99\",\n            \"tax\": \"1.99\",\n            \"SECCode\": \"PPD\",\n            \"accountName\": \"Test Wick\",\n            \"accountNumber\": \"XXXXX7890\",\n            \"accountType\": \"Checking\",\n            \"routingNumber\": \"123456789\",\n            \"checkNumber\": null,\n            \"traceNumber\": null,\n            \"transactionID\": null,\n            \"transactionType\": \"Debit\",\n            \"transactionDate\": \"2023-04-29 16:57:36\",\n            \"transactionStatus\": null,\n            \"addendaText\": null,\n            \"memo\": null,\n            \"file\": {\n                \"id\": null,\n                \"date\": null\n            },\n            \"dba\": {\n                \"id\": 9,\n                \"name\": \"Demo DBA\"\n            },\n            \"customer\": {\n                \"id\": null,\n                \"firstName\": null,\n                \"lastName\": null,\n                \"phone\": null,\n                \"email\": \"test@wick.com\",\n                \"address1\": null,\n                \"address2\": null,\n                \"city\": null,\n                \"state\": null,\n                \"zipCode\": null,\n                \"identifier\": null,\n                \"sendReceipt\": \"No\"\n            },\n            \"recurring\": {\n                \"id\": null,\n                \"init\": \"No\",\n                \"every\": null,\n                \"frequency\": null,\n                \"beginDate\": null,\n                \"endAfter\": null,\n                \"status\": null\n            },\n            \"verification\": {\n                \"status\": \"Pending\",\n                \"date\": \"2023-05-12 10:36:01\"\n            },\n            \"source\": \"API\",\n            \"return\": {\n                \"code\": null,\n                \"date\": null\n            },\n            \"note\": null,\n            \"updatedOn\": \"2023-05-12 10:36:01\",\n            \"createdOn\": \"2023-04-29 16:57:36\"\n        },\n        {\n            \"id\": 325,\n            \"amount\": \"10.00\",\n            \"tax\": \"1.99\",\n            \"SECCode\": \"PPD\",\n            \"accountName\": \"John Wick\",\n            \"accountNumber\": \"XXXXX7890\",\n            \"accountType\": \"Checking\",\n            \"routingNumber\": \"123456789\",\n            \"checkNumber\": null,\n            \"traceNumber\": null,\n            \"transactionID\": null,\n            \"transactionType\": \"Debit\",\n            \"transactionDate\": \"2023-04-29 16:43:37\",\n            \"transactionStatus\": null,\n            \"addendaText\": null,\n            \"memo\": null,\n            \"file\": {\n                \"id\": null,\n                \"date\": null\n            },\n            \"dba\": {\n                \"id\": 9,\n                \"name\": \"Demo DBA\"\n            },\n            \"customer\": {\n                \"id\": null,\n                \"firstName\": null,\n                \"lastName\": null,\n                \"phone\": null,\n                \"email\": \"my@test.com\",\n                \"address1\": null,\n                \"address2\": null,\n                \"city\": null,\n                \"state\": null,\n                \"zipCode\": null,\n                \"identifier\": null,\n                \"sendReceipt\": \"No\"\n            },\n            \"recurring\": {\n                \"id\": null,\n                \"init\": \"No\",\n                \"every\": null,\n                \"frequency\": null,\n                \"beginDate\": null,\n                \"endAfter\": null,\n                \"status\": null\n            },\n            \"verification\": {\n                \"status\": \"Pending\",\n                \"date\": null\n            },\n            \"source\": \"API\",\n            \"return\": {\n                \"code\": null,\n                \"date\": null\n            },\n            \"note\": null,\n            \"updatedOn\": \"2023-04-29 16:43:37\",\n            \"createdOn\": \"2023-04-29 16:43:37\"\n        }\n    ],\n    \"_links\": {\n        \"self\": {\n            \"href\": \"https://dashboard.dashboard.paysecureonline.com/api/ach?page=1\"\n        },\n        \"first\": {\n            \"href\": \"https://dashboard.dashboard.paysecureonline.com/api/ach?page=1\"\n        },\n        \"last\": {\n            \"href\": \"https://dashboard.dashboard.paysecureonline.com/api/ach?page=1\"\n        },\n        \"next\": {\n            \"href\": \"https://dashboard.dashboard.paysecureonline.com/api/ach?page=1\"\n        }\n    },\n    \"_meta\": {\n        \"totalCount\": 2,\n        \"pageCount\": 1,\n        \"currentPage\": 1,\n        \"perPage\": 30\n    }\n}"}],"_postman_id":"7982a944-f5c5-48da-a141-63848fcdc70d"},{"name":"View","id":"9f492389-3f79-4f33-8ec0-07cb1f732196","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/ach/325","description":"<p>View specific ACH transaction records.</p>\n<p>In the example we are viewing transaction with <code>id</code> 325</p>\n","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"97060493-a487-4f0e-bc21-31fcf8ef1657","id":"97060493-a487-4f0e-bc21-31fcf8ef1657","name":"ACH Payments","type":"folder"}},"urlObject":{"path":["api","ach","325"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"df3a48ca-d673-4f49-bcb4-5f1f2812b4a5","name":"View","originalRequest":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/ach/325"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 325,\n    \"amount\": \"10.00\",\n    \"tax\": \"1.99\",\n    \"SECCode\": \"PPD\",\n    \"accountName\": \"John Wick\",\n    \"accountNumber\": \"XXXXX7890\",\n    \"accountType\": \"Checking\",\n    \"routingNumber\": \"123456789\",\n    \"checkNumber\": null,\n    \"traceNumber\": null,\n    \"transactionID\": null,\n    \"transactionType\": \"Debit\",\n    \"transactionDate\": \"2023-04-29 16:43:37\",\n    \"transactionStatus\": null,\n    \"addendaText\": null,\n    \"memo\": null,\n    \"file\": {\n        \"id\": null,\n        \"date\": null\n    },\n    \"dba\": {\n        \"id\": 9,\n        \"name\": \"Demo DBA\"\n    },\n    \"customer\": {\n        \"id\": null,\n        \"firstName\": null,\n        \"lastName\": null,\n        \"phone\": null,\n        \"email\": \"my@test.com\",\n        \"address1\": null,\n        \"address2\": null,\n        \"city\": null,\n        \"state\": null,\n        \"zipCode\": null,\n        \"identifier\": null,\n        \"sendReceipt\": \"No\"\n    },\n    \"recurring\": {\n        \"id\": null,\n        \"init\": \"No\",\n        \"every\": null,\n        \"frequency\": null,\n        \"beginDate\": null,\n        \"endAfter\": null,\n        \"status\": null\n    },\n    \"verification\": {\n        \"status\": \"Pending\",\n        \"date\": null\n    },\n    \"source\": \"API\",\n    \"return\": {\n        \"code\": null,\n        \"date\": null\n    },\n    \"note\": null,\n    \"updatedOn\": \"2023-04-29 16:43:37\",\n    \"createdOn\": \"2023-04-29 16:43:37\"\n}"}],"_postman_id":"9f492389-3f79-4f33-8ec0-07cb1f732196"},{"name":"Create ACH","id":"35822d57-e8ef-49ae-b39c-b66fedf48b87","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"amount\": 55.95,\n    \"tax\": 5.95,\n    \"routingNumber\": \"123123123\",\n    \"accountName\": \"John Wick\",\n    \"accountNumber\": \"1122334455\",\n    \"accountType\": \"Checking\",\n    \"transactionType\": \"Debit\",\n    \"customer\": {\n        \"email\": \"test@test.com\"\n    },\n    \"dba\": {\n        \"id\": \"9\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://dashboard.dashboard.paysecureonline.com/api/ach","description":"<p>Use this endpoint to create ACH Transactions.</p>\n<p>ACH Object</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Fields</th>\n<th>Description</th>\n<th>Type</th>\n<th>Filterable</th>\n<th>Required</th>\n<th>Readonly</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>Unique ID of the ACH record</td>\n<td>Integer</td>\n<td>Yes</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>amount</td>\n<td>Amount of the transaction including tax</td>\n<td>Number</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>tax</td>\n<td>The tax included in the amount in absolute value</td>\n<td>Number</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>checkNumber</td>\n<td>Check Number</td>\n<td>String</td>\n<td>Yes</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>routingNumber</td>\n<td>Routing Number</td>\n<td>String</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>accountName</td>\n<td>Name of the account</td>\n<td>String</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>accountNumber</td>\n<td>Access Number</td>\n<td>String</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>accountType</td>\n<td><code>Checking</code> or <code>Savings</code></td>\n<td>ENUM</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>traceNumber</td>\n<td>Trace Number</td>\n<td>String</td>\n<td>Yes</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>transactionID</td>\n<td>Transaction ID</td>\n<td>Integer</td>\n<td>Yes</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>SECCode</td>\n<td><code>PPD</code>, <code>CCD</code>, <code>WEB</code> or <code>TEL</code></td>\n<td>ENUM</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>transactionType</td>\n<td><code>Debit</code> or <code>Credit</code></td>\n<td>ENUM</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>transactionDate</td>\n<td>The desired date to submit the transaction. If itâ€™s empty, it takes the current date but never before.</td>\n<td>Date</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>transactionStatus</td>\n<td>Status of the transaction</td>\n<td>ENUM</td>\n<td>Yes</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>memo</td>\n<td>Short note on your check</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>addendaText</td>\n<td>Additional information for the transaction, to appear on the statement based on the banking institution.</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>file</td>\n<td>File</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>file.id</td>\n<td>Origination File ID</td>\n<td>Integer</td>\n<td>Yes</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>file.date</td>\n<td>Origination File Date</td>\n<td>Datetime</td>\n<td>Yes</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>dba</td>\n<td>Doing Business As</td>\n<td>Object</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>dba.id</td>\n<td>ID of your DBA</td>\n<td>Integer</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>dba.name</td>\n<td>Name of the DBA</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>customer</td>\n<td>Customer Details</td>\n<td>Object</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>customer.id</td>\n<td>Unique ID of the customer</td>\n<td>String</td>\n<td>Yes</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>customer.firstName</td>\n<td>First name of the customer (32-character limit)</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>customer.lastName</td>\n<td>Last name of the customer (32-character limit)</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>customer.phone</td>\n<td>Phone number of the customer</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>customer.email</td>\n<td>Email address of the customer</td>\n<td>String</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>customer.address1</td>\n<td>Address of the customer line 1</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>customer.address2</td>\n<td>Address of the customer line 2</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>customer.city</td>\n<td>City of the customer</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>customer.state</td>\n<td>State of the customer. Example: NY, CA, etc...</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>customer.zipCode</td>\n<td>Zip Code of the customer</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>customer.identifier</td>\n<td>External Unique ID on a merchants platform</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>customer.sendReceipt</td>\n<td>Send receipt to the customer. <code>Yes</code> or <code>No</code> default <code>No</code></td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>customer.save</td>\n<td>Save customer info for further use. <code>Yes</code> or <code>No</code></td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>recurring</td>\n<td>Recurring Payment object concerned only for <code>recurring.id</code>. Everything else <code>recurring.\\\\\\*</code> is with the initializing transaction.</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>recurring.id</td>\n<td>The ID of the parent recurring transaction</td>\n<td>Integer</td>\n<td>Yes</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>recurring.init</td>\n<td>Determine if this is a recurring transaction - <code>Yes</code> or <code>No</code></td>\n<td>String</td>\n<td>Yes</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>recurring.every</td>\n<td>Billing Every</td>\n<td>Integer</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>recurring.frequency</td>\n<td>Billing Frequency</td>\n<td>ENUM</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>recurring.beginDate</td>\n<td>Begin Date</td>\n<td>Date</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>recurring.endAfter</td>\n<td>Define the number of transactions after which recurring needs to end. If 0 will be unlimited.</td>\n<td>Integer</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>recurring.status</td>\n<td>The recurring transaction status: <code>Active</code>, <code>Cancelled</code> or <code>Completed</code></td>\n<td>String</td>\n<td>Yes</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>verification</td>\n<td>Verification Data</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>verification.status</td>\n<td>Verification Status</td>\n<td>ENUM</td>\n<td>Yes</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>verification.date</td>\n<td>Datetime of last update</td>\n<td>Datetime</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>source</td>\n<td>Source</td>\n<td>ENUM</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>return</td>\n<td>Return Data</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>return.code</td>\n<td>Return Code</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>return.date</td>\n<td>Return Date</td>\n<td>Date</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>createdOn</td>\n<td>Datetime of creation</td>\n<td>Datetime</td>\n<td>Yes</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>updatedOn</td>\n<td>Datetime of last update</td>\n<td>Datetime</td>\n<td>Yes</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"97060493-a487-4f0e-bc21-31fcf8ef1657","id":"97060493-a487-4f0e-bc21-31fcf8ef1657","name":"ACH Payments","type":"folder"}},"urlObject":{"path":["api","ach"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"739c6cc9-df28-4202-9e6c-2b515c8db230","name":"Create ACH","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"amount\": 55.95,\n    \"tax\": 5.95,\n    \"routingNumber\": \"123123123\",\n    \"accountName\": \"John Wick\",\n    \"accountNumber\": \"1122334455\",\n    \"accountType\": \"Checking\",\n    \"transactionType\": \"Debit\",\n    \"customer\": {\n        \"email\": \"test@test.com\"\n    },\n    \"dba\": {\n        \"id\": \"9\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://dashboard.dashboard.paysecureonline.com/api/ach"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"327\"\n}"}],"_postman_id":"35822d57-e8ef-49ae-b39c-b66fedf48b87"},{"name":"Create ACH & Save Customer","id":"a651cbc6-9327-4ccb-9b05-3a3a90ba96f8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"amount\": 9.99,\n    \"tax\": 1.99,\n    \"SECCode\": \"PPD\",\n    \"routingNumber\": \"123456789\",\n    \"accountName\": \"Jack Wick's Account\",\n    \"accountNumber\": \"1234567890\",\n    \"accountType\": \"Checking\",\n    \"transactionType\": \"Debit\",\n    \"customer\": {\n        \"save\": \"Yes\",\n        \"firstName\": \"Jack\",\n        \"lastName\": \"Wick\",\n        \"phone\": \"818-727-1234\",\n        \"address1\": \"9024 Some Ave\",\n        \"address2\": \"\",\n        \"city\": \"LA\",\n        \"state\": \"CA\",\n        \"zipCode\": \"90069\",\n        \"email\": \"john.wick@example.com\"\n    },\n    \"dba\": {\n        \"id\": \"9\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://dashboard.dashboard.paysecureonline.com/api/ach","description":"<p>When creating a new ACH transaction record you have the ability to save the customer and payment information to your <a href=\"#15fc62a7-afdb-43bf-a8c1-ed7fddc475ff\">ACH Customers</a> for future payments. In order to do this you need to pass the <code>customer.save</code> as <code>Yes</code>.</p>\n<blockquote>\n<p><strong>IMPORTANT</strong> When you want to save a customer from an initial transaction the <code>customer</code> object fields become required.</p>\n</blockquote>\n","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"97060493-a487-4f0e-bc21-31fcf8ef1657","id":"97060493-a487-4f0e-bc21-31fcf8ef1657","name":"ACH Payments","type":"folder"}},"urlObject":{"path":["api","ach"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"606f63fb-52ab-4ea3-9932-3f9c4ca26a23","name":"Create ACH & Save Customer","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"amount\": 9.99,\n    \"tax\": 1.99,\n    \"SECCode\": \"PPD\",\n    \"routingNumber\": \"123456789\",\n    \"accountName\": \"Jack Wick's Account\",\n    \"accountNumber\": \"1234567890\",\n    \"accountType\": \"Checking\",\n    \"transactionType\": \"Debit\",\n    \"customer\": {\n        \"save\": \"Yes\",\n        \"firstName\": \"Jack\",\n        \"lastName\": \"Wick\",\n        \"phone\": \"818-727-1234\",\n        \"address1\": \"9024 Some Ave\",\n        \"address2\": \"\",\n        \"city\": \"LA\",\n        \"state\": \"CA\",\n        \"zipCode\": \"90069\",\n        \"email\": \"john.wick@example.com\"\n    },\n    \"dba\": {\n        \"id\": \"9\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://dashboard.dashboard.paysecureonline.com/api/ach"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 3642099,\n    \"amount\": \"9.99\",\n    \"tax\": \"1.99\",\n    \"SECCode\": \"PPD\",\n    \"accountName\": \"John Wick's Account\",\n    \"accountNumber\": \"XXXXX7890\",\n    \"accountType\": \"Checking\",\n    \"routingNumber\": \"123456789\",\n    \"checkNumber\": null,\n    \"traceNumber\": null,\n    \"transactionID\": null,\n    \"transactionType\": \"Debit\",\n    \"transactionDate\": \"2023-05-15 11:36:14\",\n    \"transactionStatus\": null,\n    \"addendaText\": null,\n    \"memo\": null,\n    \"file\": {\n        \"id\": null,\n        \"date\": null\n    },\n    \"dba\": {\n        \"id\": 9,\n        \"name\": \"Demo DBA\"\n    },\n    \"customer\": {\n        \"id\": 145571,\n        \"firstName\": \"Jack\",\n        \"lastName\": \"Wick\",\n        \"phone\": \"+1 818-727-1234\",\n        \"email\": \"john.wick@example.com\",\n        \"address1\": \"9024 Some Ave\",\n        \"address2\": null,\n        \"city\": \"LA\",\n        \"state\": \"CA\",\n        \"zipCode\": \"90069\",\n        \"identifier\": null,\n        \"sendReceipt\": \"No\"\n    },\n    \"recurring\": {\n        \"id\": null,\n        \"init\": \"No\",\n        \"every\": null,\n        \"frequency\": null,\n        \"beginDate\": null,\n        \"endAfter\": null,\n        \"status\": null\n    },\n    \"verification\": {\n        \"status\": \"Pending\",\n        \"date\": null\n    },\n    \"source\": \"API\",\n    \"return\": {\n        \"code\": null,\n        \"date\": null\n    },\n    \"note\": null,\n    \"updatedOn\": \"2023-05-15 11:36:14\",\n    \"createdOn\": \"2023-05-15 11:36:14\"\n}"}],"_postman_id":"a651cbc6-9327-4ccb-9b05-3a3a90ba96f8"},{"name":"Create ACH for an existing Customer","id":"6f680d86-988f-474f-8e7b-bd99d80950c0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"amount\": 9.95,\n    \"transactionType\": \"Debit\",\n    \"dba\": {\n        \"id\": \"9\"\n    },\n    \"customer\": {\n        \"id\": \"42\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://dashboard.dashboard.paysecureonline.com/api/ach","description":"<p>Creating an ACH transaction for <code>dba.id</code> 9 and <code>customer.id</code> 42</p>\n","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"97060493-a487-4f0e-bc21-31fcf8ef1657","id":"97060493-a487-4f0e-bc21-31fcf8ef1657","name":"ACH Payments","type":"folder"}},"urlObject":{"path":["api","ach"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"820d00a9-2e49-4a8f-874d-638f1ca33e1f","name":"Create ACH for an existing Customer","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"amount\": 9.95,\n    \"transactionType\": \"Debit\",\n    \"dba\": {\n        \"id\": \"9\"\n    },\n    \"customer\": {\n        \"id\": \"42\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://dashboard.dashboard.paysecureonline.com/api/ach"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"332\"\n}"}],"_postman_id":"6f680d86-988f-474f-8e7b-bd99d80950c0"},{"name":"Remove","id":"2ac9be4d-91b6-4603-8867-2dbd936d02c0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/ach/","description":"<p>A transaction can be deleted if there is no status set to it from our system.</p>\n<p>Once a transaction gets into these statuses <strong>Pending, Submitted</strong> or <strong>Held</strong> you can only perform a <strong>VOID</strong> action request.</p>\n<blockquote>\n<p><strong>IMPORTANT</strong> If the transaction is in these statuses:<br /><strong>Transmitted</strong>, <strong>Settled</strong> or <strong>Returned</strong> you cannot perform any actions to it.</p>\n</blockquote>\n","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"97060493-a487-4f0e-bc21-31fcf8ef1657","id":"97060493-a487-4f0e-bc21-31fcf8ef1657","name":"ACH Payments","type":"folder"}},"urlObject":{"path":["api","ach",""],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"bcae7da7-81a8-44a4-8b00-1f592218c82c","name":"Delete","originalRequest":{"method":"DELETE","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/ach/332"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"null    "}],"_postman_id":"2ac9be4d-91b6-4603-8867-2dbd936d02c0"}],"id":"620aeb26-c2af-4a3e-a292-688e1f58f841","_postman_id":"620aeb26-c2af-4a3e-a292-688e1f58f841","description":"","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"97060493-a487-4f0e-bc21-31fcf8ef1657","id":"97060493-a487-4f0e-bc21-31fcf8ef1657","name":"ACH Payments","type":"folder"}}},{"name":"Customers","item":[{"name":"List Customers","id":"33b7f27d-f328-4528-8f6e-fafec0018600","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://dashboard.dashboard.paysecureonline.com/api/ach/customer","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"97060493-a487-4f0e-bc21-31fcf8ef1657","id":"97060493-a487-4f0e-bc21-31fcf8ef1657","name":"ACH Payments","type":"folder"}},"urlObject":{"path":["api","ach","customer"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"ba6dd874-746a-40f0-847a-6dad19f739da","name":"List Customers","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://dashboard.dashboard.paysecureonline.com/api/ach/customer"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"items\": [\n        {\n            \"id\": 45,\n            \"firstName\": \"John\",\n            \"lastName\": \"Wick\",\n            \"phone\": \"+1 818-727-1234\",\n            \"email\": \"john.wick@example.com\",\n            \"address1\": \"9024 Some Ave\",\n            \"address2\": null,\n            \"city\": \"LA\",\n            \"state\": \"CA\",\n            \"zipCode\": \"90069\",\n            \"accountName\": \"John Wick\",\n            \"accountNumber\": \"******7890\",\n            \"accountType\": \"Checking\",\n            \"routingNumber\": \"123456789\",\n            \"identifier\": null,\n            \"dba\": {\n                \"id\": 22\n            }\n        },\n        {\n            \"id\": 44,\n            \"firstName\": \"Jack\",\n            \"lastName\": \"Wick\",\n            \"phone\": \"+1 818-727-1234\",\n            \"email\": \"john.wick@example.com\",\n            \"address1\": \"9024 Thrasher Ave\",\n            \"address2\": null,\n            \"city\": \"LA\",\n            \"state\": \"CA\",\n            \"zipCode\": \"90069\",\n            \"accountName\": \"Jack Wick's Account\",\n            \"accountNumber\": \"******7890\",\n            \"accountType\": \"Checking\",\n            \"routingNumber\": \"123456789\",\n            \"identifier\": null,\n            \"dba\": {\n                \"id\": 9\n            }\n        }\n    ],\n    \"_links\": {\n        \"self\": {\n            \"href\": \"https://dashboard.dashboard.paysecureonline.com/api/ach/customer?page=1\"\n        },\n        \"first\": {\n            \"href\": \"https://dashboard.dashboard.paysecureonline.com/api/ach/customer?page=1\"\n        },\n        \"last\": {\n            \"href\": \"https://dashboard.dashboard.paysecureonline.com/api/ach/customer?page=1\"\n        },\n        \"next\": {\n            \"href\": https://dashboard.dashboard.paysecureonline.com/api/ach/customer?page=1\"\n        }\n    },\n    \"_meta\": {\n        \"totalCount\": 2,\n        \"pageCount\": 1,\n        \"currentPage\": 1,\n        \"perPage\": 30\n    }\n}"}],"_postman_id":"33b7f27d-f328-4528-8f6e-fafec0018600"},{"name":"View specific Customer","id":"7483702b-b57d-437f-bcac-0865578e52d5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/ach/customer/<id>","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"97060493-a487-4f0e-bc21-31fcf8ef1657","id":"97060493-a487-4f0e-bc21-31fcf8ef1657","name":"ACH Payments","type":"folder"}},"urlObject":{"path":["api","ach","customer","<id>"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"17c6d887-2823-47a4-93e1-88e013f0c162","name":"View specific Customer","originalRequest":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/ach/customer/45"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 45,\n    \"firstName\": \"John\",\n    \"lastName\": \"Wick\",\n    \"phone\": \"+1 818-727-1234\",\n    \"email\": \"john.wick@example.com\",\n    \"address1\": \"9024 Some Ave\",\n    \"address2\": null,\n    \"city\": \"LA\",\n    \"state\": \"CA\",\n    \"zipCode\": \"90069\",\n    \"accountName\": \"John Wick\",\n    \"accountNumber\": \"******7890\",\n    \"accountType\": \"Checking\",\n    \"routingNumber\": \"123456789\",\n    \"identifier\": null,\n    \"dba\": {\n        \"id\": 22\n    }\n}"}],"_postman_id":"7483702b-b57d-437f-bcac-0865578e52d5"},{"name":"Create Customer","id":"336a0b2d-7941-4fd2-a9ac-7220fd1c25fc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"firstName\": \"John\",\n    \"lastName\": \"Wick\",\n    \"phone\": \"+1 818-777-7777\",\n    \"email\": \"john@wick.com\",\n    \"address1\": \"26520 Agoura Road 1st Floor\",\n    \"address2\": \"\",\n    \"city\": \"CALABASAS\",\n    \"state\": \"CA\",\n    \"zipCode\": \"91302\",\n    \"accountName\": \"John Wick\",\n    \"accountNumber\": \"134567890\",\n    \"accountType\": \"Checking\",\n    \"routingNumber\": \"223456789\",\n    \"dba\": {\n        \"id\": \"9\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://dashboard.dashboard.paysecureonline.com/api/ach/customer","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"97060493-a487-4f0e-bc21-31fcf8ef1657","id":"97060493-a487-4f0e-bc21-31fcf8ef1657","name":"ACH Payments","type":"folder"}},"urlObject":{"path":["api","ach","customer"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"491422ec-3e47-4c52-94c3-2da08fbd32aa","name":"Create Customer","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"firstName\": \"John\",\n    \"lastName\": \"Smith\",\n    \"phone\": \"+1 818-777-7777\",\n    \"email\": \"john@wick.com\",\n    \"address1\": \"123 Agoura Road 1st Floor\",\n    \"address2\": \"\",\n    \"city\": \"CALABASAS\",\n    \"state\": \"CA\",\n    \"zipCode\": \"91302\",\n    \"accountName\": \"John Smith\",\n    \"accountNumber\": \"1234567890\",\n    \"accountType\": \"Checking\",\n    \"routingNumber\": \"123456789\",\n    \"identifier\": \"777\",\n    \"dba\": {\n        \"id\": \"9\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://dashboard.dashboard.paysecureonline.com/api/ach/customer"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"46\",\n    \"firstName\": \"John\",\n    \"lastName\": \"Smith\",\n    \"phone\": \"+1 818-777-7777\",\n    \"email\": \"john@wick.com\",\n    \"address1\": \"123 Agoura Road 1st Floor\",\n    \"address2\": null,\n    \"city\": \"CALABASAS\",\n    \"state\": \"CA\",\n    \"zipCode\": \"91302\",\n    \"accountName\": \"John Smith\",\n    \"accountNumber\": \"******7890\",\n    \"accountType\": \"Checking\",\n    \"routingNumber\": \"123456789\",\n    \"identifier\": \"777\",\n    \"dba\": {\n        \"id\": \"9\"\n    }\n}"}],"_postman_id":"336a0b2d-7941-4fd2-a9ac-7220fd1c25fc"},{"name":"Update Customer","id":"fdc02360-950e-41f5-b8e6-9177137aa0dc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"accountNumber\": \"1234567899\",\n    \"routingNumber\": \"123456789\",\n    \"address1\": \"26520 Agoura Road 1st Floor\"\n}","options":{"raw":{"language":"json"}}},"url":"https://dashboard.dashboard.paysecureonline.com/api/ach/customer/36","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"97060493-a487-4f0e-bc21-31fcf8ef1657","id":"97060493-a487-4f0e-bc21-31fcf8ef1657","name":"ACH Payments","type":"folder"}},"urlObject":{"path":["api","ach","customer","36"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"9fafce62-19df-435d-a04a-5447dc3829be","name":"Update Customer","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"accountNumber\": \"1234567899\",\n    \"routingNumber\": \"123456789\",\n    \"address1\": \"26520 Agoura Road 1st Floor\"\n}","options":{"raw":{"language":"json"}}},"url":"https://dashboard.dashboard.paysecureonline.com/api/ach/customer/36"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"fdc02360-950e-41f5-b8e6-9177137aa0dc"},{"name":"Delete a Customer","id":"95c64cc7-1dc9-427b-8c7e-9d1672501274","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/ach/customer/<id>","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"97060493-a487-4f0e-bc21-31fcf8ef1657","id":"97060493-a487-4f0e-bc21-31fcf8ef1657","name":"ACH Payments","type":"folder"}},"urlObject":{"path":["api","ach","customer","<id>"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"865a4df2-cf3f-4425-8763-d3c7a11d6840","name":"Delete a Customer","originalRequest":{"method":"DELETE","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/ach/customer/46"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"95c64cc7-1dc9-427b-8c7e-9d1672501274"}],"id":"22bff8b6-3c43-43a3-aa31-affa71d061bd","description":"<p>Use this endpoint to store customer information in your dashboard for quick ACH payment management.</p>\n<p>Customers Object</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Fields</th>\n<th>Description</th>\n<th>Type</th>\n<th>Filterable</th>\n<th>Required</th>\n<th>Readonly</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>Unique ID of the customer</td>\n<td>String</td>\n<td>Yes</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>firstName</td>\n<td>First name of the customer</td>\n<td>String</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>lastName</td>\n<td>Last name of the customer</td>\n<td>String</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>phone</td>\n<td>Phone number of the customer</td>\n<td>String</td>\n<td>Yes</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>email</td>\n<td>Email address of the customer</td>\n<td>String</td>\n<td>Yes</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>address1</td>\n<td>Address of the customer line 1</td>\n<td>String</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>address2</td>\n<td>Address of the customer line 2</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>city</td>\n<td>City of the customer</td>\n<td>String</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>state</td>\n<td>State of the customer. Example: NY, CA, etc...</td>\n<td>String</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>zipCode</td>\n<td>Zip Code of the customer</td>\n<td>Integer</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>accountName</td>\n<td>Name of the account</td>\n<td>String</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>routingNumber</td>\n<td>Routing Number</td>\n<td>String</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>accountNumber</td>\n<td>Access Number</td>\n<td>String</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>accountType</td>\n<td><code>Checking</code> or <code>Savings</code></td>\n<td>ENUM</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>identifier</td>\n<td>External Unique ID on a merchants platform</td>\n<td>String</td>\n<td>Yes</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>dba</td>\n<td>Object</td>\n<td>Object</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>dba.id</td>\n<td>DBA ID</td>\n<td>Integer</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"22bff8b6-3c43-43a3-aa31-affa71d061bd","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"97060493-a487-4f0e-bc21-31fcf8ef1657","id":"97060493-a487-4f0e-bc21-31fcf8ef1657","name":"ACH Payments","type":"folder"}}},{"name":"Bank Information","item":[{"name":"View","id":"0186e84b-f3eb-4451-9442-a870e89bff66","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/ach/aba/<aba>","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"97060493-a487-4f0e-bc21-31fcf8ef1657","id":"97060493-a487-4f0e-bc21-31fcf8ef1657","name":"ACH Payments","type":"folder"}},"urlObject":{"path":["api","ach","aba","<aba>"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"fba42d00-41ab-4e42-956d-a8598624e7af","name":"View","originalRequest":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/ach/aba/011000015"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"011000015\",\n    \"bank\": \"FEDERAL RESERVE BANK OF BOSTON\"\n}"}],"_postman_id":"0186e84b-f3eb-4451-9442-a870e89bff66"}],"id":"8d01b979-d20a-4652-8bab-fe176d07d38c","description":"<p>Utilizing this endpoing you can view/verify the bank inforamtion associated with an ABA/Routing Number.</p>\n<p>ABA Object</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Fields</th>\n<th>Description</th>\n<th>Type</th>\n<th>Filterable</th>\n<th>Required</th>\n<th>Readonly</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>ABA/Routing Number</td>\n<td>Integer</td>\n<td>Yes</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>bank</td>\n<td>Name of the bank</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"8d01b979-d20a-4652-8bab-fe176d07d38c","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"97060493-a487-4f0e-bc21-31fcf8ef1657","id":"97060493-a487-4f0e-bc21-31fcf8ef1657","name":"ACH Payments","type":"folder"}}},{"name":"ACH Settlements","item":[{"name":"List","id":"a205a98c-2c20-4cf0-afdf-093da5f4d0bf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/ach/settlements/<dbaId>","description":"<p>List settlements for a specific <code>dba.id</code></p>\n","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"97060493-a487-4f0e-bc21-31fcf8ef1657","id":"97060493-a487-4f0e-bc21-31fcf8ef1657","name":"ACH Payments","type":"folder"}},"urlObject":{"path":["api","ach","settlements","<dbaId>"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"c7225472-5c00-4d3d-97d3-61080db42c84","name":"List","originalRequest":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/ach/settlements/1"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"items\": [\n        {\n            \"settlement\": {\n                \"id\": 88757,\n                \"date\": \"2023-07-20 08:40:00\",\n                \"amount\": \"3500.00\",\n                \"type\": \"Origination File Settlement\"\n            },\n            \"approvedDebits\": \"3500.00\",\n            \"approvedCredits\": \"0.00\",\n            \"fees\": {\n                \"debitCredit\": \"0.00\",\n                \"noc\": \"0.00\",\n                \"return\": \"0.00\",\n                \"lateReturn\": \"0.00\",\n                \"admin\": \"0.00\"\n            },\n            \"reserve\": \"0.00\",\n            \"discount\": \"0.00\",\n            \"lateReturns\": \"0.00\",\n            \"hasDetails\": \"Yes\"\n        },\n        {\n            \"settlement\": {\n                \"id\": 88329,\n                \"date\": \"2023-07-17 08:47:00\",\n                \"amount\": \"10750.00\",\n                \"type\": \"Origination File Settlement\"\n            },\n            \"approvedDebits\": \"10750.00\",\n            \"approvedCredits\": \"0.00\",\n            \"fees\": {\n                \"debitCredit\": \"0.00\",\n                \"noc\": \"0.00\",\n                \"return\": \"0.00\",\n                \"lateReturn\": \"0.00\",\n                \"admin\": \"0.00\"\n            },\n            \"reserve\": \"0.00\",\n            \"discount\": \"0.00\",\n            \"lateReturns\": \"0.00\",\n            \"hasDetails\": \"Yes\"\n        }\n    ],\n    \"_links\": {\n        \"self\": {\n            \"href\": \"https://dashboard.dashboard.paysecureonline.com/api/ach/settlements/1732?page=1\"\n        },\n        \"first\": {\n            \"href\": \"https://dashboard.dashboard.paysecureonline.com/api/ach/settlements/1732?page=1\"\n        },\n        \"last\": {\n            \"href\": \"https://dashboard.dashboard.paysecureonline.com/api/ach/settlements/1732?page=1\"\n        },\n        \"next\": {\n            \"href\": \"https://dashboard.dashboard.paysecureonline.com/api/ach/settlements/1732?page=1\"\n        }\n    },\n    \"_meta\": {\n        \"totalCount\": 2,\n        \"pageCount\": 1,\n        \"currentPage\": 1,\n        \"perPage\": 30\n    }\n}"}],"_postman_id":"a205a98c-2c20-4cf0-afdf-093da5f4d0bf"},{"name":"View","id":"d208ea93-d8a7-4855-bff7-093a2f1534b1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/ach/settlements/<dbaId>/details/<settlementId>","description":"<p>Get settlement details for the given <code>dba.id</code> and <code>settlement.id</code></p>\n<p>Settlement Details Object</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Fields</th>\n<th>Description</th>\n<th>Type</th>\n<th>Filterable</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>transaction</td>\n<td>Transaction Object</td>\n<td>Object</td>\n<td>No</td>\n</tr>\n<tr>\n<td>transaction.id</td>\n<td>Transaction ID</td>\n<td>Integer</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>transaction.type</td>\n<td>Transaction Type <code>debit</code>, <code>credit</code></td>\n<td>ENUM</td>\n<td>No</td>\n</tr>\n<tr>\n<td>amount</td>\n<td>Total Amount</td>\n<td>Number</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>customerId</td>\n<td>Customer ID</td>\n<td>String</td>\n<td>No</td>\n</tr>\n<tr>\n<td>accountName</td>\n<td>Account Name</td>\n<td>String</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"97060493-a487-4f0e-bc21-31fcf8ef1657","id":"97060493-a487-4f0e-bc21-31fcf8ef1657","name":"ACH Payments","type":"folder"}},"urlObject":{"path":["api","ach","settlements","<dbaId>","details","<settlementId>"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"56dee35c-f019-4dbc-9644-6c927f1b6e27","name":"View","originalRequest":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/ach/settlements/1/details/88757"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"items\": [\n        {\n            \"transaction\": {\n                \"id\": 92297509,\n                \"type\": \"credit\"\n            },\n            \"amount\": \"3500.00\",\n            \"customerId\": \"D1732A4527467\",\n            \"accountName\": \"Checking\"\n        }\n    ],\n    \"_links\": {\n        \"self\": {\n            \"href\": \"https://dashboard.dashboard.paysecureonline.com/api/ach/settlements/1732/details/88757?page=1\"\n        },\n        \"first\": {\n            \"href\": \"https://dashboard.dashboard.paysecureonline.com/api/ach/settlements/1732/details/88757?page=1\"\n        },\n        \"last\": {\n            \"href\": \"https://dashboard.dashboard.paysecureonline.com/api/ach/settlements/1732/details/88757?page=1\"\n        }\n    },\n    \"_meta\": {\n        \"totalCount\": 1,\n        \"pageCount\": 1,\n        \"currentPage\": 1,\n        \"perPage\": 30\n    }\n}"}],"_postman_id":"d208ea93-d8a7-4855-bff7-093a2f1534b1"}],"id":"f82fa4d6-dc4b-40ed-acc9-50696167f9a3","description":"<p>Utilizing this endpoint you can view your ACH settlement details</p>\n<p>Settlement Object</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Fields</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>settlement</td>\n<td>Settlement Object</td>\n<td>Object</td>\n</tr>\n<tr>\n<td>settlement.id</td>\n<td>Settlement ID</td>\n<td>Integer</td>\n</tr>\n<tr>\n<td>settlement.date</td>\n<td>Settlement Date</td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>settlement.amount</td>\n<td>Settlement Amount</td>\n<td>Number</td>\n</tr>\n<tr>\n<td>settlement.type</td>\n<td>Settlement Type <code>Origination File Settlement</code>,<code>Late Return</code>,<code>ATMVerify Fee Only Settlement</code>,<code>Reserved for Future Use</code>,<code>Reserve Release</code>,<code>Transaction Fee Only Settlement</code></td>\n<td>ENUM</td>\n</tr>\n<tr>\n<td>approvedDebits</td>\n<td>Approved Debit Amount</td>\n<td>Number</td>\n</tr>\n<tr>\n<td>approvedCredits</td>\n<td>Approved Credit Amount</td>\n<td>Number</td>\n</tr>\n<tr>\n<td>fees</td>\n<td>Fees Object</td>\n<td>Object</td>\n</tr>\n<tr>\n<td>fees.debitCredit</td>\n<td>Debit/Credit Fee Amount</td>\n<td>Number</td>\n</tr>\n<tr>\n<td>fees.noc</td>\n<td>NOC Fee Amount</td>\n<td>Number</td>\n</tr>\n<tr>\n<td>fees.return</td>\n<td>Return Fee Amount</td>\n<td>Number</td>\n</tr>\n<tr>\n<td>fees.lateReturn</td>\n<td>Late Return Fee Amount</td>\n<td>Number</td>\n</tr>\n<tr>\n<td>fees.admin</td>\n<td>Administrative Fee Amount</td>\n<td>Number</td>\n</tr>\n<tr>\n<td>reserve</td>\n<td>Total Reserve Amount</td>\n<td>Number</td>\n</tr>\n<tr>\n<td>discount</td>\n<td>Total Discount Amount</td>\n<td>Number</td>\n</tr>\n<tr>\n<td>lateReturns</td>\n<td>Total Late Returns Amount</td>\n<td>Number</td>\n</tr>\n<tr>\n<td>hasDetails</td>\n<td>Flag whether Details are attached <code>Yes</code> or <code>No</code></td>\n<td>ENUM</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"f82fa4d6-dc4b-40ed-acc9-50696167f9a3","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"97060493-a487-4f0e-bc21-31fcf8ef1657","id":"97060493-a487-4f0e-bc21-31fcf8ef1657","name":"ACH Payments","type":"folder"}}}],"id":"97060493-a487-4f0e-bc21-31fcf8ef1657","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":false},"event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""]}},{"listen":"test","script":{"type":"text/javascript","exec":[""]}}],"_postman_id":"97060493-a487-4f0e-bc21-31fcf8ef1657","description":""},{"name":"Merchants","item":[{"name":"Terminals","item":[{"name":"List Terminals","id":"ad71792b-51a1-42f0-a926-5d5dcb9b943b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/terminals","description":"<p>List all terminals with their associated <code>merchant.id</code> and <code>dba.id</code></p>\n","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"de51b6c3-397c-4aeb-8dfd-95faa7ce38ec","id":"de51b6c3-397c-4aeb-8dfd-95faa7ce38ec","name":"Merchants","type":"folder"}},"urlObject":{"path":["api","terminals"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"62317a82-d764-49d7-96bc-c149f00fa678","name":"List Terminals","originalRequest":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/terminals"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"items\": [\n        {\n            \"id\": 1,\n            \"name\": \"ACME Corporation\",\n            \"principals\": [\n                {\n                    \"id\": 12,\n                    \"name\": {\n                        \"first\": \"Elmer\",\n                        \"last\": \"Fudd\"\n                    },\n                    \"isSigner\": \"Yes\",\n                    \"isPersonalGuarantee\": \"Yes\",\n                    \"ownershipPercentage\": 100\n                }\n            ],\n            \"dbas\": [\n                {\n                    \"id\": 14,\n                    \"name\": \"ACME\",\n                    \"address\": {\n                        \"street\": null,\n                        \"city\": null,\n                        \"zip\": null,\n                        \"state\": [\n                            null\n                        ],\n                        \"country\": [\n                            199\n                        ]\n                    },\n                    \"customerServiceContact\": {\n                        \"phone\": \"+1 818-707-1234\",\n                        \"email\": \"email@email.com\"\n                    },\n                    \"processing\": {\n                        \"id\": 4,\n                        \"mid\": 1231231231231312,\n                        \"bank\": {\n                            \"name\": \"Axiom Bank\",\n                            \"accountNumber\": \"8888\"\n                        },\n                        \"mcc\": \"5899\",\n                        \"riskLevel\": \"Low\",\n                        \"status\": \"Live\",\n                        \"boardedOn\": \"2020-11-27 11:59:26\",\n                        \"volumes\": {\n                            \"monthlyTransactionAmount\": 1000,\n                            \"avgTransactionAmount\": 10,\n                            \"maxTransactionAmount\": 100\n                        },\n                        \"sales\": {\n                            \"swiped\": 70,\n                            \"mail\": 30,\n                            \"internet\": 0\n                        },\n                        \"feeSchedule\": {\n                            \"fees\": [\n                                {\n                                    \"id\": 49,\n                                    \"type\": {\n                                        \"id\": 1\n                                    },\n                                    \"value\": \"0.00000\"\n                                },\n                                {\n                                    \"id\": 50,\n                                    \"type\": {\n                                        \"id\": 2\n                                    },\n                                    \"value\": \"0.00000\"\n                                },\n                                {\n                                    \"id\": 51,\n                                    \"type\": {\n                                        \"id\": 3\n                                    },\n                                    \"value\": \"0.00000\"\n                                },\n                                {\n                                    \"id\": 52,\n                                    \"type\": {\n                                        \"id\": 4\n                                    },\n                                    \"value\": \"0.00000\"\n                                },\n                                {\n                                    \"id\": 53,\n                                    \"type\": {\n                                        \"id\": 5\n                                    },\n                                    \"value\": \"0.00000\"\n                                },\n                                {\n                                    \"id\": 54,\n                                    \"type\": {\n                                        \"id\": 6\n                                    },\n                                    \"value\": \"0.00000\"\n                                },\n                                {\n                                    \"id\": 55,\n                                    \"type\": {\n                                        \"id\": 7\n                                    },\n                                    \"value\": \"0.75000\"\n                                },\n                                {\n                                    \"id\": 56,\n                                    \"type\": {\n                                        \"id\": 8\n                                    },\n                                    \"value\": \"0.00000\"\n                                },\n                                {\n                                    \"id\": 57,\n                                    \"type\": {\n                                        \"id\": 9\n                                    },\n                                    \"value\": \"0.00000\"\n                                },\n                                {\n                                    \"id\": 58,\n                                    \"type\": {\n                                        \"id\": 10\n                                    },\n                                    \"value\": \"0.00000\"\n                                },\n                                {\n                                    \"id\": 59,\n                                    \"type\": {\n                                        \"id\": 11\n                                    },\n                                    \"value\": \"5.00000\"\n                                },\n                                {\n                                    \"id\": 60,\n                                    \"type\": {\n                                        \"id\": 12\n                                    },\n                                    \"value\": \"25.00000\"\n                                },\n                                {\n                                    \"id\": 61,\n                                    \"type\": {\n                                        \"id\": 13\n                                    },\n                                    \"value\": \"0.00000\"\n                                },\n                                {\n                                    \"id\": 62,\n                                    \"type\": {\n                                        \"id\": 14\n                                    },\n                                    \"value\": \"0.00000\"\n                                },\n                                {\n                                    \"id\": 63,\n                                    \"type\": {\n                                        \"id\": 15\n                                    },\n                                    \"value\": \"0.05000\"\n                                },\n                                {\n                                    \"id\": 64,\n                                    \"type\": {\n                                        \"id\": 16\n                                    },\n                                    \"value\": \"35.00000\"\n                                },\n                                {\n                                    \"id\": 65,\n                                    \"type\": {\n                                        \"id\": 17\n                                    },\n                                    \"value\": \"5.00000\"\n                                },\n                                {\n                                    \"id\": 66,\n                                    \"type\": {\n                                        \"id\": 18\n                                    },\n                                    \"value\": \"0.00000\"\n                                },\n                                {\n                                    \"id\": 67,\n                                    \"type\": {\n                                        \"id\": 18\n                                    },\n                                    \"value\": \"0.00000\"\n                                },\n                                {\n                                    \"id\": 68,\n                                    \"type\": {\n                                        \"id\": 18\n                                    },\n                                    \"value\": \"0.00000\"\n                                },\n                                {\n                                    \"id\": 69,\n                                    \"type\": {\n                                        \"id\": 19\n                                    },\n                                    \"value\": \"0.00000\"\n                                },\n                                {\n                                    \"id\": 70,\n                                    \"type\": {\n                                        \"id\": 20\n                                    },\n                                    \"value\": \"0.00000\"\n                                },\n                                {\n                                    \"id\": 71,\n                                    \"type\": {\n                                        \"id\": 21\n                                    },\n                                    \"value\": \"0.00000\"\n                                },\n                                {\n                                    \"id\": 72,\n                                    \"type\": {\n                                        \"id\": 22\n                                    },\n                                    \"value\": \"0.00000\"\n                                }\n                            ],\n                            \"note\": null\n                        }\n                    },\n                    \"ach\": {\n                        \"id\": 13,\n                        \"bank\": {\n                            \"name\": \"Mufg Union Bank, NA\",\n                            \"accountNumber\": \"123456\"\n                        },\n                        \"riskLevel\": \"Low\",\n                        \"status\": \"Inactive\",\n                        \"boardedOn\": \"2020-11-27 11:59:26\",\n                        \"volumes\": {\n                            \"monthlyTransactions\": 100,\n                            \"avgMonthlyTransactionAmount\": 10,\n                            \"avgTransactionAmount\": 100,\n                            \"maxTransactionAmount\": 1000\n                        },\n                        \"feeSchedule\": {\n                            \"fees\": [\n                                {\n                                    \"id\": 145,\n                                    \"type\": {\n                                        \"id\": 25\n                                    },\n                                    \"value\": \"0.00000\"\n                                },\n                                {\n                                    \"id\": 146,\n                                    \"type\": {\n                                        \"id\": 26\n                                    },\n                                    \"value\": \"0.00000\"\n                                },\n                                {\n                                    \"id\": 147,\n                                    \"type\": {\n                                        \"id\": 27\n                                    },\n                                    \"value\": \"0.00000\"\n                                },\n                                {\n                                    \"id\": 148,\n                                    \"type\": {\n                                        \"id\": 28\n                                    },\n                                    \"value\": \"0.00000\"\n                                },\n                                {\n                                    \"id\": 149,\n                                    \"type\": {\n                                        \"id\": 29\n                                    },\n                                    \"value\": \"0.00000\"\n                                },\n                                {\n                                    \"id\": 150,\n                                    \"type\": {\n                                        \"id\": 30\n                                    },\n                                    \"value\": \"0.00000\"\n                                },\n                                {\n                                    \"id\": 151,\n                                    \"type\": {\n                                        \"id\": 31\n                                    },\n                                    \"value\": \"0.00000\"\n                                },\n                                {\n                                    \"id\": 152,\n                                    \"type\": {\n                                        \"id\": 32\n                                    },\n                                    \"value\": \"0.00000\"\n                                },\n                                {\n                                    \"id\": 153,\n                                    \"type\": {\n                                        \"id\": 33\n                                    },\n                                    \"value\": \"0.00000\"\n                                },\n                                {\n                                    \"id\": 154,\n                                    \"type\": {\n                                        \"id\": 35\n                                    },\n                                    \"value\": \"0.00000\"\n                                },\n                                {\n                                    \"id\": 155,\n                                    \"type\": {\n                                        \"id\": 35\n                                    },\n                                    \"value\": \"0.00000\"\n                                },\n                                {\n                                    \"id\": 156,\n                                    \"type\": {\n                                        \"id\": 35\n                                    },\n                                    \"value\": \"0.00000\"\n                                }\n                            ],\n                            \"note\": null\n                        }\n                    }\n                }\n            ]\n        }\n    ],\n    \"_links\": {\n        \"self\": {\n            \"href\": \"https://dashboard.dashboard.paysecureonline.com/api/merchant?page=1\"\n        },\n        \"first\": {\n            \"href\": \"https://dashboard.dashboard.paysecureonline.com/api/merchant?page=1\"\n        },\n        \"last\": {\n            \"href\": \"https://dashboard.dashboard.paysecureonline.com/api/merchant?page=1\"\n        }\n    },\n    \"_meta\": {\n        \"totalCount\": 1,\n        \"pageCount\": 1,\n        \"currentPage\": 1,\n        \"perPage\": 30\n    }\n}"}],"_postman_id":"ad71792b-51a1-42f0-a926-5d5dcb9b943b"},{"name":"View a specific Terminal","id":"3349b703-c99d-420a-8754-28d3dcf67cba","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/terminal/<id>","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"de51b6c3-397c-4aeb-8dfd-95faa7ce38ec","id":"de51b6c3-397c-4aeb-8dfd-95faa7ce38ec","name":"Merchants","type":"folder"}},"urlObject":{"path":["api","terminal","<id>"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"3682e38c-9194-413a-8db3-cdc360eceb8a","name":"View a specific Terminal","originalRequest":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/terminal/1"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"1\",\n    \"dba\": {\n        \"id\": \"1\",\n        \"name\": \"ACME\"\n    },\n    \"merchant\": {\n        \"id\": \"1\",\n        \"name\": \"ACME Corporation\"\n    },\n    \"name\": \"ACME Terminal\",\n    \"tid\": 7000,\n    \"vNumber\": \"123456\",\n    \"gateway\": {\n        \"provider\": \"Other\",\n        \"activatedOn\": \"2021-10-11 05:08:18\",\n        \"3DsStatus\": \"Unavailable\"\n    },\n    \"feeTerminalId\": null,\n    \"website\": \"https://www.example.com\",\n    \"note\": \"Demo note\",\n    \"cardTypes\": {\n        \"acceptVisa\": \"No\",\n        \"acceptMastercard\": \"No\",\n        \"acceptDiscover\": \"No\",\n        \"acceptAmericanExpress\": \"No\",\n        \"acceptPinDebit\": \"No\",\n        \"acceptEbt\": \"No\",\n        \"acceptGiftCard\": \"No\"\n    },\n    \"chain\": \"4\",\n    \"agentBank\": \"4\",\n    \"storeNumber\": \"0001\",\n    \"locationNumber\": \"00001\"\n    \"createdOn\": \"2019-02-06 13:55:35\",\n}"}],"_postman_id":"3349b703-c99d-420a-8754-28d3dcf67cba"},{"name":"VAR Sheet","id":"fe156c2a-fe01-4e2a-8085-d668558d62d2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/terminal/<id>/var-download","description":"<p>By utilizing this endpoint you can download a pdf file containing the terminal information, also known as VAR Sheet.</p>\n","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"de51b6c3-397c-4aeb-8dfd-95faa7ce38ec","id":"de51b6c3-397c-4aeb-8dfd-95faa7ce38ec","name":"Merchants","type":"folder"}},"urlObject":{"path":["api","terminal","<id>","var-download"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[],"_postman_id":"fe156c2a-fe01-4e2a-8085-d668558d62d2"},{"name":"VAR View","id":"9205af46-ea38-421a-92d1-cd9bb1798b2c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/terminal/<id>/var-list","description":"<p>By utilizing this endpoint you can view VAR sheet data for a specific terminal</p>\n","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"de51b6c3-397c-4aeb-8dfd-95faa7ce38ec","id":"de51b6c3-397c-4aeb-8dfd-95faa7ce38ec","name":"Merchants","type":"folder"}},"urlObject":{"path":["api","terminal","<id>","var-list"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"e09cbf94-0e82-4ed0-b913-adbb0317e749","name":"VAR View","originalRequest":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/terminal/1/var-list"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"streetAddress\": \"123 Oakmound Road\",\n    \"city\": \"Chicago\",\n    \"state\": \"Illinois\",\n    \"zip\": \"71101\",\n    \"customerServicePhone\": \"+1 234-555-5555\",\n    \"merchantNumber\": \"111122223333\",\n    \"mcc\": \"5814\",\n    \"bin\": 494306,\n    \"vNumber\": \"V8888811\",\n    \"approvedMonthlyVolume\": \"$25,000.00\"\n}"}],"_postman_id":"9205af46-ea38-421a-92d1-cd9bb1798b2c"}],"id":"70cdd429-4a6d-47ec-8cc1-5558797efc80","description":"<p>By utilizing this endpoint you can read all terminal/s related information for a specific merchant.</p>\n<p>Terminal Object</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Fields</th>\n<th>Description</th>\n<th>Type</th>\n<th>Filterable</th>\n<th>Required</th>\n<th>Readonly</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>Unique system ID of the terminal</td>\n<td>Integer</td>\n<td>Yes</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>dba</td>\n<td>DBA Object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>dba.id</td>\n<td>Unique ID of the DBA record</td>\n<td>Integer</td>\n<td>Yes</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>dba.name</td>\n<td>Merchant DBA</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>merchant</td>\n<td>Merchant Object</td>\n<td>Integer</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>merchant.id</td>\n<td>Unique ID of the merchant</td>\n<td>Integer</td>\n<td>Yes</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>merchant.name</td>\n<td>Merchant Legal name</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>name</td>\n<td>A name assigned to the merchant terminal</td>\n<td>String</td>\n<td>Yes</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>tid</td>\n<td>Terminal Identification Number</td>\n<td>Integer</td>\n<td>Yes</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>vNumber</td>\n<td>Vital Service Number – Terminal Identifier</td>\n<td>String</td>\n<td>Yes</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>gateway</td>\n<td>Getaway Object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>gateway.provider</td>\n<td>The gateway provider - <code>Internal</code> <code>Other</code></td>\n<td>ENUM</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>gateway.activatedOn</td>\n<td>Date of activation</td>\n<td>Datetime</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>gateway.3DsStatus</td>\n<td>3Ds terminal configuration <code>Unavailable</code> <code>Optional</code> <code>Required</code></td>\n<td>ENUM</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>feeTerminalId</td>\n<td>ID of the fee terminal</td>\n<td>Integer</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>website</td>\n<td>Website</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>note</td>\n<td>Notes on the terminal written by Underwriting</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>cardTypes</td>\n<td>Card Types Object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>cardTypes.acceptVisa</td>\n<td>Configured to accept Visa <code>Yes</code> <code>No</code></td>\n<td>ENUM</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>cardTypes.acceptMastercard</td>\n<td>Configured to accept Mastercard <code>Yes</code> <code>No</code></td>\n<td>ENUM</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>cardTypes.acceptDiscover</td>\n<td>Configured to accept Discover <code>Yes</code> <code>No</code></td>\n<td>ENUM</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>cardTypes.acceptAmericanExpress</td>\n<td>Configured to accept AmericanExpress <code>Yes</code> <code>No</code></td>\n<td>ENUM</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>cardTypes.acceptPinDebit</td>\n<td>Configured to accept PinDebit <code>Yes</code> <code>No</code></td>\n<td>ENUM</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>cardTypes.acceptEbt</td>\n<td>Configured to accept Ebt <code>Yes</code> <code>No</code></td>\n<td>ENUM</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>cardTypes.acceptGiftCard</td>\n<td>Configured to accept GiftCard <code>Yes</code> <code>No</code></td>\n<td>ENUM</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>chain</td>\n<td>A six-digit number that identifies a merchant's chain of locations or stores</td>\n<td>Integer</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>agentBank</td>\n<td>A six-digit number identifying the processing bank</td>\n<td>Integer</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>storeNumber</td>\n<td>A four-digit number that identifies a terminals location at the merchant site</td>\n<td>Integer</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>locationNumber</td>\n<td>A five digit number that identifies the store location. Start with 00001</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>createdOn</td>\n<td>Date and Time of creation</td>\n<td>Datetime</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"70cdd429-4a6d-47ec-8cc1-5558797efc80","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"de51b6c3-397c-4aeb-8dfd-95faa7ce38ec","id":"de51b6c3-397c-4aeb-8dfd-95faa7ce38ec","name":"Merchants","type":"folder"}}},{"name":"List Merchants","id":"d195b854-d735-4c48-adfa-73a072252cd5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/merchant","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"de51b6c3-397c-4aeb-8dfd-95faa7ce38ec","id":"de51b6c3-397c-4aeb-8dfd-95faa7ce38ec","name":"Merchants","type":"folder"}},"urlObject":{"path":["api","merchant"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"12900ab7-93c5-4209-9741-4800a022c18a","name":"List Merchants","originalRequest":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/merchant"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n  \"items\": [\n      {\n                  \"id\": \"1\",\n                  \"name\": \"Demo Merchant Inc\",\n                  \"principals\": [\n                      {\n                          \"name\": {\n                              \"first\": \"S\",\n                              \"last\": \"P\"\n                          },\n                          \"isSigner\": \"Yes\",\n                          \"isPersonalGuarantee\": \"Yes\",\n                          \"ownershipPercentage\": 51\n                      },\n                      {\n                          \"name\": {\n                              \"first\": \"gosho\",\n                              \"last\": \"goshev\"\n                          },\n                          \"isSigner\": \"Yes\",\n                          \"isPersonalGuarantee\": \"No\",\n                          \"ownershipPercentage\": 12\n                      }\n                  ],\n                  \"dbas\": [\n                      {\n                          \"id\": \"1\",\n                          \"name\": \"Demo Merchant DBA\",\n                          \"address\": {\n                              \"street\": \"Lorem 15\",\n                              \"city\": \"Valhala\",\n                              \"zip\": \"2222\",\n                              \"state\": [\n                                  15\n                              ],\n                              \"country\": [\n                                  199\n                              ]\n                          },\n                          \"customerServiceContact\": {\n                              \"phone\": \"+1 717-888-8888\",\n                              \"email\": \"demo-merchant@manky.org\"\n                          },\n                          \"processing\": {\n                              \"mid\": \"201143806445\",\n                              \"bank\": {\n                                  \"name\": \"Esquire Bank\",\n                                  \"accountNumber\": \"3456\"\n                              },\n                              \"mcc\": \"5734\",\n                              \"status\": \"Closed\",\n                              \"boardedOn\": \"2019-02-06 12:00:00\",\n                              \"closedOn\": \"2022-02-16 15:38:33\",\n                              \"volumes\": {\n                                  \"monthlyTransactionAmount\": 7000000,\n                                  \"avgTransactionAmount\": 700,\n                                  \"maxTransactionAmount\": 7000\n                              },\n                              \"sales\": {\n                                  \"swiped\": 30,\n                                  \"mail\": 10,\n                                  \"internet\": 60\n                              },\n                              \"feeSchedule\": {\n                                  \"fees\": [\n                                      {\n                                          \"id\": \"1\",\n                                          \"type\": {\n                                              \"id\": \"1\"\n                                          },\n                                          \"value\": \"0.00000\"\n                                      },\n                                      {\n                                          \"id\": \"2\",\n                                          \"type\": {\n                                              \"id\": \"2\"\n                                          },\n                                          \"value\": \"0.00000\"\n                                      },\n                                      {\n                                          \"id\": \"3\",\n                                          \"type\": {\n                                              \"id\": \"3\"\n                                          },\n                                          \"value\": \"0.00000\"\n                                      },\n                                      {\n                                          \"id\": \"4\",\n                                          \"type\": {\n                                              \"id\": \"4\"\n                                          },\n                                          \"value\": \"0.00000\"\n                                      },\n                                      {\n                                          \"id\": \"5\",\n                                          \"type\": {\n                                              \"id\": \"5\"\n                                          },\n                                          \"value\": \"0.00000\"\n                                      },\n                                      {\n                                          \"id\": \"6\",\n                                          \"type\": {\n                                              \"id\": \"6\"\n                                          },\n                                          \"value\": \"0.00000\"\n                                      },\n                                      {\n                                          \"id\": \"7\",\n                                          \"type\": {\n                                              \"id\": \"7\"\n                                          },\n                                          \"value\": \"0.75000\"\n                                      },\n                                      {\n                                          \"id\": \"8\",\n                                          \"type\": {\n                                              \"id\": \"8\"\n                                          },\n                                          \"value\": \"0.00000\"\n                                      },\n                                      {\n                                          \"id\": \"9\",\n                                          \"type\": {\n                                              \"id\": \"9\"\n                                          },\n                                          \"value\": \"0.00000\"\n                                      },\n                                      {\n                                          \"id\": \"10\",\n                                          \"type\": {\n                                              \"id\": \"10\"\n                                          },\n                                          \"value\": \"0.00000\"\n                                      },\n                                      {\n                                          \"id\": \"11\",\n                                          \"type\": {\n                                              \"id\": \"11\"\n                                          },\n                                          \"value\": \"5.00000\"\n                                      },\n                                      {\n                                          \"id\": \"12\",\n                                          \"type\": {\n                                              \"id\": \"12\"\n                                          },\n                                          \"value\": \"25.00000\"\n                                      },\n                                      {\n                                          \"id\": \"13\",\n                                          \"type\": {\n                                              \"id\": \"13\"\n                                          },\n                                          \"value\": \"0.00000\"\n                                      },\n                                      {\n                                          \"id\": \"14\",\n                                          \"type\": {\n                                              \"id\": \"14\"\n                                          },\n                                          \"value\": \"0.00000\"\n                                      },\n                                      {\n                                          \"id\": \"15\",\n                                          \"type\": {\n                                              \"id\": \"15\"\n                                          },\n                                          \"value\": \"0.05000\"\n                                      },\n                                      {\n                                          \"id\": \"16\",\n                                          \"type\": {\n                                              \"id\": \"16\"\n                                          },\n                                          \"value\": \"35.00000\"\n                                      },\n                                      {\n                                          \"id\": \"17\",\n                                          \"type\": {\n                                              \"id\": \"17\"\n                                          },\n                                          \"value\": \"5.00000\"\n                                      },\n                                      {\n                                          \"id\": \"18\",\n                                          \"type\": {\n                                              \"id\": \"18\"\n                                          },\n                                          \"value\": \"0.00000\"\n                                      },\n                                      {\n                                          \"id\": \"19\",\n                                          \"type\": {\n                                              \"id\": \"20\"\n                                          },\n                                          \"value\": \"0.00000\"\n                                      },\n                                      {\n                                          \"id\": \"20\",\n                                          \"type\": {\n                                              \"id\": \"18\"\n                                          },\n                                          \"value\": \"0.00000\"\n                                      },\n                                      {\n                                          \"id\": \"21\",\n                                          \"type\": {\n                                              \"id\": \"18\"\n                                          },\n                                          \"value\": \"0.00000\"\n                                      }\n                                  ],\n                                  \"note\": null\n                              }\n                          },\n                          \"ach\": {\n                              \"id\": \"14\",\n                              \"bank\": {\n                                  \"name\": \"BANK OF AMERICA CALIFORNIA, NA\",\n                                  \"accountNumber\": \"8889\"\n                              },\n                              \"status\": \"Inactive\",\n                              \"boardedOn\": \"2020-04-14 17:04:37\",\n                              \"volumes\": {\n                                  \"monthlyTransactions\": 4,\n                                  \"avgMonthlyTransactionAmount\": 5,\n                                  \"avgTransactionAmount\": 6,\n                                  \"maxTransactionAmount\": 7\n                              },\n                              \"feeSchedule\": {\n                                  \"fees\": [\n                                      {\n                                          \"id\": \"145\",\n                                          \"type\": {\n                                              \"id\": \"25\"\n                                          },\n                                          \"value\": \"2.00000\"\n                                      },\n                                      {\n                                          \"id\": \"146\",\n                                          \"type\": {\n                                              \"id\": \"26\"\n                                          },\n                                          \"value\": \"2.00000\"\n                                      },\n                                      {\n                                          \"id\": \"147\",\n                                          \"type\": {\n                                              \"id\": \"27\"\n                                          },\n                                          \"value\": \"2.00000\"\n                                      },\n                                      {\n                                          \"id\": \"148\",\n                                          \"type\": {\n                                              \"id\": \"28\"\n                                          },\n                                          \"value\": \"2.00000\"\n                                      },\n                                      {\n                                          \"id\": \"149\",\n                                          \"type\": {\n                                              \"id\": \"29\"\n                                          },\n                                          \"value\": \"2.00000\"\n                                      },\n                                      {\n                                          \"id\": \"150\",\n                                          \"type\": {\n                                              \"id\": \"30\"\n                                          },\n                                          \"value\": \"2.00000\"\n                                      },\n                                      {\n                                          \"id\": \"151\",\n                                          \"type\": {\n                                              \"id\": \"31\"\n                                          },\n                                          \"value\": \"2.00000\"\n                                      },\n                                      {\n                                          \"id\": \"152\",\n                                          \"type\": {\n                                              \"id\": \"32\"\n                                          },\n                                          \"value\": \"2.00000\"\n                                      },\n                                      {\n                                          \"id\": \"153\",\n                                          \"type\": {\n                                              \"id\": \"33\"\n                                          },\n                                          \"value\": \"2.00000\"\n                                      },\n                                      {\n                                          \"id\": \"154\",\n                                          \"type\": {\n                                              \"id\": \"35\"\n                                          },\n                                          \"value\": \"2.00000\"\n                                      },\n                                      {\n                                          \"id\": \"155\",\n                                          \"type\": {\n                                              \"id\": \"35\"\n                                          },\n                                          \"value\": \"2.00000\"\n                                      },\n                                      {\n                                          \"id\": \"156\",\n                                          \"type\": {\n                                              \"id\": \"35\"\n                                          },\n                                          \"value\": \"2.00000\"\n                                      }\n                                  ],\n                                  \"note\": \"2\"\n                              }\n                          }\n                      }\n  ],\n  \"_links\": {\n    \"self\": {\n      \"href\": \"https://dashboard.dashboard.paysecureonline.com/api/merchant?page=1\"\n    },\n    \"first\": {\n      \"href\": \"https://dashboard.dashboard.paysecureonline.com/api/merchant?page=1\"\n    },\n    \"last\": {\n      \"href\": \"https://dashboard.dashboard.paysecureonline.com/api/merchant?page=1\"\n    }\n  },\n  \"_meta\": {\n    \"totalCount\": 1,\n    \"pageCount\": 1,\n    \"currentPage\": 1,\n    \"perPage\": 30\n  }\n}"}],"_postman_id":"d195b854-d735-4c48-adfa-73a072252cd5"}],"id":"de51b6c3-397c-4aeb-8dfd-95faa7ce38ec","description":"<p>This endpoint is used to view all Merchant account related inforamtion.</p>\n<p>Merchants Object</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Fields</th>\n<th>Description</th>\n<th>Type</th>\n<th>Filterable</th>\n<th>Required</th>\n<th>Readonly</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>Unique ID of the DBA record</td>\n<td>Integer</td>\n<td>Yes</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>name</td>\n<td>Name of the DBA</td>\n<td>String</td>\n<td>Yes</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>principals</td>\n<td>List of principals and details</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>principals.name</td>\n<td>Name Object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>principals.name.first</td>\n<td>First Name</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>principals.name.last</td>\n<td>Last Name</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>principals.isSigner</td>\n<td><code>Yes</code>, <code>No</code>(If this is the individual you want to list as signer)</td>\n<td>ENUM</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>principals.isPersonalGuarantee</td>\n<td><code>Yes</code>, <code>No</code>(If this is the individual you want to list as guarantee)</td>\n<td>ENUM</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>principals.ownershipPercentage</td>\n<td>Percentage of ownership</td>\n<td>Integer</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>dbas</td>\n<td>List of DBA's and details</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>dbas.id</td>\n<td>Unique ID of the DBA record</td>\n<td>Integer</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>dbas.name</td>\n<td>Name of the DBA</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>dbas.address</td>\n<td>Object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>dbas.address.street</td>\n<td>Street</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>dbas.address.city</td>\n<td>City</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>dbas.address.zip</td>\n<td>Zip code</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>dbas.address.state</td>\n<td>Object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>dbas.address.state.id</td>\n<td>State ID</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>dbas.address.country</td>\n<td>Object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>dbas.address.country.id</td>\n<td>Country ID</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>dbas.customerServiceContact</td>\n<td>Object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>dbas.customerServiceContact.phone</td>\n<td>Customer service phone number</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>dbas.customerServiceContact.email</td>\n<td>Customer service email</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>dbas.processing</td>\n<td>Object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>dbas.processing.mid</td>\n<td>Merchant Identification Number</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>dbas.processing.bank</td>\n<td>Bank Details</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>dbas.processing.bank.name</td>\n<td>Name of the bank</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>dbas.processing.bank.accountNumber</td>\n<td>Last 4 characters from the Bank Account Number</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>dbas.processing.mcc</td>\n<td>Merchant Category Code</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>dbas.processing.status</td>\n<td>Status <code>Approved</code>, <code>Live</code>, <code>Inactive</code>, <code>Closed</code></td>\n<td>ENUM</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>dbas.processing.boardedOn</td>\n<td>Date and Time when the DBA was created</td>\n<td>Datetime</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>dbas.processing.closedOn</td>\n<td>Date and Time when the DBA was closed</td>\n<td>Datetime</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>dbas.processing.volumes</td>\n<td>Object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>dbas.processing.volumes.monthlyTransactionAmount</td>\n<td>Monthly Volume</td>\n<td>Integer</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>dbas.processing.volume.avgTransactionAmount</td>\n<td>Average Transaction Amount</td>\n<td>Integer</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>dbas.processing.volume.maxTransactionAmount</td>\n<td>Max Transaction Amount</td>\n<td>Integer</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>dbas.processing.sales</td>\n<td>Object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>dbas.processing.sales.swiped</td>\n<td>Percentage of card-present transactions</td>\n<td>Integer</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>dbas.processing.sales.mail</td>\n<td>Percentage of mail/phone card not present transactions</td>\n<td>Integer</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>dbas.processing.sales.internet</td>\n<td>Percentage of internet/eCommerce card not present transactions</td>\n<td>Integer</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>dbas.processing.feeSchedule</td>\n<td>Object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>dbas.processing.feeSchedule.fees</td>\n<td>Fee Object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>dbas.processing.feeSchedule.fees.id</td>\n<td>Identifier of Fee</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>dbas.processing.feeSchedule.fees.type</td>\n<td>Fee Type Object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>dbas.processing.feeSchedule.fees.type.id</td>\n<td>Identifier of fee types</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>dbas.processing.feeSchedule.fees.value</td>\n<td>Fee Amount</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>dbas.processing.feeSchedule.note</td>\n<td>Fee Note</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>dbas.ach</td>\n<td>Object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>dbas.ach.id</td>\n<td>Identification Number</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>dbas.ach.bank</td>\n<td>Bank Details</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>dbas.ach.bank.name</td>\n<td>Name of the bank</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>dbas.ach.bank.accountNumber</td>\n<td>Last 4 characters from the Bank Account Number</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>dbas.ach.mcc</td>\n<td>Merchant Category Code</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>dbas.ach.status</td>\n<td>Status <code>Approved</code>, <code>Live</code>, <code>Inactive</code>, <code>Closed</code></td>\n<td>ENUM</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>dbas.ach.boardedOn</td>\n<td>Date and Time when the DBA was created</td>\n<td>Datetime</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>dbas.ach.closedOn</td>\n<td>Date and Time when the DBA was closed</td>\n<td>Datetime</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>dbas.ach.volumes</td>\n<td>Object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>dbas.ach.monthlyTransactions</td>\n<td>Number Of Monthly Transactions</td>\n<td>Integer</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>dbas.ach.volumes.avgMonthlyTransactionAmount</td>\n<td>Monthly Volume</td>\n<td>Integer</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>dbas.ach.volume.avgTransactionAmount</td>\n<td>Average Transaction Amount</td>\n<td>Integer</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>dbas.ach.volume.maxTransactionAmount</td>\n<td>Max Transaction Amount</td>\n<td>Integer</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>dbas.ach.feeSchedule</td>\n<td>Object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>dbas.ach.feeSchedule.fees</td>\n<td>Fee Object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>dbas.ach.feeSchedule.fees.id</td>\n<td>Identifier of Fee</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>dbas.ach.feeSchedule.fees.type</td>\n<td>Fee Type Object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>dbas.ach.feeSchedule.fees.type.id</td>\n<td>Identifier of fee types</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>dbas.ach.feeSchedule.fees.value</td>\n<td>Fee Amount</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>dbas.ach.feeSchedule.note</td>\n<td>Fee Note</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":false},"event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""]}},{"listen":"test","script":{"type":"text/javascript","exec":[""]}}],"_postman_id":"de51b6c3-397c-4aeb-8dfd-95faa7ce38ec"},{"name":"DBA","item":[{"name":"List","id":"26ea1539-d16d-4e18-81d2-88637094a595","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/dba","description":"<p>Use this endpoint to list all DBAs that you have available.</p>\n","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"ced17983-7259-49c2-97b0-defe0a8dc2c6","id":"ced17983-7259-49c2-97b0-defe0a8dc2c6","name":"DBA","type":"folder"}},"urlObject":{"path":["api","dba"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"56d12643-4263-402e-8c0e-546a7f364828","name":"List DBAs","originalRequest":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/dba"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"items\": [\n        {\n            \"id\": \"1\",\n            \"name\": \"Demo Merchant DBA\",\n            \"address\": {\n                \"street\": \"Lorem 15\",\n                \"city\": \"Valhala\",\n                \"zip\": \"2222\",\n                \"state\": [\n                    15\n                ],\n                \"country\": [\n                    199\n                ]\n            },\n            \"customerServiceContact\": {\n                \"phone\": \"+1 717-888-8888\",\n                \"email\": \"demo-example@example.org\"\n            },\n            \"processing\": {\n                \"mid\": \"201143806445\",\n                \"bank\": {\n                    \"name\": \"Esquire Bank\",\n                    \"accountNumber\": \"3456\"\n                },\n                \"mcc\": \"5734\",\n                \"status\": \"Closed\",\n                \"boardedOn\": \"2019-02-06 12:00:00\",\n                \"closedOn\": \"2022-02-16 15:38:33\",\n                \"volumes\": {\n                    \"monthlyTransactionAmount\": 7000000,\n                    \"avgTransactionAmount\": 700,\n                    \"maxTransactionAmount\": 7000\n                },\n                \"sales\": {\n                    \"swiped\": 30,\n                    \"mail\": 10,\n                    \"internet\": 60\n                },\n                \"feeSchedule\": {\n                    \"fees\": [\n                        {\n                            \"id\": \"1\",\n                            \"type\": {\n                                \"id\": \"1\"\n                            },\n                            \"value\": \"0.00000\"\n                        },\n                        {\n                            \"id\": \"2\",\n                            \"type\": {\n                                \"id\": \"2\"\n                            },\n                            \"value\": \"0.00000\"\n                        },\n                        {\n                            \"id\": \"3\",\n                            \"type\": {\n                                \"id\": \"3\"\n                            },\n                            \"value\": \"0.00000\"\n                        },\n                        {\n                            \"id\": \"4\",\n                            \"type\": {\n                                \"id\": \"4\"\n                            },\n                            \"value\": \"0.00000\"\n                        },\n                        {\n                            \"id\": \"5\",\n                            \"type\": {\n                                \"id\": \"5\"\n                            },\n                            \"value\": \"0.00000\"\n                        },\n                        {\n                            \"id\": \"6\",\n                            \"type\": {\n                                \"id\": \"6\"\n                            },\n                            \"value\": \"0.00000\"\n                        },\n                        {\n                            \"id\": \"7\",\n                            \"type\": {\n                                \"id\": \"7\"\n                            },\n                            \"value\": \"0.75000\"\n                        },\n                        {\n                            \"id\": \"8\",\n                            \"type\": {\n                                \"id\": \"8\"\n                            },\n                            \"value\": \"0.00000\"\n                        },\n                        {\n                            \"id\": \"9\",\n                            \"type\": {\n                                \"id\": \"9\"\n                            },\n                            \"value\": \"0.00000\"\n                        },\n                        {\n                            \"id\": \"10\",\n                            \"type\": {\n                                \"id\": \"10\"\n                            },\n                            \"value\": \"0.00000\"\n                        },\n                        {\n                            \"id\": \"11\",\n                            \"type\": {\n                                \"id\": \"11\"\n                            },\n                            \"value\": \"5.00000\"\n                        },\n                        {\n                            \"id\": \"12\",\n                            \"type\": {\n                                \"id\": \"12\"\n                            },\n                            \"value\": \"25.00000\"\n                        },\n                        {\n                            \"id\": \"13\",\n                            \"type\": {\n                                \"id\": \"13\"\n                            },\n                            \"value\": \"0.00000\"\n                        },\n                        {\n                            \"id\": \"14\",\n                            \"type\": {\n                                \"id\": \"14\"\n                            },\n                            \"value\": \"0.00000\"\n                        },\n                        {\n                            \"id\": \"15\",\n                            \"type\": {\n                                \"id\": \"15\"\n                            },\n                            \"value\": \"0.05000\"\n                        },\n                        {\n                            \"id\": \"16\",\n                            \"type\": {\n                                \"id\": \"16\"\n                            },\n                            \"value\": \"35.00000\"\n                        },\n                        {\n                            \"id\": \"17\",\n                            \"type\": {\n                                \"id\": \"17\"\n                            },\n                            \"value\": \"5.00000\"\n                        },\n                        {\n                            \"id\": \"18\",\n                            \"type\": {\n                                \"id\": \"18\"\n                            },\n                            \"value\": \"0.00000\"\n                        },\n                        {\n                            \"id\": \"19\",\n                            \"type\": {\n                                \"id\": \"20\"\n                            },\n                            \"value\": \"0.00000\"\n                        },\n                        {\n                            \"id\": \"20\",\n                            \"type\": {\n                                \"id\": \"18\"\n                            },\n                            \"value\": \"0.00000\"\n                        },\n                        {\n                            \"id\": \"21\",\n                            \"type\": {\n                                \"id\": \"18\"\n                            },\n                            \"value\": \"0.00000\"\n                        }\n                    ],\n                    \"note\": null\n                }\n            },\n            \"ach\": {\n                \"id\": \"14\",\n                \"bank\": {\n                    \"name\": \"BANK OF AMERICA CALIFORNIA, NA\",\n                    \"accountNumber\": \"8889\"\n                },\n                \"status\": \"Inactive\",\n                \"boardedOn\": \"2020-04-14 17:04:37\",\n                \"volumes\": {\n                    \"monthlyTransactions\": 4,\n                    \"avgMonthlyTransactionAmount\": 5,\n                    \"avgTransactionAmount\": 6,\n                    \"maxTransactionAmount\": 7\n                },\n                \"feeSchedule\": {\n                    \"fees\": [\n                        {\n                            \"id\": \"145\",\n                            \"type\": {\n                                \"id\": \"25\"\n                            },\n                            \"value\": \"2.00000\"\n                        },\n                        {\n                            \"id\": \"146\",\n                            \"type\": {\n                                \"id\": \"26\"\n                            },\n                            \"value\": \"2.00000\"\n                        },\n                        {\n                            \"id\": \"147\",\n                            \"type\": {\n                                \"id\": \"27\"\n                            },\n                            \"value\": \"2.00000\"\n                        },\n                        {\n                            \"id\": \"148\",\n                            \"type\": {\n                                \"id\": \"28\"\n                            },\n                            \"value\": \"2.00000\"\n                        },\n                        {\n                            \"id\": \"149\",\n                            \"type\": {\n                                \"id\": \"29\"\n                            },\n                            \"value\": \"2.00000\"\n                        },\n                        {\n                            \"id\": \"150\",\n                            \"type\": {\n                                \"id\": \"30\"\n                            },\n                            \"value\": \"2.00000\"\n                        },\n                        {\n                            \"id\": \"151\",\n                            \"type\": {\n                                \"id\": \"31\"\n                            },\n                            \"value\": \"2.00000\"\n                        },\n                        {\n                            \"id\": \"152\",\n                            \"type\": {\n                                \"id\": \"32\"\n                            },\n                            \"value\": \"2.00000\"\n                        },\n                        {\n                            \"id\": \"153\",\n                            \"type\": {\n                                \"id\": \"33\"\n                            },\n                            \"value\": \"2.00000\"\n                        },\n                        {\n                            \"id\": \"154\",\n                            \"type\": {\n                                \"id\": \"35\"\n                            },\n                            \"value\": \"2.00000\"\n                        },\n                        {\n                            \"id\": \"155\",\n                            \"type\": {\n                                \"id\": \"35\"\n                            },\n                            \"value\": \"2.00000\"\n                        },\n                        {\n                            \"id\": \"156\",\n                            \"type\": {\n                                \"id\": \"35\"\n                            },\n                            \"value\": \"2.00000\"\n                        }\n                    ],\n                    \"note\": \"2\"\n                }\n            }\n        }\n    ],\n    \"_links\": {\n        \"self\": {\n            \"href\": \"https://dashboard.dashboard.paysecureonline.com/api/dba?page=1&per-page=30\"\n        }\n    },\n    \"_meta\": {\n        \"totalCount\": 1,\n        \"pageCount\": 1,\n        \"currentPage\": 1,\n        \"perPage\": 30\n    }\n}"}],"_postman_id":"26ea1539-d16d-4e18-81d2-88637094a595"},{"name":"View","id":"070dd885-898d-454a-882c-c704c05a5eb3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/dba/1","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"ced17983-7259-49c2-97b0-defe0a8dc2c6","id":"ced17983-7259-49c2-97b0-defe0a8dc2c6","name":"DBA","type":"folder"}},"urlObject":{"path":["api","dba","1"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"6bcc1a9f-6975-4802-8972-0d175094e815","name":"View","originalRequest":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/dba/1"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"id\": \"1\",\r\n    \"name\": \"Demo Merchant DBA\",\r\n    \"address\": {\r\n    \"street\": \"Lorem 15\",\r\n    \"city\": \"Valhala\",\r\n    \"zip\": \"2222\",\r\n    \"state\": [\r\n        15\r\n    ],\r\n    \"country\": [\r\n        199\r\n    ]\r\n    },\r\n    \"customerServiceContact\": {\r\n    \"phone\": \"+1 717-888-8888\",\r\n    \"email\": \"demo-example@example.org\"\r\n    },\r\n    \"processing\": {\r\n    \"mid\": \"201143806445\",\r\n    \"bank\": {\r\n        \"name\": \"Esquire Bank\",\r\n        \"accountNumber\": \"3456\"\r\n    },\r\n    \"mcc\": \"5734\",\r\n    \"status\": \"Closed\",\r\n    \"boardedOn\": \"2019-02-06 12:00:00\",\r\n    \"closedOn\": \"2022-02-16 15:38:33\",\r\n    \"volumes\": {\r\n        \"monthlyTransactionAmount\": 7000000,\r\n        \"avgTransactionAmount\": 700,\r\n        \"maxTransactionAmount\": 7000\r\n    },\r\n    \"sales\": {\r\n        \"swiped\": 30,\r\n        \"mail\": 10,\r\n        \"internet\": 60\r\n    },\r\n    \"feeSchedule\": {\r\n        \"fees\": [\r\n        {\r\n            \"id\": \"1\",\r\n            \"type\": {\r\n            \"id\": \"1\"\r\n            },\r\n            \"value\": \"0.00000\"\r\n        },\r\n        {\r\n            \"id\": \"2\",\r\n            \"type\": {\r\n            \"id\": \"2\"\r\n            },\r\n            \"value\": \"0.00000\"\r\n        },\r\n        {\r\n            \"id\": \"3\",\r\n            \"type\": {\r\n            \"id\": \"3\"\r\n            },\r\n            \"value\": \"0.00000\"\r\n        },\r\n        {\r\n            \"id\": \"4\",\r\n            \"type\": {\r\n            \"id\": \"4\"\r\n            },\r\n            \"value\": \"0.00000\"\r\n        },\r\n        {\r\n            \"id\": \"5\",\r\n            \"type\": {\r\n            \"id\": \"5\"\r\n            },\r\n            \"value\": \"0.00000\"\r\n        },\r\n        {\r\n            \"id\": \"6\",\r\n            \"type\": {\r\n            \"id\": \"6\"\r\n            },\r\n            \"value\": \"0.00000\"\r\n        },\r\n        {\r\n            \"id\": \"7\",\r\n            \"type\": {\r\n            \"id\": \"7\"\r\n            },\r\n            \"value\": \"0.75000\"\r\n        },\r\n        {\r\n            \"id\": \"8\",\r\n            \"type\": {\r\n            \"id\": \"8\"\r\n            },\r\n            \"value\": \"0.00000\"\r\n        },\r\n        {\r\n            \"id\": \"9\",\r\n            \"type\": {\r\n            \"id\": \"9\"\r\n            },\r\n            \"value\": \"0.00000\"\r\n        },\r\n        {\r\n            \"id\": \"10\",\r\n            \"type\": {\r\n            \"id\": \"10\"\r\n            },\r\n            \"value\": \"0.00000\"\r\n        },\r\n        {\r\n            \"id\": \"11\",\r\n            \"type\": {\r\n            \"id\": \"11\"\r\n            },\r\n            \"value\": \"5.00000\"\r\n        },\r\n        {\r\n            \"id\": \"12\",\r\n            \"type\": {\r\n            \"id\": \"12\"\r\n            },\r\n            \"value\": \"25.00000\"\r\n        },\r\n        {\r\n            \"id\": \"13\",\r\n            \"type\": {\r\n            \"id\": \"13\"\r\n            },\r\n            \"value\": \"0.00000\"\r\n        },\r\n        {\r\n            \"id\": \"14\",\r\n            \"type\": {\r\n            \"id\": \"14\"\r\n            },\r\n            \"value\": \"0.00000\"\r\n        },\r\n        {\r\n            \"id\": \"15\",\r\n            \"type\": {\r\n            \"id\": \"15\"\r\n            },\r\n            \"value\": \"0.05000\"\r\n        },\r\n        {\r\n            \"id\": \"16\",\r\n            \"type\": {\r\n            \"id\": \"16\"\r\n            },\r\n            \"value\": \"35.00000\"\r\n        },\r\n        {\r\n            \"id\": \"17\",\r\n            \"type\": {\r\n            \"id\": \"17\"\r\n            },\r\n            \"value\": \"5.00000\"\r\n        },\r\n        {\r\n            \"id\": \"18\",\r\n            \"type\": {\r\n            \"id\": \"18\"\r\n            },\r\n            \"value\": \"0.00000\"\r\n        },\r\n        {\r\n            \"id\": \"19\",\r\n            \"type\": {\r\n            \"id\": \"20\"\r\n            },\r\n            \"value\": \"0.00000\"\r\n        },\r\n        {\r\n            \"id\": \"20\",\r\n            \"type\": {\r\n            \"id\": \"18\"\r\n            },\r\n            \"value\": \"0.00000\"\r\n        },\r\n        {\r\n            \"id\": \"21\",\r\n            \"type\": {\r\n            \"id\": \"18\"\r\n            },\r\n            \"value\": \"0.00000\"\r\n        }\r\n        ],\r\n        \"note\": null\r\n    }\r\n    },\r\n    \"ach\": {\r\n    \"id\": \"14\",\r\n    \"bank\": {\r\n        \"name\": \"BANK OF AMERICA CALIFORNIA, NA\",\r\n        \"accountNumber\": \"8889\"\r\n    },\r\n    \"status\": \"Inactive\",\r\n    \"boardedOn\": \"2020-04-14 17:04:37\",\r\n    \"volumes\": {\r\n        \"monthlyTransactions\": 4,\r\n        \"avgMonthlyTransactionAmount\": 5,\r\n        \"avgTransactionAmount\": 6,\r\n        \"maxTransactionAmount\": 7\r\n    },\r\n    \"feeSchedule\": {\r\n        \"fees\": [\r\n        {\r\n            \"id\": \"145\",\r\n            \"type\": {\r\n            \"id\": \"25\"\r\n            },\r\n            \"value\": \"2.00000\"\r\n        },\r\n        {\r\n            \"id\": \"146\",\r\n            \"type\": {\r\n            \"id\": \"26\"\r\n            },\r\n            \"value\": \"2.00000\"\r\n        },\r\n        {\r\n            \"id\": \"147\",\r\n            \"type\": {\r\n            \"id\": \"27\"\r\n            },\r\n            \"value\": \"2.00000\"\r\n        },\r\n        {\r\n            \"id\": \"148\",\r\n            \"type\": {\r\n            \"id\": \"28\"\r\n            },\r\n            \"value\": \"2.00000\"\r\n        },\r\n        {\r\n            \"id\": \"149\",\r\n            \"type\": {\r\n            \"id\": \"29\"\r\n            },\r\n            \"value\": \"2.00000\"\r\n        },\r\n        {\r\n            \"id\": \"150\",\r\n            \"type\": {\r\n            \"id\": \"30\"\r\n            },\r\n            \"value\": \"2.00000\"\r\n        },\r\n        {\r\n            \"id\": \"151\",\r\n            \"type\": {\r\n            \"id\": \"31\"\r\n            },\r\n            \"value\": \"2.00000\"\r\n        },\r\n        {\r\n            \"id\": \"152\",\r\n            \"type\": {\r\n            \"id\": \"32\"\r\n            },\r\n            \"value\": \"2.00000\"\r\n        },\r\n        {\r\n            \"id\": \"153\",\r\n            \"type\": {\r\n            \"id\": \"33\"\r\n            },\r\n            \"value\": \"2.00000\"\r\n        },\r\n        {\r\n            \"id\": \"154\",\r\n            \"type\": {\r\n            \"id\": \"35\"\r\n            },\r\n            \"value\": \"2.00000\"\r\n        },\r\n        {\r\n            \"id\": \"155\",\r\n            \"type\": {\r\n            \"id\": \"35\"\r\n            },\r\n            \"value\": \"2.00000\"\r\n        },\r\n        {\r\n            \"id\": \"156\",\r\n            \"type\": {\r\n            \"id\": \"35\"\r\n            },\r\n            \"value\": \"2.00000\"\r\n        }\r\n        ],\r\n        \"note\": \"2\"\r\n    }\r\n    }\r\n}"}],"_postman_id":"070dd885-898d-454a-882c-c704c05a5eb3"}],"id":"ced17983-7259-49c2-97b0-defe0a8dc2c6","description":"<p>This endpoint is used to view all Merchant DBA related information.</p>\n<p>DBA Object</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Fields</th>\n<th>Description</th>\n<th>Type</th>\n<th>Filterable</th>\n<th>Required</th>\n<th>Readonly</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>Unique ID of the DBA record</td>\n<td>Integer</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>name</td>\n<td>Name of the DBA</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>address</td>\n<td>Object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>address.street</td>\n<td>Street</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>address.city</td>\n<td>City</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>address.zip</td>\n<td>Zip code</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>address.state</td>\n<td>Object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>address.state.id</td>\n<td>State ID</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>address.country</td>\n<td>Object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>address.country.id</td>\n<td>Country ID</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>customerServiceContact</td>\n<td>Object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>customerServiceContact.phone</td>\n<td>Customer service phone number</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>customerServiceContact.email</td>\n<td>Customer service email</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>processing</td>\n<td>Object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>processing.mid</td>\n<td>Merchant Identification Number</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>processing.bank</td>\n<td>Bank Details</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>processing.bank.name</td>\n<td>Name of the bank</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>processing.bank.accountNumber</td>\n<td>Last 4 characters from the Bank Account Number</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>processing.mcc</td>\n<td>Merchant Category Code</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>processing.status</td>\n<td>Status <code>Approved</code>, <code>Live</code>, <code>Inactive</code>, <code>Closed</code></td>\n<td>ENUM</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>processing.boardedOn</td>\n<td>Date and Time when the DBA was created</td>\n<td>Datetime</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>processing.closedOn</td>\n<td>Date and Time when the DBA was closed</td>\n<td>Datetime</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>processing.volumes</td>\n<td>Object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>processing.volumes.monthlyTransactionAmount</td>\n<td>Monthly Volume</td>\n<td>Integer</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>processing.volume.avgTransactionAmount</td>\n<td>Average Transaction Amount</td>\n<td>Integer</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>processing.volume.maxTransactionAmount</td>\n<td>Max Transaction Amount</td>\n<td>Integer</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>processing.sales</td>\n<td>Object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>processing.sales.swiped</td>\n<td>Percentage of card-present transactions</td>\n<td>Integer</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>processing.sales.mail</td>\n<td>Percentage of mail/phone card not present transactions</td>\n<td>Integer</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>processing.sales.internet</td>\n<td>Percentage of internet/eCommerce card not present transactions</td>\n<td>Integer</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>processing.feeSchedule</td>\n<td>Object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>processing.feeSchedule.fees</td>\n<td>Fee Object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>processing.feeSchedule.fees.id</td>\n<td>Identifier of Fee</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>processing.feeSchedule.fees.type</td>\n<td>Fee Type Object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>processing.feeSchedule.fees.type.id</td>\n<td>Identifier of fee types</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>processing.feeSchedule.fees.value</td>\n<td>Fee Amount</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>processing.feeSchedule.note</td>\n<td>Fee Note</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>ach</td>\n<td>Object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>ach.id</td>\n<td>Identification Number</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>ach.bank</td>\n<td>Bank Details</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>ach.bank.name</td>\n<td>Name of the bank</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>ach.bank.accountNumber</td>\n<td>Last 4 characters from the Bank Account Number</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>ach.mcc</td>\n<td>Merchant Category Code</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>ach.status</td>\n<td>Status <code>Approved</code>, <code>Live</code>, <code>Inactive</code>, <code>Closed</code></td>\n<td>ENUM</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>ach.boardedOn</td>\n<td>Date and Time when the DBA was created</td>\n<td>Datetime</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>ach.closedOn</td>\n<td>Date and Time when the DBA was closed</td>\n<td>Datetime</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>ach.volumes</td>\n<td>Object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>ach.monthlyTransactions</td>\n<td>Number Of Monthly Transactions</td>\n<td>Integer</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>ach.volumes.avgMonthlyTransactionAmount</td>\n<td>Monthly Volume</td>\n<td>Integer</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>ach.volume.avgTransactionAmount</td>\n<td>Average Transaction Amount</td>\n<td>Integer</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>ach.volume.maxTransactionAmount</td>\n<td>Max Transaction Amount</td>\n<td>Integer</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>ach.feeSchedule</td>\n<td>Object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>ach.feeSchedule.fees</td>\n<td>Fee Object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>ach.feeSchedule.fees.id</td>\n<td>Identifier of Fee</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>ach.feeSchedule.fees.type</td>\n<td>Fee Type Object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>ach.feeSchedule.fees.type.id</td>\n<td>Identifier of fee types</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>ach.feeSchedule.fees.value</td>\n<td>Fee Amount</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>ach.feeSchedule.note</td>\n<td>Fee Note</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":false},"event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""]}},{"listen":"test","script":{"type":"text/javascript","exec":[""]}}],"_postman_id":"ced17983-7259-49c2-97b0-defe0a8dc2c6"},{"name":"CustomerVault","item":[{"name":"Customers","item":[{"name":"List","id":"813a65f7-7b01-4f72-a1f1-03c5c42aa0ed","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/customer-vault","description":"<p>List all of your customers</p>\n","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"2165816b-ad07-4118-a06b-0311d11ff213","id":"2165816b-ad07-4118-a06b-0311d11ff213","name":"CustomerVault","type":"folder"}},"urlObject":{"path":["api","customer-vault"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"0f4b8b15-8f58-4097-9cd1-82f2c2ff11ab","name":"List","originalRequest":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/customer-vault"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"items\": [\n        {\n            \"id\": \"1\",\n            \"dba\": {\n                \"id\": \"1\"\n            },\n            \"firstName\": \"John\",\n            \"lastName\": \"Wick\",\n            \"company\": null,\n            \"email\": \"johnwick@email.com\",\n            \"website\": null,\n            \"phone\": \"+1 818-774-0010\",\n            \"altPhone\": null,\n            \"identificator\": \"34\",\n            \"description\": \"Description to help me identify the customer\",\n            \"archived\": \"No\",\n            \"updatedOn\": \"2021-06-02 09:43:30\",\n            \"createdOn\": \"2021-06-02 09:43:30\",\n            \"_links\": {\n                \"self\": {\n                    \"href\": \"https://dashboard.dashboard.paysecureonline.com/api/customer-vault?id=4\"\n                }\n            }\n        }\n    ],\n    \"_links\": {\n        \"self\": {\n            \"href\": \"https://dashboard.dashboard.paysecureonline.com/api/customers-vault?page=1\"\n        }\n    },\n    \"_meta\": {\n        \"totalCount\": 1,\n        \"pageCount\": 1,\n        \"currentPage\": 1,\n        \"perPage\": 30\n    }\n}"}],"_postman_id":"813a65f7-7b01-4f72-a1f1-03c5c42aa0ed"},{"name":"View","id":"0287f989-10d6-4ba0-94ae-df045e0d1e64","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/customer-vault/<customerId>","description":"<p>Use this endpoint to view information for a specific customer.</p>\n","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"2165816b-ad07-4118-a06b-0311d11ff213","id":"2165816b-ad07-4118-a06b-0311d11ff213","name":"CustomerVault","type":"folder"}},"urlObject":{"path":["api","customer-vault","<customerId>"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"341ad743-2916-434b-bd43-b6c0c19a3d35","name":"View","originalRequest":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/customer-vault/1"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    {\n    \"id\": \"1\",\n    \"dba\": {\n        \"id\": \"1\"\n    },\n    \"firstName\": \"John\",\n    \"lastName\": \"Wick\",\n    \"company\": null,\n    \"email\": \"johnwick@email.com\",\n    \"website\": null,\n    \"phone\": \"+1 818-774-0010\",\n    \"altPhone\": null,\n    \"identificator\": \"34\",\n    \"description\": \"Description to help me identify the customer\",\n    \"archived\": \"No\",\n    \"updatedOn\": \"2021-06-02 09:43:30\",\n    \"createdOn\": \"2021-06-02 09:43:30\",\n    \"_links\": {\n        \"self\": {\n            \"href\": \"https://dashboard.dashboard.paysecureonline.com/api/customer-vault?id=1\"\n        }\n    }\n}"}],"_postman_id":"0287f989-10d6-4ba0-94ae-df045e0d1e64"},{"name":"Create","id":"6020c629-5e41-4aca-9a71-8f89effd5028","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"dba\": {\n        \"id\": \"1\"\n    },\n    \"firstName\": \"John\",\n    \"lastName\": \"Wick\",\n    \"email\": \"johnwick@email.com\",\n    \"phone\": \"+18187740010\",\n    \"description\": \"Description to help me identify the customer\"\n}","options":{"raw":{"language":"json"}}},"url":"https://dashboard.dashboard.paysecureonline.com/api/customer-vault","description":"<p>Creating a Customer can be achieved using this endpoint</p>\n","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"2165816b-ad07-4118-a06b-0311d11ff213","id":"2165816b-ad07-4118-a06b-0311d11ff213","name":"CustomerVault","type":"folder"}},"urlObject":{"path":["api","customer-vault"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"6f522657-bbac-43b5-bd88-86d449cab76d","name":"Create","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"dba\": {\n        \"id\": \"1\"\n    },\n    \"firstName\": \"John\",\n    \"lastName\": \"Wick\",\n    \"email\": \"johnwick@email.com\",\n    \"phone\": \"+18187740010\",\n    \"description\": \"Description to help me identify the customer\"\n}","options":{"raw":{"language":"json"}}},"url":"https://dashboard.dashboard.paysecureonline.com/api/customer-vault"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 1,\n    \"dba\": {\n        \"id\": 1\n    },\n    \"firstName\": \"John\",\n    \"lastName\": \"Wick\",\n    \"company\": null,\n    \"email\": \"johnwick@email.com\",\n    \"website\": null,\n    \"phone\": \"+1 818-774-0010\",\n    \"altPhone\": null,\n    \"identificator\": null,\n    \"description\": \"Description to help me identify the customer\",\n    \"archived\": null,\n    \"updatedOn\": null,\n    \"createdOn\": null\n}"}],"_postman_id":"6020c629-5e41-4aca-9a71-8f89effd5028"},{"name":"Update","id":"0c1521ce-a468-49fb-94b1-7bdcf3c5a36d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"phone\": \"+18187267744\"\n}","options":{"raw":{"language":"json"}}},"url":"https://dashboard.dashboard.paysecureonline.com/api/customer-vault/<customerId>","description":"<p>The update endpoint is used to modify the customer's information in the Customer Vault. You can modify personal details and company information of the customer in the vault.</p>\n","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"2165816b-ad07-4118-a06b-0311d11ff213","id":"2165816b-ad07-4118-a06b-0311d11ff213","name":"CustomerVault","type":"folder"}},"urlObject":{"path":["api","customer-vault","<customerId>"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"f69daadf-051d-4b21-83f8-cef887a6cfdb","name":"Update","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"phone\": \"+18187267744\"\n}","options":{"raw":{"language":"json"}}},"url":"https://dashboard.dashboard.paysecureonline.com/api/customer-vault/1"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 1,\n    \"dba\": {\n        \"id\": 1\n    },\n    \"firstName\": \"John\",\n    \"lastName\": \"Wick\",\n    \"company\": null,\n    \"email\": \"johnwick@email.com\",\n    \"website\": null,\n    \"phone\": \"+1 818-726-7744\",\n    \"altPhone\": null,\n    \"identificator\": null,\n    \"description\": \"Description to help me identify the customer\",\n    \"archived\": \"No\",\n    \"updatedOn\": \"2021-06-02 09:58:46\",\n    \"createdOn\": \"2021-06-02 09:43:30\"\n}"}],"_postman_id":"0c1521ce-a468-49fb-94b1-7bdcf3c5a36d"},{"name":"Archive","id":"f2b66ca4-8945-46b9-848a-f0c8ec43afc5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://dashboard.dashboard.paysecureonline.com/api/customer-vault/<customerId>/archive","description":"<p>When a specific customer in the vault has transactional history, that customer cannot be deleted. In this case, the customer needs to be archived.</p>\n<blockquote>\n<p><strong>NOTE</strong> We allow a customer to be returned to active status from archived.</p>\n</blockquote>\n","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"2165816b-ad07-4118-a06b-0311d11ff213","id":"2165816b-ad07-4118-a06b-0311d11ff213","name":"CustomerVault","type":"folder"}},"urlObject":{"path":["api","customer-vault","<customerId>","archive"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"6c432d2b-03c8-477f-b1d8-521a34cb85f7","name":"Archive","originalRequest":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://dashboard.dashboard.paysecureonline.com/api/customer-vault/1/archive"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    true\n}"}],"_postman_id":"f2b66ca4-8945-46b9-848a-f0c8ec43afc5"},{"name":"Delete","id":"d2808bfe-2617-4780-aad4-18d9c5941380","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://dashboard.dashboard.paysecureonline.com/api/customer-vault/<customerId>","description":"<p>If a specific customer in the vault has no transactional history your can delete the customer using this endpoint.</p>\n<blockquote>\n<p><strong>IMPORTANT</strong> You cannot restore a deleted customer. If you are unsure of future use we suggest archiving the customer.</p>\n</blockquote>\n","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"2165816b-ad07-4118-a06b-0311d11ff213","id":"2165816b-ad07-4118-a06b-0311d11ff213","name":"CustomerVault","type":"folder"}},"urlObject":{"path":["api","customer-vault","<customerId>"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"d9726544-0ca9-461d-a862-629cf771cd34","name":"Delete","originalRequest":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://dashboard.dashboard.paysecureonline.com/api/customer-vault/1/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    true\n}"}],"_postman_id":"d2808bfe-2617-4780-aad4-18d9c5941380"}],"id":"46a4f1b6-4972-49d6-80f8-a59cf80997db","description":"<p>Use this endpoint to manage all of your customers in the Customer Vault.</p>\n","_postman_id":"46a4f1b6-4972-49d6-80f8-a59cf80997db","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"2165816b-ad07-4118-a06b-0311d11ff213","id":"2165816b-ad07-4118-a06b-0311d11ff213","name":"CustomerVault","type":"folder"}}},{"name":"Cards","item":[{"name":"List Cards","id":"84d54965-6edb-4e17-95e5-4aa64c6d81a6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/customer-vault/<customerId>/cards","description":"<p>List all stored payment information for a customer. This will return an object of all the stored payment card records on file for a specific customer in the vault.</p>\n","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"2165816b-ad07-4118-a06b-0311d11ff213","id":"2165816b-ad07-4118-a06b-0311d11ff213","name":"CustomerVault","type":"folder"}},"urlObject":{"path":["api","customer-vault","<customerId>","cards"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"76e3047d-05c6-4964-b373-be15eda3ac70","name":"List Cards","originalRequest":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/customer-vault/1/cards"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"items\": [\n        {\n            \"id\": \"2\",\n            \"billing\": {\n                \"id\": \"1\"\n            },\n            \"number\": 4489,\n            \"bin\": {\n                \"bin\": 411111,\n                \"brand\": \"Visa\",\n                \"organization\": \"Jpmorgan Chase Bank, N.a.\",\n                \"type\": \"Credit\",\n                \"category\": null,\n                \"country\": {\n                    \"name\": \"United States\",\n                    \"code\": \"US\"\n                }\n            },\n            \"exp\": \"2031-12-31\",\n            \"token\": \"H3ViuS1XiX9w4489\",\n            \"attempt\": {\n                \"date\": null,\n                \"retries\": 0\n            },\n            \"lastUsedOn\": null,\n            \"order\": 50,\n            \"status\": \"Active\",\n            \"archived\": \"No\",\n            \"note\": null,\n            \"createdOn\": \"2021-06-02 13:47:30\",\n            \"_links\": {\n                \"index\": {\n                    \"href\": \"https://dashboard.dashboard.paysecureonline.com/api/customer-vault/1/cards\"\n                },\n                \"self\": {\n                    \"href\": \"https://dashboard.dashboard.paysecureonline.com/api/customer-vault/1/card/2\"\n                }\n            }\n        }\n    ],\n    \"_links\": {\n        \"self\": {\n            \"href\": \"https://dashboard.dashboard.paysecureonline.com/api/customer-vault/1/cards?%2Fapi%2Fcustomer-vault%2F1%2Fcards=&page=1\"\n        },\n        \"first\": {\n            \"href\": \"https://dashboard.dashboard.paysecureonline.com/api/customer-vault/1/cards?%2Fapi%2Fcustomer-vault%2F1%2Fcards=&page=1\"\n        },\n        \"last\": {\n            \"href\": \"https://dashboard.dashboard.paysecureonline.com/api/customer-vault/41cards?%2Fapi%2Fcustomer-vault%2F1%2Fcards=&page=1\"\n        }\n    },\n    \"_meta\": {\n        \"totalCount\": 1,\n        \"pageCount\": 1,\n        \"currentPage\": 1,\n        \"perPage\": 30\n    }\n}"}],"_postman_id":"84d54965-6edb-4e17-95e5-4aa64c6d81a6"},{"name":"View","id":"8698a7c2-d63a-4f99-831a-68bfcd7c9d98","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/customer-vault/<customerId>/card/<id>","description":"<p>To view a single card record for a specific customer use the following:</p>\n","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"2165816b-ad07-4118-a06b-0311d11ff213","id":"2165816b-ad07-4118-a06b-0311d11ff213","name":"CustomerVault","type":"folder"}},"urlObject":{"path":["api","customer-vault","<customerId>","card","<id>"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"e06763e2-0878-4ef3-bc4d-f61d58d85792","name":"View a specific payment card record","originalRequest":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/customer-vault/1/card/1"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"2\",\n    \"billing\": {\n        \"id\": \"1\"\n    },\n    \"number\": 4489,\n    \"bin\": {\n        \"bin\": 411111,\n        \"brand\": \"Visa\",\n        \"organization\": \"Jpmorgan Chase Bank, N.a.\",\n        \"type\": \"Credit\",\n        \"category\": null,\n        \"country\": {\n            \"name\": \"United States\",\n            \"code\": \"US\"\n        }\n    },\n    \"exp\": \"2031-12-31\",\n    \"token\": \"H3ViuS1XiX9w4489\",\n    \"attempt\": {\n        \"date\": null,\n        \"retries\": 0\n    },\n    \"lastUsedOn\": null,\n    \"order\": 50,\n    \"status\": \"Active\",\n    \"archived\": \"No\",\n    \"note\": null,\n    \"createdOn\": \"2021-06-02 13:47:30\",\n    \"_links\": {\n        \"index\": {\n            \"href\": \"https://dashboard.dashboard.paysecureonline.com/api/customer-vault/1/cards\"\n        },\n        \"self\": {\n            \"href\": \"https://dashboard.dashboard.paysecureonline.com/api/customer-vault/1/card/2\"\n        }\n    }\n}"}],"_postman_id":"8698a7c2-d63a-4f99-831a-68bfcd7c9d98"},{"name":"Add Card","id":"81b7471a-91d4-4154-8134-37b4c8812d4d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"billing\": {\n        \"id\": 34\n    },\n    \"terminal\": {\n        \"id\": 1593\n    },\n    \"cvv\": \"996\",\n    \"exp\": \"12/31\",\n    \"holderName\": \"John Wick\",\n    \"number\": \"6011421812165456\"\n}","options":{"raw":{"language":"json"}}},"url":"https://dashboard.dashboard.paysecureonline.com/api/customer-vault/<customerId>/card","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"2165816b-ad07-4118-a06b-0311d11ff213","id":"2165816b-ad07-4118-a06b-0311d11ff213","name":"CustomerVault","type":"folder"}},"urlObject":{"path":["api","customer-vault","<customerId>","card"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"ba056a9f-e64d-4531-9eed-87cd06e26ae9","name":"Add Card","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"billing\": {\n        \"id\": 2\n    },\n    \"terminal\": {\n        \"id\": 1\n    },\n    \"cvv\": \"996\",\n    \"exp\": \"12/31\",\n    \"holderName\": \"John Wick\",\n    \"number\": \"6011421812165456\"\n}","options":{"raw":{"language":"json"}}},"url":"https://dashboard.dashboard.paysecureonline.com/api/customer-vault/1/card"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 1,\n    \"number\": 5456,\n    \"bin\": {\n        \"bin\": 411111,\n        \"brand\": \"Visa\",\n        \"organization\": \"Jpmorgan Chase Bank, N.a.\",\n        \"type\": \"Credit\",\n        \"category\": null,\n        \"country\": {\n            \"name\": \"United States\",\n            \"code\": \"US\"\n        }\n    },\n    \"exp\": \"2031-12-31\",\n    \"token\": \"sThSWfACWMSp5456\",\n    \"order\": 50,\n    \"attempt\": {\n        \"date\": null,\n        \"retries\": 0\n    },\n    \"lastUsedOn\": null,\n    \"status\": \"Active\",\n    \"note\": null,\n    \"createdOn\": \"2021-06-03 08:26:26\"\n}"}],"_postman_id":"81b7471a-91d4-4154-8134-37b4c8812d4d"},{"name":"Update Exp Date","id":"91e4aaab-df19-4965-abce-0a37198c3673","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"exp\": \"12/30\"\n}","options":{"raw":{"language":"json"}}},"url":"https://dashboard.dashboard.paysecureonline.com/api/customer-vault/<customerId>/card/<cardId>/change-exp-date","description":"<p>You can utilize this endpoint to update/change the expiration date of a stored and tokenized card in the Customer vault</p>\n<blockquote>\n<p><strong>IMPORTANT</strong> Exp.Date Format [MM/YY]. 12/30</p>\n</blockquote>\n","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"2165816b-ad07-4118-a06b-0311d11ff213","id":"2165816b-ad07-4118-a06b-0311d11ff213","name":"CustomerVault","type":"folder"}},"urlObject":{"path":["api","customer-vault","<customerId>","card","<cardId>","change-exp-date"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"490b658c-38c3-4c07-9ac1-25ba496c182e","name":"Update Exp Date","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"exp\": \"12/30\"\n}","options":{"raw":{"language":"json"}}},"url":"https://dashboard.dashboard.paysecureonline.com/api/customer-vault/1/card/12/change-exp-date"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    true\n}"}],"_postman_id":"91e4aaab-df19-4965-abce-0a37198c3673"},{"name":"Archive","id":"0358efc2-fc21-4b9d-bb8d-ff8ccde07dc4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://dashboard.dashboard.paysecureonline.com/api/customer-vault/<customerId>/card/<id>/archive","description":"<p>If a specific payment card record is present in the transactional history of a customer we do not allow for it to be deleted. In this case, you can archive the payment card information record.</p>\n<blockquote>\n<p><strong>NOTE</strong> We allow a customer's payment card record to be returned to active status from archived - use our <strong>Unarchive</strong> endpoint.</p>\n</blockquote>\n","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"2165816b-ad07-4118-a06b-0311d11ff213","id":"2165816b-ad07-4118-a06b-0311d11ff213","name":"CustomerVault","type":"folder"}},"urlObject":{"path":["api","customer-vault","<customerId>","card","<id>","archive"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"08678ee5-cba5-484f-99bd-5c6612a328aa","name":"Archive a payment card","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"billing\": {\n        \"id\": 2\n    },\n    \"terminal\": {\n        \"id\": 1\n    },\n    \"cvv\": \"996\",\n    \"exp\": \"12/31\",\n    \"holderName\": \"John Wick\",\n    \"number\": \"6011421812165456\"\n}","options":{"raw":{"language":"json"}}},"url":"https://dashboard.dashboard.paysecureonline.com/api/customer-vault/1/card/1/archive"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    true\n}"}],"_postman_id":"0358efc2-fc21-4b9d-bb8d-ff8ccde07dc4"},{"name":"Unarchive","id":"362eeebc-f784-4b74-81fa-dc5873e01372","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://dashboard.dashboard.paysecureonline.com/api/customer-vault/<customerId>/card/<id>/unarchive","description":"<p>If you want to return an archived card to an active status use the following:</p>\n","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"2165816b-ad07-4118-a06b-0311d11ff213","id":"2165816b-ad07-4118-a06b-0311d11ff213","name":"CustomerVault","type":"folder"}},"urlObject":{"path":["api","customer-vault","<customerId>","card","<id>","unarchive"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"d954d3ad-29ef-431c-a938-fca4fb0198a4","name":"Unarchive a payment card","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"billing\": {\n        \"id\": 2\n    },\n    \"terminal\": {\n        \"id\": 1\n    },\n    \"cvv\": \"996\",\n    \"exp\": \"12/31\",\n    \"holderName\": \"John Wick\",\n    \"number\": \"6011421812165456\"\n}","options":{"raw":{"language":"json"}}},"url":"https://dashboard.dashboard.paysecureonline.com/api/customer-vault/1/card/1/unarchive"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    true\n}"}],"_postman_id":"362eeebc-f784-4b74-81fa-dc5873e01372"},{"name":"Delete","id":"d89ba3e8-1f49-4c4a-b7af-c1e3fc1a9899","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://dashboard.dashboard.paysecureonline.com/api/customer-vault/<customerId>/card/<id>","description":"<p>If a specific payment card is not present in the transactional history of a customer you can delete it.</p>\n<blockquote>\n<p><strong>IMPORTANT</strong> You cannot restore a deleted payment card record. If you are unsure of future use we suggest archiving it.</p>\n</blockquote>\n","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"2165816b-ad07-4118-a06b-0311d11ff213","id":"2165816b-ad07-4118-a06b-0311d11ff213","name":"CustomerVault","type":"folder"}},"urlObject":{"path":["api","customer-vault","<customerId>","card","<id>"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"5ac909a5-cf61-4fbf-b037-fd7a3f3dcb8b","name":"Unarchive a payment card","originalRequest":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":"{\n    \"billing\": {\n        \"id\": 2\n    },\n    \"terminal\": {\n        \"id\": 1\n    },\n    \"cvv\": \"996\",\n    \"exp\": \"12/31\",\n    \"holderName\": \"John Wick\",\n    \"number\": \"6011421812165456\"\n}","options":{"raw":{"language":"json"}}},"url":"https://dashboard.dashboard.paysecureonline.com/api/customer-vault/1/card/1/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    true\n}"}],"_postman_id":"d89ba3e8-1f49-4c4a-b7af-c1e3fc1a9899"}],"id":"c558b2b0-61f8-498c-8149-6e883867356a","_postman_id":"c558b2b0-61f8-498c-8149-6e883867356a","description":"","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"2165816b-ad07-4118-a06b-0311d11ff213","id":"2165816b-ad07-4118-a06b-0311d11ff213","name":"CustomerVault","type":"folder"}}},{"name":"Billing Information","item":[{"name":"List","id":"4eef9b39-6aa8-4250-ab57-fda8d5770141","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/customer-vault/<customerId>/billing-information","description":"<p>This will return an object of all the billing information records on file for a specific customer in the vault.</p>\n","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"2165816b-ad07-4118-a06b-0311d11ff213","id":"2165816b-ad07-4118-a06b-0311d11ff213","name":"CustomerVault","type":"folder"}},"urlObject":{"path":["api","customer-vault","<customerId>","billing-information"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"7a0eb82b-a735-4421-8d06-7ce2e68a6016","name":"List","originalRequest":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/customer-vault/1/billing-information"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"items\": [\n        {\n            \"id\": \"2\",\n            \"firstName\": \"John\",\n            \"lastName\": \"Wick\",\n            \"address\": \"123 Street Name\",\n            \"state\": \"California\",\n            \"city\": \"Los Angeles\",\n            \"zip\": \"91206\",\n            \"country\": \"United States\",\n            \"createdOn\": \"2021-06-02 12:37:12\",\n            \"_links\": {\n                \"index\": {\n                    \"href\": \"https://dashboard.dashboard.paysecureonline.com/api/customer-vault/1/billing-information\"\n                },\n                \"self\": {\n                    \"href\": \"https://dashboard.dashboard.paysecureonline.com/api/customer-vault/1/billing-information/2\"\n                }\n            }\n        }\n    ],\n    \"_links\": {\n        \"self\": {\n            \"href\": \"https://dashboard.dashboard.paysecureonline.com/api/customer-vault/1/billing-information?%2Fapi%2Fcustomer-vault%2F1%2Fbilling-information=&page=1\"\n        },\n        \"first\": {\n            \"href\": \"https://dashboard.dashboard.paysecureonline.com/api/customer-vault/1/billing-information?%2Fapi%2Fcustomer-vault%2F1%2Fbilling-information=&page=1\"\n        },\n        \"last\": {\n            \"href\": \"https://dashboard.dashboard.paysecureonline.com/api/customer-vault/1/billing-information?%2Fapi%2Fcustomer-vault%2F1%2Fbilling-information=&page=1\"\n        }\n    },\n    \"_meta\": {\n        \"totalCount\": 1,\n        \"pageCount\": 1,\n        \"currentPage\": 1,\n        \"perPage\": 30\n    }\n}"}],"_postman_id":"4eef9b39-6aa8-4250-ab57-fda8d5770141"},{"name":"View","id":"335bde7e-ab32-4841-9eec-7ce6f543c5d4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/customer-vault/<customerId>/billing-information/<id>","description":"<p>Use this endpoint to view a single billing record for a specific customer</p>\n","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"2165816b-ad07-4118-a06b-0311d11ff213","id":"2165816b-ad07-4118-a06b-0311d11ff213","name":"CustomerVault","type":"folder"}},"urlObject":{"path":["api","customer-vault","<customerId>","billing-information","<id>"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"d247fad4-c530-4681-95dc-1d7d5284d242","name":"View","originalRequest":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/customer-vault/<customerId>/billing-information/<id>"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\r\n    \"id\": 136,\r\n    \"firstName\": \"Marty\",\r\n    \"lastName\": \"McFly\",\r\n    \"address\": \"9303 Lyon Drive\",\r\n    \"state\": \"California\",\r\n    \"city\": \"Hill Valley\",\r\n    \"zip\": \"95420\",\r\n    \"country\": \"United States\",\r\n    \"archived\": \"No\",\r\n    \"createdOn\": \"2022-09-08 21:19:27\"\r\n}"}],"_postman_id":"335bde7e-ab32-4841-9eec-7ce6f543c5d4"},{"name":"Update","id":"e77be49c-de8e-469d-b35f-2f6fc59fd310","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"firstName\": \"Emmett\",\n    \"lastName\": \"Brown\",\n    \"state\": \"CA\"\n}","options":{"raw":{"language":"json"}}},"url":"https://dashboard.dashboard.paysecureonline.com/api/customer-vault/<customerId>/billing-information/<id>","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"2165816b-ad07-4118-a06b-0311d11ff213","id":"2165816b-ad07-4118-a06b-0311d11ff213","name":"CustomerVault","type":"folder"}},"urlObject":{"path":["api","customer-vault","<customerId>","billing-information","<id>"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"7d2dbe81-2bc2-40d3-841f-5582ecaa3dd6","name":"Update","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"firstName\": \"Emmett\",\n    \"lastName\": \"Brown\",\n    \"state\": \"CA\"\n}","options":{"raw":{"language":"json"}}},"url":"https://dashboard.dashboard.paysecureonline.com/api/customer-vault/38/billing-information/34"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 136,\n    \"firstName\": \"Emmett\",\n    \"lastName\": \"Brown\",\n    \"address\": \"9303 Lyon Drive\",\n    \"state\": \"California\",\n    \"city\": \"Hill Valley\",\n    \"zip\": \"95420\",\n    \"country\": \"United States\",\n    \"archived\": \"No\",\n    \"createdOn\": \"2022-09-08 21:19:27\"\n}"}],"_postman_id":"e77be49c-de8e-469d-b35f-2f6fc59fd310"},{"name":"Create","id":"07bba345-b056-46f9-9a69-5cf1725a9907","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n   \"firstName\":\"John\",\r\n   \"lastName\":\"Wick\",\r\n   \"address\":\"123 Street Name\",\r\n   \"city\":\"Los Angeles\",\r\n   \"zip\":\"91206\",\r\n   \"state\":\"CA\",\r\n   \"country\":\"US\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://dashboard.dashboard.paysecureonline.com/api/customer-vault/<customerId>/billing-information","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"2165816b-ad07-4118-a06b-0311d11ff213","id":"2165816b-ad07-4118-a06b-0311d11ff213","name":"CustomerVault","type":"folder"}},"urlObject":{"path":["api","customer-vault","<customerId>","billing-information"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"c01ccdb1-6740-4714-864b-dc2ce03841cf","name":"Create","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n   \"firstName\":\"Marty\",\r\n   \"lastName\":\"McFly\",\r\n   \"address\":\"123 Street Name\",\r\n   \"city\":\"Los Angeles\",\r\n   \"zip\":\"91206\",\r\n   \"state\":\"CA\",\r\n   \"country\":\"US\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://dashboard.dashboard.paysecureonline.com/api/customer-vault/38/billing-information"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\r\n    \"id\": \"365\",\r\n    \"firstName\": \"Marty\",\r\n    \"lastName\": \"McFly\",\r\n    \"address\": \"123 Street Name\",\r\n    \"state\": \"California\",\r\n    \"city\": \"Los Angeles\",\r\n    \"zip\": \"91206\",\r\n    \"country\": \"United States\",\r\n    \"archived\": null,\r\n    \"createdOn\": null\r\n}"}],"_postman_id":"07bba345-b056-46f9-9a69-5cf1725a9907"}],"id":"f2593879-d6c5-4236-ab86-7f853050d372","description":"<p>You can use this endpoint for customer billing-related operations in the customer vault. You can create, update, delete, or archive customer billing information.</p>\n<p>Billing Information Object</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Fields</th>\n<th>Description</th>\n<th>Type</th>\n<th>Filterable</th>\n<th>Required</th>\n<th>Readonly</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>Unique ID</td>\n<td>Integer</td>\n<td>Yes</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>firstName</td>\n<td>First name</td>\n<td>String</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>lastName</td>\n<td>Last name</td>\n<td>String</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>address</td>\n<td>Address</td>\n<td>String</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>state</td>\n<td>State <code>Example: CA, NY, etc...</code></td>\n<td>String</td>\n<td>Yes</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>country</td>\n<td>Country <code>Example: US, UK, etc...</code></td>\n<td>String</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>city</td>\n<td>City</td>\n<td>String</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>zip</td>\n<td>ZIP code</td>\n<td>String</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>archived</td>\n<td><code>Yes</code> or <code>No</code></td>\n<td>ENUM</td>\n<td>Yes</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>createdOn</td>\n<td>Datetime of creation</td>\n<td>Datetime</td>\n<td>Yes</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"f2593879-d6c5-4236-ab86-7f853050d372","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"2165816b-ad07-4118-a06b-0311d11ff213","id":"2165816b-ad07-4118-a06b-0311d11ff213","name":"CustomerVault","type":"folder"}}},{"name":"Shipping Information","item":[{"name":"List","id":"25d48827-12e7-4342-9834-95771a6bc272","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/customer-vault/<customerID> /shipping-information","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"2165816b-ad07-4118-a06b-0311d11ff213","id":"2165816b-ad07-4118-a06b-0311d11ff213","name":"CustomerVault","type":"folder"}},"urlObject":{"path":["api","customer-vault","<customerID> ","shipping-information"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"316ece68-15aa-4774-a804-70b48f9f2887","name":"List","originalRequest":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/customer-vault/<customerID>/shipping-information"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\r\n    \"items\": [\r\n        {\r\n            \"id\": 28,\r\n            \"firstName\": \"John\",\r\n            \"lastName\": \"Wick\",\r\n            \"address\": \"123 Sesame St\",\r\n            \"state\": \"California\",\r\n            \"city\": \"Los Angeles\",\r\n            \"zip\": \"91206\",\r\n            \"country\": \"United States\",\r\n            \"note\": \"Example Note\",\r\n            \"archived\": \"No\",\r\n            \"createdOn\": \"2023-08-07 18:42:36\"\r\n        }\r\n}"}],"_postman_id":"25d48827-12e7-4342-9834-95771a6bc272"},{"name":"View","id":"46f88d55-a292-448a-a08d-2a614c7d2385","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/customer-vault/<customerID>/shipping-information/<id>","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"2165816b-ad07-4118-a06b-0311d11ff213","id":"2165816b-ad07-4118-a06b-0311d11ff213","name":"CustomerVault","type":"folder"}},"urlObject":{"path":["api","customer-vault","<customerID>","shipping-information","<id>"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"5699b815-99ea-4f7e-95ef-e60b58cc7884","name":"View","originalRequest":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/customer-vault/<customerID>/shipping-information/<id>"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 28,\n    \"firstName\": \"John\",\n    \"lastName\": \"Wick\",\n    \"address\": \"123 Sesame St\",\n    \"state\": \"California\",\n    \"city\": \"Los Angeles\",\n    \"zip\": \"91206\",\n    \"country\": \"United States\",\n    \"note\": \"Example Note\",\n    \"archived\": \"No\",\n    \"createdOn\": \"2023-08-07 18:42:36\"\n}"}],"_postman_id":"46f88d55-a292-448a-a08d-2a614c7d2385"},{"name":"Update","id":"a5240bac-93f3-40cd-a2c2-9cdab0731ba6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"firstName\": \"John\",\n    \"lastName\": \"Wick\",\n    \"state\": \"CA\"\n}","options":{"raw":{"language":"json"}}},"url":"https://dashboard.dashboard.paysecureonline.com/api/customer-vault/<customerID>/shipping-information/<id>","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"2165816b-ad07-4118-a06b-0311d11ff213","id":"2165816b-ad07-4118-a06b-0311d11ff213","name":"CustomerVault","type":"folder"}},"urlObject":{"path":["api","customer-vault","<customerID>","shipping-information","<id>"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"c0d180bc-69b3-4feb-b9a6-3cf6b0ce5f69","name":"Update","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n   \"address\":\"111 New Street Name\",\n   \"city\": \"San Diego\"\n}","options":{"raw":{"language":"json"}}},"url":"https://dashboard.dashboard.paysecureonline.com/api/customer-vault/<customerID>/shipping-information/<id>"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\r\n    \"id\": 28,\r\n    \"firstName\": \"John\",\r\n    \"lastName\": \"Wick\",\r\n    \"address\": \"111 New Street Name\",\r\n    \"state\": \"California\",\r\n    \"city\": \"San Diego\",\r\n    \"zip\": \"91206\",\r\n    \"country\": \"United States\",\r\n    \"note\": \"Example Note\",\r\n    \"archived\": \"No\",\r\n    \"createdOn\": \"2023-08-07 18:42:36\"\r\n}"}],"_postman_id":"a5240bac-93f3-40cd-a2c2-9cdab0731ba6"},{"name":"Create","id":"adaff723-4eae-43c3-953c-af5527c0e89b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"firstName\":\"John\",\n    \"lastName\":\"Wick\",\n    \"address\":\"123 Street Name\",\n    \"city\":\"Los Angeles\",\n    \"zip\":\"91206\",\n    \"state\":\"CA\",\n    \"country\":\"US\"\n}","options":{"raw":{"language":"json"}}},"url":"https://dashboard.dashboard.paysecureonline.com/api/customer-vault/<customerID>/shipping-information","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"2165816b-ad07-4118-a06b-0311d11ff213","id":"2165816b-ad07-4118-a06b-0311d11ff213","name":"CustomerVault","type":"folder"}},"urlObject":{"path":["api","customer-vault","<customerID>","shipping-information"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"bbc4ae93-f5ab-40c4-8249-96121a2079b5","name":"Create","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"firstName\":\"John\",\n    \"lastName\":\"Wick\",\n    \"address\":\"123 Street Name\",\n    \"city\":\"Los Angeles\",\n    \"zip\":\"91206\",\n    \"state\":\"CA\",\n    \"country\":\"US\"\n}","options":{"raw":{"language":"json"}}},"url":"https://dashboard.dashboard.paysecureonline.com/api/customer-vault/<customerID>/shipping-information"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\r\n    \"id\": \"30\",\r\n    \"firstName\": \"John\",\r\n    \"lastName\": \"Wick\",\r\n    \"address\": \"1234 Street Name\",\r\n    \"state\": \"California\",\r\n    \"city\": \"Paris\",\r\n    \"zip\": \"91206\",\r\n    \"country\": \"United States\",\r\n    \"note\": null,\r\n    \"archived\": null,\r\n    \"createdOn\": null\r\n}"}],"_postman_id":"adaff723-4eae-43c3-953c-af5527c0e89b"}],"id":"54172de7-7b6e-47fa-995d-c113efc210f1","_postman_id":"54172de7-7b6e-47fa-995d-c113efc210f1","description":"","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"2165816b-ad07-4118-a06b-0311d11ff213","id":"2165816b-ad07-4118-a06b-0311d11ff213","name":"CustomerVault","type":"folder"}}},{"name":"Recurring Payment","item":[{"name":"List","id":"e9f4e748-852d-44ad-bcb8-a73a3426e335","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/customer-vault/38/recurring-payments","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"2165816b-ad07-4118-a06b-0311d11ff213","id":"2165816b-ad07-4118-a06b-0311d11ff213","name":"CustomerVault","type":"folder"}},"urlObject":{"path":["api","customer-vault","38","recurring-payments"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"221d4651-2172-42cc-b18a-bb559608273e","name":"List","originalRequest":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/customer-vault/38/recurring-payments"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"items\": [\r\n        {\r\n            \"id\": 1,\r\n            \"name\": \"Monthly subscription\",\r\n            \"description\": \"Cinema Membership\",\r\n            \"amount\": \"3.11\",\r\n            \"execute\": {\r\n                \"frequency\": 1,\r\n                \"period\": \"month\"\r\n            },\r\n            \"valid\": {\r\n                \"from\": \"2020-01-01\",\r\n                \"to\": \"2020-12-31\"\r\n            },\r\n            \"payment\": {\r\n                \"next\": \"2020-02-01\",\r\n                \"last\": null,\r\n                \"max\": 12,\r\n                \"attempt\": {\r\n                    \"date\": null,\r\n                    \"retries\": 0\r\n                }\r\n            },\r\n            \"terminal\": {\r\n                \"id\": 1\r\n            },\r\n            \"customer\": {\r\n                \"id\": 38,\r\n                \"card\": {\r\n                    \"id\": 1,\r\n                    \"number\": 4489,\r\n                    \"token\": \"H3ViuS1XiX9w4489\",\r\n                    \"exp\": \"2020-12-31\",\r\n                    \"order\": 50,\r\n                    \"status\": \"Expired\"\r\n                }\r\n            },\r\n            \"status\": \"Active\",\r\n            \"archived\": \"No\"\r\n        }\r\n    ]\r\n}"}],"_postman_id":"e9f4e748-852d-44ad-bcb8-a73a3426e335"},{"name":"View","id":"56e21551-7a9d-4d2a-bfd8-abf83f5f371d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/customer-vault/38/recurring-payment/1","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"2165816b-ad07-4118-a06b-0311d11ff213","id":"2165816b-ad07-4118-a06b-0311d11ff213","name":"CustomerVault","type":"folder"}},"urlObject":{"path":["api","customer-vault","38","recurring-payment","1"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"5278361c-98d6-4773-94ef-a94b8e9b7b5e","name":"View","originalRequest":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/customer-vault/38/recurring-payment/1"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"id\": 1,\r\n    \"name\": \"Monthly subscription\",\r\n    \"description\": \"Cinema Membership\",\r\n    \"amount\": \"3.11\",\r\n    \"execute\": {\r\n        \"frequency\": 1,\r\n        \"period\": \"month\"\r\n    },\r\n    \"valid\": {\r\n        \"from\": \"2020-01-01\",\r\n        \"to\": \"2020-12-31\"\r\n    },\r\n    \"payment\": {\r\n        \"next\": \"2020-02-01\",\r\n        \"last\": null,\r\n        \"max\": 12,\r\n        \"attempt\": {\r\n            \"date\": null,\r\n            \"retries\": 0\r\n        }\r\n    },\r\n    \"terminal\": {\r\n        \"id\": 1\r\n    },\r\n    \"customer\": {\r\n        \"id\": 38,\r\n        \"card\": {\r\n            \"id\": 1,\r\n            \"number\": 4489,\r\n            \"token\": \"H3ViuS1XiX9w4489\",\r\n            \"exp\": \"2020-12-31\",\r\n            \"order\": 50,\r\n            \"status\": \"Expired\"\r\n        }\r\n    },\r\n    \"status\": \"Active\",\r\n    \"archived\": \"No\"\r\n}"}],"_postman_id":"56e21551-7a9d-4d2a-bfd8-abf83f5f371d"},{"name":"Update","id":"4ace814e-2317-484b-a2bc-86bda5f82902","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n\n    \"name\": \"Monthly subscription\",\n    \"description\": \"Cinema Membership\",\n    \"amount\": \"3.11\"\n}","options":{"raw":{"language":"json"}}},"url":"https://dashboard.dashboard.paysecureonline.com/api/customer-vault/38/recurring-payment/1","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"2165816b-ad07-4118-a06b-0311d11ff213","id":"2165816b-ad07-4118-a06b-0311d11ff213","name":"CustomerVault","type":"folder"}},"urlObject":{"path":["api","customer-vault","38","recurring-payment","1"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"2443a0bc-da7c-428e-83e4-45e63b34fe81","name":"Update","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n\n    \"name\": \"Monthly subscription\",\n    \"description\": \"Cinema Membership\",\n    \"amount\": \"3.11\"\n}","options":{"raw":{"language":"json"}}},"url":"https://dashboard.dashboard.paysecureonline.com/api/customer-vault/38/recurring-payment/1"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"id\": 1,\r\n    \"name\": \"Monthly subscription\",\r\n    \"description\": \"Cinema Membership\",\r\n    \"amount\": \"3.11\",\r\n    \"execute\": {\r\n        \"frequency\": 1,\r\n        \"period\": \"month\"\r\n    },\r\n    \"valid\": {\r\n        \"from\": \"2020-01-01\",\r\n        \"to\": \"2020-12-31\"\r\n    },\r\n    \"payment\": {\r\n        \"next\": \"2020-02-01 00:00:00\",\r\n        \"last\": null,\r\n        \"max\": 12,\r\n        \"attempt\": {\r\n            \"date\": null,\r\n            \"retries\": 0\r\n        }\r\n    },\r\n    \"terminal\": {\r\n        \"id\": 1\r\n    },\r\n    \"customer\": {\r\n        \"id\": 38,\r\n        \"card\": {\r\n            \"id\": 1,\r\n            \"number\": 4489,\r\n            \"token\": \"H3ViuS1XiX9w4489\",\r\n            \"exp\": \"2020-12-31\",\r\n            \"order\": 50,\r\n            \"status\": \"Expired\"\r\n        }\r\n    },\r\n    \"status\": \"Active\",\r\n    \"archived\": \"No\"\r\n}"}],"_postman_id":"4ace814e-2317-484b-a2bc-86bda5f82902"},{"name":"Create","id":"c07f62df-55b9-47f6-8b5b-fab917d39dd2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"Monthly subscription\",\n    \"description\": \"Cinema Membership\",\n    \"amount\": 3,\n    \"execute\": {\n        \"frequency\": 1,\n        \"period\": \"month\"\n    },\n    \"valid\": {\n        \"from\": \"2020-01-01\",\n        \"to\": \"2020-12-31\"\n    },\n    \"payment\": {\n        \"max\": 12\n    },\n    \"terminal\": {\n        \"id\": 1\n    },\n    \"customer\": {\n        \"id\": 38,\n        \"card\": {\n            \"id\": 1\n        }\n    },\n    \"dba\": {\n        \"id\": 72\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://dashboard.dashboard.paysecureonline.com/api/customer-vault/38/recurring-payment","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"2165816b-ad07-4118-a06b-0311d11ff213","id":"2165816b-ad07-4118-a06b-0311d11ff213","name":"CustomerVault","type":"folder"}},"urlObject":{"path":["api","customer-vault","38","recurring-payment"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"fa3f15e1-3471-4b80-8b7b-76946d2a6ccf","name":"Create","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"Monthly subscription\",\n    \"description\": \"Cinema Membership\",\n    \"amount\": 3,\n    \"execute\": {\n        \"frequency\": 1,\n        \"period\": \"month\"\n    },\n    \"valid\": {\n        \"from\": \"2020-01-01\",\n        \"to\": \"2020-12-31\"\n    },\n    \"payment\": {\n        \"max\": 12\n    },\n    \"terminal\": {\n        \"id\": 1\n    },\n    \"customer\": {\n        \"id\": 38,\n        \"card\": {\n            \"id\": 1\n        }\n    },\n    \"dba\": {\n        \"id\": 72\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://dashboard.dashboard.paysecureonline.com/api/customer-vault/38/recurring-payment"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\r\n    \"id\": \"1\",\r\n    \"name\": \"Monthly subscription\",\r\n    \"description\": \"Cinema Membership\",\r\n    \"amount\": \"3.00\",\r\n    \"execute\": {\r\n        \"frequency\": 1,\r\n        \"period\": \"month\"\r\n    },\r\n    \"valid\": {\r\n        \"from\": \"2020-01-01\",\r\n        \"to\": \"2020-12-31\"\r\n    },\r\n    \"payment\": {\r\n        \"next\": \"2020-02-01 00:00:00\",\r\n        \"last\": null,\r\n        \"max\": 12,\r\n        \"attempt\": {\r\n            \"date\": null,\r\n            \"retries\": null\r\n        }\r\n    },\r\n    \"terminal\": {\r\n        \"id\": 1\r\n    },\r\n    \"customer\": {\r\n        \"id\": 38,\r\n        \"card\": {\r\n            \"id\": 1,\r\n            \"number\": 4489,\r\n            \"token\": \"H3ViuS1XiX9w4489\",\r\n            \"exp\": \"2020-12-31\",\r\n            \"order\": 50,\r\n            \"status\": \"Expired\"\r\n        }\r\n    },\r\n    \"status\": null,\r\n    \"archived\": null\r\n}"}],"_postman_id":"c07f62df-55b9-47f6-8b5b-fab917d39dd2"}],"id":"771af592-d4ad-45dd-b578-db2eff9d36d9","description":"<h4 id=\"recurring-payments\">Recurring Payments</h4>\n<p>Easily and securely set up billing that occurs at specific intervals. If you have a customer that decides to opt for recurring billing, the system can set up an order that recurs at the decided period and automatically uses the customer's payment details to process subsequent payments.</p>\n<p>The recurring transaction can be set with its own start and end date and time, billing frequency (complete freedom with cron expressions) and total number of payments. When recurring is configured for a customer in the system, a new transaction is sent on the set date for every billing cycle for the requested duration, without any customer or merchant intervention.</p>\n","_postman_id":"771af592-d4ad-45dd-b578-db2eff9d36d9","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"2165816b-ad07-4118-a06b-0311d11ff213","id":"2165816b-ad07-4118-a06b-0311d11ff213","name":"CustomerVault","type":"folder"}}}],"id":"2165816b-ad07-4118-a06b-0311d11ff213","description":"<p>Customer Vault securely stores sensitive customer billing information, allowing subsequent transactions to be processed without the need for you to recollect the information or store it on your own system. This makes for a quick and simple billing process.</p>\n<p>The Customer Vault API offers the following capabilities:</p>\n<ul>\n<li>Create and modify customer profiles.</li>\n<li>Securely store customer payment information, such as card numbers, in the Customer Cards, and link it to the customer profile.</li>\n<li>Store multiple payment cards for each customer.</li>\n<li>Use tokens to process transactions.</li>\n</ul>\n<p>You can <strong>create</strong>, <strong>update</strong>, and <strong>delete</strong> customer information from the customer vault.</p>\n<p>Object</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Fields</th>\n<th>Description</th>\n<th>Type</th>\n<th>Filterable</th>\n<th>Required</th>\n<th>Readonly</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>Unique ID of the customer</td>\n<td>Integer</td>\n<td>Yes</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>dba</td>\n<td>DBA Object</td>\n<td>Object</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>dba.id</td>\n<td>ID</td>\n<td>Integer</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>firstName</td>\n<td>First name</td>\n<td>String</td>\n<td>Yes</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>lastName</td>\n<td>Last name</td>\n<td>String</td>\n<td>Yes</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>company</td>\n<td>Company</td>\n<td>String</td>\n<td>Yes</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>email</td>\n<td>Email</td>\n<td>String</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>website</td>\n<td>Website</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>phone</td>\n<td>Phone</td>\n<td>String</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>altPhone</td>\n<td>Alt phone</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>identificator</td>\n<td>Internal customer ID on the merchants platform</td>\n<td>String</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>description</td>\n<td>Description</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>archived</td>\n<td><code>Yes</code> or <code>No</code></td>\n<td>ENUM</td>\n<td>Yes</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>updatedOn</td>\n<td>Datetime of last update</td>\n<td>Datetime</td>\n<td>Yes</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>createdOn</td>\n<td>Datetime of creation</td>\n<td>Datetime</td>\n<td>Yes</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":false},"event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""]}},{"listen":"test","script":{"type":"text/javascript","exec":[""]}}],"_postman_id":"2165816b-ad07-4118-a06b-0311d11ff213"},{"name":"Reporting","item":[{"name":"Authorizations","item":[{"name":"List","id":"e8a95f91-66bb-4ad9-9f07-80592eb94a34","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/reporting/authorizations/<dbaId>","description":"<blockquote>\n<p><strong>IMPORTANT</strong> If no <code>date</code> is specified in the request as a filter we will return authorizations for the last 5 days from the current date.</p>\n</blockquote>\n","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"4c3c3ead-05b2-4236-bc58-9aa21b2b45c4","id":"4c3c3ead-05b2-4236-bc58-9aa21b2b45c4","name":"Authorizations","type":"folder"}},"urlObject":{"path":["api","reporting","authorizations","<dbaId>"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"00879fcc-3a3a-44a7-a4f5-d7dcd6a1b053","name":"List","originalRequest":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/reporting/authorizations/9"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":" {\n            \"id\": \"22376031\",\n            \"card\": {\n                \"number\": \"473702XXXXXX6363\",\n                \"bin\": {\n                    \"bin\": \"473702\",\n                    \"brand\": \"Visa\",\n                    \"organization\": \"Wells Fargo Bank, N.a.\",\n                    \"type\": \"Debit\",\n                    \"category\": \"Classic\",\n                    \"country\": {\n                        \"name\": \"United States\",\n                        \"code\": \"US\"\n                    }\n                }\n            },\n            \"amount\": \"0.01\",\n            \"type\": \"Credit\",\n            \"terminal\": {\n                \"id\": \"14\",\n                \"number\": 7000\n            },\n            \"date\": \"2020-03-24 00:10:26\",\n            \"status\": \"Successful approval/completion\"\n        },\n        {\n            \"id\": \"22375683\",\n            \"card\": {\n                \"number\": \"443048XXXXXX5662\",\n                \"bin\": {\n                    \"bin\": \"443048\",\n                    \"brand\": \"Visa\",\n                    \"organization\": \"Pnc Bank, N.a.\",\n                    \"type\": \"Debit\",\n                    \"category\": \"Classic\",\n                    \"country\": {\n                        \"name\": \"United States\",\n                        \"code\": \"US\"\n                    }\n                }\n            },\n            \"amount\": \"29.99\",\n            \"type\": \"Debit\",\n            \"terminal\": {\n                \"id\": \"14\",\n                \"number\": 7000\n            },\n            \"date\": \"2020-03-24 00:31:25\",\n            \"status\": \"Successful approval/completion\"\n        }\n    ],\n    \"_links\": {\n        \"self\": {\n            \"href\": \"https://dashboard.dashboard.paysecureonline.com/api/reporting/authorizations/1?page=1\"\n        },\n    \"_meta\": {\n        \"totalCount\": 2,\n        \"pageCount\": 1,\n        \"currentPage\": 1,\n        \"perPage\": 30\n    }\n}"}],"_postman_id":"e8a95f91-66bb-4ad9-9f07-80592eb94a34"},{"name":"List with Filters","id":"e2c05b1d-d55c-4f92-98b4-0cc2091f1f31","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/reporting/authorizations/<dbaId>?filter[card.bin.brand]=Visa&filter[terminal.number]=7000&filter[date][gte]=2020-03-24 00:00:00&filter[date][lte]=2020-03-24 23:59:59","description":"<p>Example request to list all authorizations for a specific <code>dbaId</code>, <code>card.bin.brand.visa</code> and <code>terminal.number</code> between a date range</p>\n","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"4c3c3ead-05b2-4236-bc58-9aa21b2b45c4","id":"4c3c3ead-05b2-4236-bc58-9aa21b2b45c4","name":"Authorizations","type":"folder"}},"urlObject":{"path":["api","reporting","authorizations","<dbaId>"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[{"key":"filter[card.bin.brand]","value":"Visa"},{"key":"filter[terminal.number]","value":"7000"},{"key":"filter[date][gte]","value":"2020-03-24 00:00:00"},{"key":"filter[date][lte]","value":"2020-03-24 23:59:59"}],"variable":[]}},"response":[{"id":"46ee7870-8051-4fdb-80ed-073dea53fce3","name":"List with Filters","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://dashboard.dashboard.paysecureonline.com/api/reporting/authorizations/9?filter[card.bin.brand]=Visa&filter[terminal.number]=7000&filter[date][gte]=2020-03-24 00:00:00&filter[date][lte]=2020-03-24 23:59:59","host":["https://dashboard.dashboard.paysecureonline.com"],"path":["api","reporting","authorizations","9"],"query":[{"key":"filter[card.bin.brand]","value":"Visa"},{"key":"filter[terminal.number]","value":"7000"},{"key":"filter[date][gte]","value":"2020-03-24 00:00:00"},{"key":"filter[date][lte]","value":"2020-03-24 23:59:59"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":" {\n            \"id\": \"22375683\",\n            \"card\": {\n                \"number\": \"443048XXXXXX5662\",\n                \"bin\": {\n                    \"bin\": \"443048\",\n                    \"brand\": \"Visa\",\n                    \"organization\": \"Pnc Bank, N.a.\",\n                    \"type\": \"Debit\",\n                    \"category\": \"Classic\",\n                    \"country\": {\n                        \"name\": \"United States\",\n                        \"code\": \"US\"\n                    }\n                }\n            },\n            \"amount\": \"0.01\",\n            \"type\": \"Credit\",\n            \"terminal\": {\n                \"id\": \"14\",\n                \"number\": 7000\n            },\n            \"date\": \"2020-03-24 00:31:25\",\n            \"status\": \"Successful approval/completion\"\n        },\n        {\n            \"id\": \"22375518\",\n            \"card\": {\n                \"number\": \"453825XXXXXX9026\",\n                \"bin\": {\n                    \"bin\": \"453825\",\n                    \"brand\": \"Visa\",\n                    \"organization\": \"Bank Of Nova Scotia\",\n                    \"type\": \"Credit\",\n                    \"category\": \"Business\",\n                    \"country\": {\n                        \"name\": \"Canada\",\n                        \"code\": \"CA\"\n                    }\n                }\n            },\n            \"amount\": \"0.01\",\n            \"type\": \"Credit\",\n            \"terminal\": {\n                \"id\": \"14\",\n                \"number\": 7000\n            },\n            \"date\": \"2020-03-24 00:50:42\",\n            \"status\": \"Successful approval/completion\"\n        }\n    ],\n    \"_links\": {\n        \"self\": {\n            \"href\": \"https://dashboard.dashboard.paysecureonline.com/api/reporting/authorizations/1?filter%5Bcard.bin.brand%5D=Visa&filter%5Bterminal.number%5D=7000&filter%5Bdate%5D%5Bgte%5D=2020-03-24+00%3A00%3A00&filter%5Bdate%5D%5Blte%5D=2020-03-24+23%3A59%3A59&page=1\"\n        }\n    },\n    \"_meta\": {\n        \"totalCount\": 2,\n        \"pageCount\": 1,\n        \"currentPage\": 1,\n        \"perPage\": 30\n    }\n}"}],"_postman_id":"e2c05b1d-d55c-4f92-98b4-0cc2091f1f31"}],"id":"4c3c3ead-05b2-4236-bc58-9aa21b2b45c4","description":"<p>Returns a list of all authorizations for a specific <code>dba.id</code></p>\n<blockquote>\n<p><strong>IMPORTANT</strong> If no <code>date</code> is specified in the request as a filter we will return authorizations for the last 5 days from the current date. </p>\n</blockquote>\n<p>Authorizations Object</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Fields</th>\n<th>Description</th>\n<th>Type</th>\n<th>Filterable</th>\n<th>Required</th>\n<th>Readonly</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>Auth Identification Number</td>\n<td>Integer</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>card</td>\n<td>Card details</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>card.number</td>\n<td>Card number</td>\n<td>Integer</td>\n<td>Yes</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>card.bin</td>\n<td>BIN Object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>card.bin.bin</td>\n<td>Bank Identification Number</td>\n<td>Integer</td>\n<td>Yes</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>card.bin.brand</td>\n<td>Brand of the card</td>\n<td>String</td>\n<td>Yes</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>card.bin.type</td>\n<td><code>Debit</code>, <code>Credit</code> or <code>ChargeCard</code></td>\n<td>ENUM</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>card.bin.category</td>\n<td>Category of the card</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>card.bin.organization</td>\n<td>Organization</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>card.bin.country</td>\n<td>Country</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>card.bin.country.name</td>\n<td>Name of the country</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>card.bin.country.code</td>\n<td>ISO Code of the country</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>amount</td>\n<td>Authorized amount</td>\n<td>Number</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>type</td>\n<td><code>Debit</code>, <code>Credit</code> or <code>PIN Debit</code></td>\n<td>ENUM</td>\n<td>Yes</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>terminal</td>\n<td>Terminal details</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>terminal.id</td>\n<td>Terminal system id</td>\n<td>Integer</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>terminal.number</td>\n<td>Terminal Identification Number</td>\n<td>Integer</td>\n<td>Yes</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>date</td>\n<td>Datetime of the authorization</td>\n<td>Datetime</td>\n<td>Yes</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>status</td>\n<td>Authorization Status</td>\n<td>ENUM</td>\n<td>Yes</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"authorization-statuses\">Authorization Statuses</h3>\n<p>Below you can find some of the most common authorization statuses:</p>\n<blockquote>\n<p>Keep in mind that we may return other statuses as well this is just for your quick reference. </p>\n</blockquote>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Status</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Successful approval/completion</td>\n<td>The authorization has been successfully approved</td>\n</tr>\n<tr>\n<td>Insufficient funds</td>\n<td>The authorization was declined due to insufficient funds on the card</td>\n</tr>\n<tr>\n<td>Do not honor</td>\n<td>The authorization has been completely rejected by the issuing bank</td>\n</tr>\n<tr>\n<td>Pick up card</td>\n<td>The authorization has been Pick up card and needs to be held if possible. (Usually a stolen card)</td>\n</tr>\n<tr>\n<td>Refer to Issuer</td>\n<td>The authorization has been declined. The customer should contact their bank for more information</td>\n</tr>\n<tr>\n<td>Invalid account number</td>\n<td>The authorization has been declined. The card number has been incorrectly entered</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":false},"event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""]}},{"listen":"test","script":{"type":"text/javascript","exec":[""]}}],"_postman_id":"4c3c3ead-05b2-4236-bc58-9aa21b2b45c4"},{"name":"Batches","item":[{"name":"List","id":"e38d3eb4-5dfb-487d-8d5f-708c1719eaf9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/reporting/batches/<dbaId>","description":"<p>Use this endpoint to list all the batches for a specific <code>dba.id</code></p>\n<blockquote>\n<p><strong>IMPORTANT</strong> If no <code>batch.date</code> is specified in the request as a filter we will return results for the last 5 days from the current date.</p>\n</blockquote>\n","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"43c78142-56ba-4236-98f1-1b5756e805a4","id":"43c78142-56ba-4236-98f1-1b5756e805a4","name":"Batches","type":"folder"}},"urlObject":{"path":["api","reporting","batches","<dbaId>"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"eeb36728-7b6d-4fb6-8877-2b940efec613","name":"List","originalRequest":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/reporting/batches/9"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"items\": [\n        {\n            \"id\": 123456789,\n            \"card\": {\n                \"number\": \"531269******0736\",\n                \"bin\": {\n                    \"bin\": 531259,\n                    \"brand\": \"Mastercard\",\n                    \"organization\": \"Bank Of America, National Association\",\n                    \"type\": \"Debit\",\n                    \"category\": \"Enhanced\",\n                    \"country\": {\n                        \"name\": \"United States\",\n                        \"code\": \"US\"\n                    }\n                }\n            },\n            \"amount\": \"10.00\",\n            \"adjustment\": \"0.00\",\n            \"type\": \"credit\",\n            \"referenceNumber\": \"12345693222900012481321\",\n            \"purchaseId\": SSS-2023032405742994,\n            \"terminal\": null,\n            \"batch\": {\n                \"id\": xxxxxxx,\n                \"date\": \"2020-03-22\"\n            },\n            \"date\": \"2020-03-22\"\n        },\n        {\n            \"id\": 123456790,\n            \"card\": {\n                \"number\": \"483312******8992\",\n                \"bin\": {\n                    \"bin\": 483312,\n                    \"brand\": \"Visa\",\n                    \"organization\": \"Jpmorgan Chase Bank, N.a.\",\n                    \"type\": \"Debit\",\n                    \"category\": \"Classic\",\n                    \"country\": {\n                        \"name\": \"United States\",\n                        \"code\": \"US\"\n                    }\n                }\n            },\n            \"amount\": \"100.00\",\n            \"adjustment\": \"0.00\",\n            \"type\": \"debit\",\n            \"referenceNumber\": \"123456213222900012457999\",\n            \"purchaseId\": null,\n            \"terminal\": null,\n            \"batch\": {\n                \"id\": xxxxxxx,\n                \"date\": \"2020-03-22\"\n            },\n            \"date\": \"2020-03-22\"\n        }\n    ],\n    \"_links\": {\n        \"self\": {\n            \"href\": \"https://dashboard.dashboard.paysecureonline.com/api/reporting/batches/56921?page=1\"\n        },\n        \"first\": {\n            \"href\": \"https://dashboard.dashboard.paysecureonline.com/api/reporting/batches/56921?page=1\"\n        },\n        \"last\": {\n            \"href\": \"https://dashboard.dashboard.paysecureonline.com/api/reporting/batches/56921?page=1\"\n        }\n    },\n    \"_meta\": {\n        \"totalCount\": 2,\n        \"pageCount\": 1,\n        \"currentPage\": 1,\n        \"perPage\": 30\n    }\n}"}],"_postman_id":"e38d3eb4-5dfb-487d-8d5f-708c1719eaf9"},{"name":"List with Filters","id":"643543e4-b0a6-48e0-870d-ee9bbde50b16","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/reporting/batches/?filter[card.bin.brand]=Visa&filter[terminal.number]=7000&filter[date][gte]=2020-03-24 00:00:00&filter[date][lte]=2020-03-24 23:59:59","description":"<p>Example request to list all the transactions the are included in a batch for a specific date</p>\n","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"43c78142-56ba-4236-98f1-1b5756e805a4","id":"43c78142-56ba-4236-98f1-1b5756e805a4","name":"Batches","type":"folder"}},"urlObject":{"path":["api","reporting","batches",""],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[{"key":"filter[card.bin.brand]","value":"Visa"},{"key":"filter[terminal.number]","value":"7000"},{"key":"filter[date][gte]","value":"2020-03-24 00:00:00"},{"key":"filter[date][lte]","value":"2020-03-24 23:59:59"}],"variable":[]}},"response":[{"id":"efef117d-1a0f-4f99-80a0-eb388b440f04","name":"List with Filters","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://dashboard.dashboard.paysecureonline.com/api/reporting/batches/1?filter[batch.date]=2020-03-22","host":["https://dashboard.dashboard.paysecureonline.com"],"path":["api","reporting","batches","1"],"query":[{"key":"filter[batch.date]","value":"2020-03-22"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":" {\n     \"items\": [\n         {\n            \"id\": \"17385312\",\n            \"card\": {\n                \"number\": \"531259XXXXXX0736\",\n                \"bin\": {\n                    \"bin\": \"531259\",\n                    \"brand\": \"Mastercard\",\n                    \"organization\": \"Bank Of America, National Association\",\n                    \"type\": \"Debit\",\n                    \"category\": \"Enhanced\",\n                    \"country\": {\n                        \"name\": \"United States\",\n                        \"code\": \"US\"\n                    }\n                }\n            },\n            \"amount\": -0.01,\n            \"adjustment\": 0,\n            \"type\": \"credit\",\n            \"purchaseId\": \"SSS-2023032405742994\",\n            \"terminal\": {\n                \"vNumber\": null,\n                \"id\": null,\n                \"number\": null\n            },\n            \"batch\": {\n                \"id\": \"xxxxxxx\",\n                \"date\": \"2020-03-22\"\n            },\n            \"date\": \"2020-03-22\"\n        },\n        {\n            \"id\": \"17385309\",\n            \"card\": {\n                \"number\": \"483312XXXXXX8992\",\n                \"bin\": {\n                    \"bin\": \"483312\",\n                    \"brand\": \"Visa\",\n                    \"organization\": \"Jpmorgan Chase Bank, N.a.\",\n                    \"type\": \"Debit\",\n                    \"category\": \"Classic\",\n                    \"country\": {\n                        \"name\": \"United States\",\n                        \"code\": \"US\"\n                    }\n                }\n            },\n            \"amount\": -0.11,\n            \"adjustment\": 0,\n            \"type\": \"credit\",\n            \"purchaseId\": \"SSS-54552405742994\",\n            \"terminal\": {\n                \"vNumber\": null,\n                \"id\": null,\n                \"number\": null\n            },\n            \"batch\": {\n                \"id\": \"xxxxxxx\",\n                \"date\": \"2020-03-22\"\n            },\n            \"date\": \"2020-03-22\"\n        }\n    ],\n    \"_links\": {\n        \"self\": {\n            \"href\": \"https://dashboard.dashboard.paysecureonline.com/api/reporting/batches/14?page=1\"\n        },\n    \"_meta\": {\n        \"totalCount\": 2,\n        \"pageCount\": 1,\n        \"currentPage\": 1,\n        \"perPage\": 30\n    }\n}"}],"_postman_id":"643543e4-b0a6-48e0-870d-ee9bbde50b16"},{"name":"Summary","id":"f6b7d808-a517-4434-b81f-c044c348437f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/reporting/batch-summary/<dba.id>/<batch.id> or <batch.date>","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"43c78142-56ba-4236-98f1-1b5756e805a4","id":"43c78142-56ba-4236-98f1-1b5756e805a4","name":"Batches","type":"folder"}},"urlObject":{"path":["api","reporting","batch-summary","<dba.id>","<batch.id> or <batch.date>"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"eb48f197-e14a-4613-810d-f01163f0f0cf","name":"Summary","originalRequest":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/reporting/batch-summary/9/r8nV0N"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"debit\": \"62684.00\",\n    \"credit\": \"-1642.00\",\n    \"date\": \"2023-03-24\",\n    \"amount\": 61042,\n    \"id\": \"r8nV0N\"\n}"}],"_postman_id":"f6b7d808-a517-4434-b81f-c044c348437f"}],"id":"43c78142-56ba-4236-98f1-1b5756e805a4","description":"<p>View batches for a specific <code>dbaId</code>. You can view the full batch summary for a specific date or ID and also all the transactions that are included in that batch.</p>\n<blockquote>\n<p><strong>IMPORTANT</strong> If no <code>batch.date</code> is specified in the request as a filter we will return results for the last 5 days from the current date. </p>\n</blockquote>\n<p>Batch Object</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Fields</th>\n<th>Description</th>\n<th>Type</th>\n<th>Filterable</th>\n<th>Required</th>\n<th>Readonly</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>Batch Identification Number</td>\n<td>Integer</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>card</td>\n<td>Card details</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>card.number</td>\n<td>Card number</td>\n<td>Integer</td>\n<td>Yes</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>card.bin</td>\n<td>BIN Objecct</td>\n<td>Objecct</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>card.bin.bin</td>\n<td>Bank Identification Number</td>\n<td>Integer</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>card.bin.brand</td>\n<td>Brand of the card</td>\n<td>String</td>\n<td>Yes</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>card.bin.type</td>\n<td><code>Debit</code>, <code>Credit</code> or <code>ChargeCard</code></td>\n<td>ENUM</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>card.bin.category</td>\n<td>Category of the card</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>card.bin.organization</td>\n<td>Organization</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>card.bin.country</td>\n<td>Country</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>card.bin.country.name</td>\n<td>Name of the country</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>card.bin.country.code</td>\n<td>ISO Code of the country</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>amount</td>\n<td>Captured amount</td>\n<td>Number</td>\n<td>Yes</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>adjustment</td>\n<td>The adjusted amount between authorized and captured (Tip amount)</td>\n<td>Number</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>type</td>\n<td><code>Debit</code> (sale) оr<code>Credit</code>(refund) transaction</td>\n<td>ENUM</td>\n<td>Yes</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>terminal</td>\n<td>Terminal details</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>terminal.vNumber</td>\n<td>Terminal V#</td>\n<td>Integer</td>\n<td>Yes</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>terminal.id</td>\n<td>Terminal System ID</td>\n<td>Integer</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>terminal.number</td>\n<td>Terminal Identification Number</td>\n<td>Integer</td>\n<td>Yes</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>batch</td>\n<td>Batch details</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>batch.id</td>\n<td>Batch ID</td>\n<td>String</td>\n<td>Yes</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>batch.date</td>\n<td>Batch date</td>\n<td>Date</td>\n<td>Yes</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>date</td>\n<td>Date of the transaction</td>\n<td>Date</td>\n<td>Yes</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":false},"event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""]}},{"listen":"test","script":{"type":"text/javascript","exec":[""]}}],"_postman_id":"43c78142-56ba-4236-98f1-1b5756e805a4"},{"name":"Payouts","item":[{"name":"List","id":"5c53dded-c7c6-4585-b012-22da661e08c7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/reporting/payout/acq/<dbaId>?filter[processingDate][gte]=2023-04-01&filter[processingDate][lte]=2023-04-30","description":"<blockquote>\n<p><strong>NOTE</strong> Keep in mind that running this request without specifying a processingDate filter will return all available records for the current month</p>\n</blockquote>\n","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"1242019f-6dd1-4b2c-82d5-f0450a56c408","id":"1242019f-6dd1-4b2c-82d5-f0450a56c408","name":"Payouts","type":"folder"}},"urlObject":{"path":["api","reporting","payout","acq","<dbaId>"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[{"key":"filter[processingDate][gte]","value":"2023-04-01"},{"key":"filter[processingDate][lte]","value":"2023-04-30"}],"variable":[]}},"response":[{"id":"09746aa1-fc2c-4213-8bb2-2ae1bb9dfb48","name":"List with Date Range","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://dashboard.dashboard.paysecureonline.com/api/reporting/payouts/acq/9?filter[processingDate][gte]=2023-04-01&filter[processingDate][lte]=2023-04-30","host":["https://dashboard.dashboard.paysecureonline.com"],"path":["api","reporting","payouts","acq","9"],"query":[{"key":"filter[processingDate][gte]","value":"2023-04-01"},{"key":"filter[processingDate][lte]","value":"2023-04-30"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"items\": [\n        {\n            \"processingDate\": \"2023-04-12\",\n            \"deposit\": 9731.14,\n            \"feeTotalAmount\": 0,\n            \"chargeback\": {\n                \"totalCount\": 0,\n                \"totalAmount\": 0\n            },\n            \"reservedAmount\": 0,\n            \"releasedAmount\": 0,\n            \"batch\": {\n                \"date\": \"2023-04-12\",\n                \"amount\": \"9731.14\"\n            }\n        },\n        {\n            \"processingDate\": \"2023-04-11\",\n            \"deposit\": 11717.87,\n            \"feeTotalAmount\": 0,\n            \"chargeback\": {\n                \"totalCount\": 0,\n                \"totalAmount\": 0\n            },\n            \"reservedAmount\": 0,\n            \"releasedAmount\": 0,\n            \"batch\": {\n                \"date\": \"2023-04-11\",\n                \"amount\": \"11717.87\"\n            }\n        },\n        {\n            \"processingDate\": \"2023-04-10\",\n            \"deposit\": 10473.83,\n            \"feeTotalAmount\": 0,\n            \"chargeback\": {\n                \"totalCount\": 0,\n                \"totalAmount\": 0\n            },\n            \"reservedAmount\": 0,\n            \"releasedAmount\": 0,\n            \"batch\": {\n                \"date\": \"2023-04-10\",\n                \"amount\": \"10473.83\"\n            }\n        },\n        {\n            \"processingDate\": \"2023-04-09\",\n            \"deposit\": 5779.3,\n            \"feeTotalAmount\": 0,\n            \"chargeback\": {\n                \"totalCount\": 0,\n                \"totalAmount\": 0\n            },\n            \"reservedAmount\": 0,\n            \"releasedAmount\": 0,\n            \"batch\": {\n                \"date\": \"2023-04-09\",\n                \"amount\": \"8881.54\"\n            }\n        },\n        {\n            \"processingDate\": \"2023-04-07\",\n            \"deposit\": 10971.79,\n            \"feeTotalAmount\": 0,\n            \"chargeback\": {\n                \"totalCount\": 0,\n                \"totalAmount\": 0\n            },\n            \"reservedAmount\": 0,\n            \"releasedAmount\": 0,\n            \"batch\": {\n                \"date\": \"2023-04-07\",\n                \"amount\": \"10971.79\"\n            }\n        },\n        {\n            \"processingDate\": \"2023-04-06\",\n            \"deposit\": 12333.28,\n            \"feeTotalAmount\": 0,\n            \"chargeback\": {\n                \"totalCount\": 0,\n                \"totalAmount\": 0\n            },\n            \"reservedAmount\": 0,\n            \"releasedAmount\": 0,\n            \"batch\": {\n                \"date\": \"2023-04-06\",\n                \"amount\": \"12333.28\"\n            }\n        },\n        {\n            \"processingDate\": \"2023-04-05\",\n            \"deposit\": 13538.1,\n            \"feeTotalAmount\": 0,\n            \"chargeback\": {\n                \"totalCount\": 0,\n                \"totalAmount\": 0\n            },\n            \"reservedAmount\": 0,\n            \"releasedAmount\": 0,\n            \"batch\": {\n                \"date\": \"2023-04-05\",\n                \"amount\": \"13538.10\"\n            }\n        },\n        {\n            \"processingDate\": \"2023-04-04\",\n            \"deposit\": 15223,\n            \"feeTotalAmount\": 0,\n            \"chargeback\": {\n                \"totalCount\": 0,\n                \"totalAmount\": 0\n            },\n            \"reservedAmount\": 0,\n            \"releasedAmount\": 0,\n            \"batch\": {\n                \"date\": \"2023-04-04\",\n                \"amount\": \"15223.00\"\n            }\n        },\n        {\n            \"processingDate\": \"2023-04-03\",\n            \"deposit\": 18818.1,\n            \"feeTotalAmount\": 0,\n            \"chargeback\": {\n                \"totalCount\": 0,\n                \"totalAmount\": 0\n            },\n            \"reservedAmount\": 0,\n            \"releasedAmount\": 0,\n            \"batch\": {\n                \"date\": \"2023-04-03\",\n                \"amount\": \"18818.10\"\n            }\n        },\n        {\n            \"processingDate\": \"2023-04-02\",\n            \"deposit\": 17091.86,\n            \"feeTotalAmount\": 0,\n            \"chargeback\": {\n                \"totalCount\": 0,\n                \"totalAmount\": 0\n            },\n            \"reservedAmount\": 0,\n            \"releasedAmount\": 0,\n            \"batch\": {\n                \"date\": \"2023-04-02\",\n                \"amount\": \"27719.63\"\n            }\n        }\n    ],\n    \"_links\": {\n        \"self\": {\n            \"href\": \"https://dashboard.dashboard.paysecureonline.com/api/reporting/payouts/acq/9?filter%5BprocessingDate%5D%5Bgte%5D=2023-04-01&filter%5BprocessingDate%5D%5Blte%5D=2023-04-30&page=1\"\n        },\n        \"first\": {\n            \"href\": \"https://dashboard.dashboard.paysecureonline.com/api/reporting/payouts/acq/9?filter%5BprocessingDate%5D%5Bgte%5D=2023-04-01&filter%5BprocessingDate%5D%5Blte%5D=2023-04-30&page=1\"\n        },\n        \"last\": {\n            \"href\": \"https://dashboard.dashboard.paysecureonline.com/api/reporting/payouts/acq/9?filter%5BprocessingDate%5D%5Bgte%5D=2023-04-01&filter%5BprocessingDate%5D%5Blte%5D=2023-04-30&page=1\"\n        }\n    },\n    \"_meta\": {\n        \"totalCount\": 10,\n        \"pageCount\": 1,\n        \"currentPage\": 1,\n        \"perPage\": 30\n    }\n}"}],"_postman_id":"5c53dded-c7c6-4585-b012-22da661e08c7"},{"name":"View","id":"36b716de-fa3a-42cd-8a27-9dc74c44bf11","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/reporting/payout/acq/<dbaId>/<processingDate>","description":"<p>View detailed payout information for a specific date</p>\n<p>Payouts View Object</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Fields</th>\n<th>Description</th>\n<th>Type</th>\n<th>Filterable</th>\n<th>Required</th>\n<th>Readonly</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>processingDate</td>\n<td>Date</td>\n<td>Date</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>deposit</td>\n<td>Deposit Amount</td>\n<td>Number</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>fees</td>\n<td>Fee Object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>fees.items</td>\n<td>Fees Items Object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>fees.items.cardType</td>\n<td>Fee Card Type</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>fees.items.amount</td>\n<td>Fee Amount</td>\n<td>Number</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>fees.totalAmount</td>\n<td>Fees Total Amount</td>\n<td>Number</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>chargebacks</td>\n<td>Chargebacks Object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>chargebacks.items</td>\n<td>Chargebacks Items Object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>chargebacks.items.referenceNumber</td>\n<td>Chargeback Reference Number</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>chargebacks.items.amount</td>\n<td>Chargeback Amount</td>\n<td>Number</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>chargebacks.totalCount</td>\n<td>Chargebacks Total Count</td>\n<td>Integer</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>chargebacks.totalAmount</td>\n<td>Chargebacks Amount</td>\n<td>Number</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>reservedFunding</td>\n<td>Reserved Funding Object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>reservedFunding.items</td>\n<td>Reserved Funding Items Object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>reservedFunding.items.department</td>\n<td>Reserve Department</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>reservedFunding.items.amount</td>\n<td>Reserve Amount</td>\n<td>Number</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>reservedFunding.totalAmount</td>\n<td>Reserved Funding Amount</td>\n<td>Number</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>releasedAmount</td>\n<td>Released Amount</td>\n<td>Number</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>batch</td>\n<td>Batch Object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>batch.date</td>\n<td>Batch Date</td>\n<td>Date</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>batch.amount</td>\n<td>Batch Amount</td>\n<td>Number</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"1242019f-6dd1-4b2c-82d5-f0450a56c408","id":"1242019f-6dd1-4b2c-82d5-f0450a56c408","name":"Payouts","type":"folder"}},"urlObject":{"path":["api","reporting","payout","acq","<dbaId>","<processingDate>"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"65f2405f-9a08-4fe6-84d1-adace4c2c2e1","name":"View","originalRequest":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/reporting/payouts/acq/1/2023-04-05"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"items\": [\n        {\n            \"processingDate\": \"2023-04-05\",\n            \"deposit\": 732.79,\n            \"fees\": {\n                \"items\": [\n                    {\n                        \"cardType\": \"MASTERCARD\",\n                        \"amount\": \"0.24\"\n                    },\n                    {\n                        \"cardType\": \"MC DEBIT\",\n                        \"amount\": \"17.34\"\n                    },\n                    {\n                        \"cardType\": \"VISA\",\n                        \"amount\": \"1.00\"\n                    },\n                    {\n                        \"cardType\": \"VISA DEBIT\",\n                        \"amount\": \"3.37\"\n                    }\n                ],\n                \"totalAmount\": 21.95\n            },\n            \"chargebacks\": {\n                \"items\": [\n                    {\n                        \"referenceNumber\": \"0000090001705578\",\n                        \"amount\": \"-39.95\"\n                    }\n                ],\n                \"totalCount\": 1,\n                \"totalAmount\": -39.95\n            },\n            \"reservedFunding\": {\n                \"items\": [\n                    {\n                        \"department\": \"RISK - AXIOM\",\n                        \"amount\": \"83.86\"\n                    }\n                ],\n                \"totalAmount\": 83.86\n            },\n            \"releasedAmount\": 0,\n            \"batch\": {\n                \"date\": \"2023-04-05\",\n                \"amount\": \"1212.05\"\n            }\n        }\n    ],\n    \"_meta\": {\n        \"totalCount\": 1,\n        \"pageCount\": 1,\n        \"currentPage\": 1,\n        \"perPage\": 30\n    }\n}"}],"_postman_id":"36b716de-fa3a-42cd-8a27-9dc74c44bf11"},{"name":"Export","id":"6a026d5d-b90a-44eb-8c2f-2cb5f2b0ed77","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\r\n    \"name\": \"DepositExport\",\r\n    \"params\": {\r\n        \"format\": \"csv\",\r\n        \"from\": \"2023-04-01\",\r\n        \"to\": \"2023-04-10\",\r\n        \"merchantAccountId\": 1\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"https://dashboard.dashboard.paysecureonline.com/api/reporting/request","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"1242019f-6dd1-4b2c-82d5-f0450a56c408","id":"1242019f-6dd1-4b2c-82d5-f0450a56c408","name":"Payouts","type":"folder"}},"urlObject":{"path":["api","reporting","request"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"ef2d0587-1e7c-42aa-8f5d-cf703e65e1db","name":"Export","originalRequest":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"DepositExport\",\n    \"params\": {\n        \"format\": \"csv\",\n        \"from\": \"2023-04-01\",\n        \"to\": \"2023-04-10\",\n        \"merchantAccountId\": 1\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://dashboard.dashboard.paysecureonline.com/api/reporting/request"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 1\n}"}],"_postman_id":"6a026d5d-b90a-44eb-8c2f-2cb5f2b0ed77"}],"id":"1242019f-6dd1-4b2c-82d5-f0450a56c408","description":"<p>You can utilize this endpoint to list all payout information for a specific <code>dba.Id</code></p>\n<p>Payouts List Object</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Fields</th>\n<th>Description</th>\n<th>Type</th>\n<th>Filterable</th>\n<th>Required</th>\n<th>Readonly</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>processingDate</td>\n<td>Date</td>\n<td>Date</td>\n<td>Yes</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>deposit</td>\n<td>Deposit Amount</td>\n<td>Number</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>feeTotalAmount</td>\n<td>Fee Amount</td>\n<td>Number</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>chargeback</td>\n<td>Chargeback Object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>chargeback.totalCount</td>\n<td>Chargeback Count</td>\n<td>Integer</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>chargeback.totalAmount</td>\n<td>Chargeback Amount</td>\n<td>Number</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>reservedAmount</td>\n<td>Reserve Amount</td>\n<td>Number</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>releasedAmount</td>\n<td>Released Amount</td>\n<td>Number</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>batch</td>\n<td>Batch Object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>batch.date</td>\n<td>Batch Date</td>\n<td>Date</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>batch.amount</td>\n<td>Batch Amount</td>\n<td>Number</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":false},"event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""]}},{"listen":"test","script":{"type":"text/javascript","exec":[""]}}],"_postman_id":"1242019f-6dd1-4b2c-82d5-f0450a56c408"},{"name":"Chargebacks","item":[{"name":"Disputes","item":[{"name":"Upload a temporary file","id":"6922be66-fde5-44d9-a96e-4257bfeeef2f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/attachment/upload/temporary","description":"<p>In order to upload a temporary file and submit a dispute to a chargeback case you need to utilize our standard Attachments endpoint and pass an additional URL parameter <code>temporary</code></p>\n","urlObject":{"path":["api","attachment","upload","temporary"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"7b4ff519-6b14-4b96-b389-78e2f5ce7abf","name":"Upload a temporary file","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"","type":"file","src":"7L-_Am9Yd/disputeinfo.pdf"}]},"url":"https://dashboard.dashboard.paysecureonline.com/api/attachment/upload/temporary"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"47c2fd1ebac89e2d5244b847c9b869fb\",\n    \"name\": \"disputeinfo.pdf\",\n    \"type\": \"application/pdf\",\n    \"size\": 245311\n}"}],"_postman_id":"6922be66-fde5-44d9-a96e-4257bfeeef2f"},{"name":"Create a Dispute","id":"641b0719-9d81-4e24-89f1-3cbd8684eaa6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/reporting/chargeback/<chargebackId>/dispute/<casesId>/create","description":"<p>After uploading the file/files you need to create the dispute by assigning all the temporary <code>attachment.id</code> to the <code>case.id</code>.</p>\n","urlObject":{"path":["api","reporting","chargeback","<chargebackId>","dispute","<casesId>","create"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"52865580-0a51-4e02-863f-e209732c26e3","name":"Create a Dispute","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"[\"47c2fd1ebac89e2d5244b847c9b869fb\"]","options":{"raw":{"language":"json"}}},"url":"https://dashboard.dashboard.paysecureonline.com/api/reporting/chargeback/5545/dispute/6233665/create"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"disputeId\": \"2023101033545_20230516123226\"\n}"}],"_postman_id":"641b0719-9d81-4e24-89f1-3cbd8684eaa6"},{"name":"Preview","id":"d13559e2-2d0b-4551-95dc-cfac7cb6be5e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/reporting/chargeback/<chargebackId>/dispute/<casesId>/preview/<disputeId>","description":"<p>Use this endpoint if you want to preview your dispute before submitting it.</p>\n","urlObject":{"path":["api","reporting","chargeback","<chargebackId>","dispute","<casesId>","preview","<disputeId>"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"0c9c7183-0c4a-4e04-864c-8ea88faadf3f","name":"Preview","originalRequest":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/reporting/chargeback/5545/dispute/6233665/preview/2023101033545_20230516123226"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"d13559e2-2d0b-4551-95dc-cfac7cb6be5e"},{"name":"Submit","id":"408cfbce-d584-4232-9be2-a4f74ad354be","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/reporting/chargeback/<chargebackId>/dispute/<casesId>/submit/<disputeId>","description":"<p>Use this endpoint to submit your dispute</p>\n","urlObject":{"path":["api","reporting","chargeback","<chargebackId>","dispute","<casesId>","submit","<disputeId>"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"f154fa75-91d9-411e-973d-f8e12d66469d","name":"Submit","originalRequest":{"method":"POST","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/reporting/chargeback/5545/dispute/6233665/submit/2023101033545_20230516123226"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 5336147,\n    \"name\": \"IN_5671_CASES_2023101033545_20230516123226.pdf\",\n    \"type\": \"application/pdf\",\n    \"size\": 16616,\n    \"createdOn\": \"2023-05-16 12:34:37\"\n}"}],"_postman_id":"408cfbce-d584-4232-9be2-a4f74ad354be"}],"id":"0fb9e10b-9d57-49ca-8bcd-13a5291d42b9","description":"<p>By utilizing this endpoint you can dispute specific chargeback cases.</p>\n<p>The process is as follows:</p>\n<ol>\n<li>First, use our standard <a href=\"#6937871f-3321-4ff1-a6f2-20a6f925c137\">Attachments</a> endpoint but you need to pass an additional URL parameter <code>temporary</code>. This will return a unique <code>id</code>.</li>\n<li>After you have your temporary file id you can create the Dispute for a specific <code>chargeback.id</code> and the desired <code>case.id</code>.</li>\n</ol>\n<p>You can see the examples below</p>\n","_postman_id":"0fb9e10b-9d57-49ca-8bcd-13a5291d42b9"},{"name":"List","id":"43ba5f86-b6b4-4c27-bf4a-07df32c8a709","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/reporting/chargebacks","description":"<p>You can utilize this endpoint to list all chargebacks</p>\n","urlObject":{"path":["api","reporting","chargebacks"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"ddccc17c-f436-4b10-955a-311d1b2fc5d7","name":"List","originalRequest":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/reporting/chargebacks"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"items\": [\n        {\n            \"id\": 5545,\n            \"dba\": {\n                \"id\": 9\n            },\n            \"type\": \"Chargeback\",\n            \"amount\": \"39.00\",\n            \"card\": {\n                \"number\": \"434257******9716\",\n                \"brand\": \"Visa\"\n            },\n            \"date\": {\n                \"posted\": \"2023-04-06\",\n                \"loaded\": \"2023-04-12\",\n                \"lastLoaded\": \"2023-04-12\",\n                \"disputed\": \"2023-04-13 17:44:59\"\n            },\n            \"fraud\": \"Yes\",\n            \"attention\": \"Yes\",\n            \"status\": \"Lost\"\n        },\n        {\n            \"id\": 5528,\n            \"dba\": {\n                \"id\": 9\n            },\n            \"type\": \"Chargeback\",\n            \"amount\": \"39.00\",\n            \"card\": {\n                \"number\": \"402347******9171\",\n                \"brand\": \"Visa\"\n            },\n            \"date\": {\n                \"posted\": \"2023-04-09\",\n                \"loaded\": \"2023-04-12\",\n                \"lastLoaded\": \"2023-04-12\",\n                \"disputed\": \"2023-04-13 17:49:00\"\n            },\n            \"fraud\": \"Yes\",\n            \"attention\": \"Yes\",\n            \"status\": \"Lost\"\n        }\n    ],\n    \"_links\": {\n        \"self\": {\n            \"href\": \"https://dashboard.dashboard.paysecureonline.com//api/reporting/chargebacks?page=1\"\n        },\n        \"first\": {\n            \"href\": \"https://dashboard.dashboard.paysecureonline.com//api/reporting/chargebacks?page=1\"\n        },\n        \"last\": {\n            \"href\": \"https://dashboard.dashboard.paysecureonline.com//api/reporting/chargebacks?page=1\"\n        },\n        \"next\": {\n            \"href\": \"https://dashboard.dashboard.paysecureonline.com//api/reporting/chargebacks?page=1\"\n        }\n    },\n    \"_meta\": {\n        \"totalCount\": 2,\n        \"pageCount\": 1,\n        \"currentPage\": 1,\n        \"perPage\": 30\n    }\n}"}],"_postman_id":"43ba5f86-b6b4-4c27-bf4a-07df32c8a709"},{"name":"View","id":"dd53a8cf-9d53-4c4c-9c14-71d9327abc2e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/reporting/chargeback/<id>","description":"<p>By utilizing this endpoint you can view detailed information for a specific chargeback</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Fields</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>The unique ID that is assigned by our system to every case.</td>\n<td>Integer</td>\n</tr>\n<tr>\n<td>dba</td>\n<td>Object</td>\n<td>Object</td>\n</tr>\n<tr>\n<td>dba.id</td>\n<td>The ID of the DBA</td>\n<td>Integer</td>\n</tr>\n<tr>\n<td>mid</td>\n<td>The Merchant Identification Number (MID)</td>\n<td>Integer</td>\n</tr>\n<tr>\n<td>merchantRefId</td>\n<td>A reference number provided by the merchant or their vendor for this transaction.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>merchantEmail</td>\n<td>Merchant email address</td>\n<td>String</td>\n</tr>\n<tr>\n<td>type</td>\n<td><code>Chargeback</code> or <code>Retrieval</code></td>\n<td>ENUM</td>\n</tr>\n<tr>\n<td>visaRDR</td>\n<td><code>Yes</code> or <code>No</code> - Identifies if the chargeback is Visa RDR</td>\n<td>ENUM</td>\n</tr>\n<tr>\n<td>authCode</td>\n<td>The authorization code passed with the settlement record</td>\n<td>String</td>\n</tr>\n<tr>\n<td>acquirerReferenceNumber</td>\n<td>An identification number for a credit card transaction assigned by the acquirer.</td>\n<td>Object</td>\n</tr>\n<tr>\n<td>gateway</td>\n<td>Object</td>\n<td>Object</td>\n</tr>\n<tr>\n<td>gateway.id</td>\n<td>If using our internal gateway this is the unique payment ID that is assigned to every transaction</td>\n<td>Integer</td>\n</tr>\n<tr>\n<td>gateway.externalID</td>\n<td>If using our internal gateway this is the externalID of the transaction</td>\n<td>Integer</td>\n</tr>\n<tr>\n<td>amount</td>\n<td>The amount of the retrieval or chargeback. This is not always equal to the amount of the transaction.</td>\n<td>Number</td>\n</tr>\n<tr>\n<td>transaction</td>\n<td>Object</td>\n<td>Object</td>\n</tr>\n<tr>\n<td>transaction.id</td>\n<td>The unique payment ID that is assigned per transaction from the system.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>transaction.amount</td>\n<td>The original transaction amount or case amount if unable to find the original transaction</td>\n<td>Number</td>\n</tr>\n<tr>\n<td>transaction.date</td>\n<td>Transaction Date</td>\n<td>Date</td>\n</tr>\n<tr>\n<td>transaction.card</td>\n<td>Object</td>\n<td>Object</td>\n</tr>\n<tr>\n<td>transaction.card.brand</td>\n<td>Card Brand</td>\n<td>String</td>\n</tr>\n<tr>\n<td>transaction.card.number</td>\n<td>Card Number</td>\n<td>String</td>\n</tr>\n<tr>\n<td>transaction.reason</td>\n<td>Object</td>\n<td>Object</td>\n</tr>\n<tr>\n<td>transaction.reason.code</td>\n<td>Transaction Auth reason code</td>\n<td>String</td>\n</tr>\n<tr>\n<td>transaction.reason.description</td>\n<td>Transaction Auth reason description</td>\n<td>String</td>\n</tr>\n<tr>\n<td>date</td>\n<td>Object</td>\n<td>Object</td>\n</tr>\n<tr>\n<td>date.posted</td>\n<td>The post date as reported by the issuer.</td>\n<td>Date</td>\n</tr>\n<tr>\n<td>date.loaded</td>\n<td>The date the retrieval request or chargeback was loaded in the system.</td>\n<td>Date</td>\n</tr>\n<tr>\n<td>date.lastLoaded</td>\n<td>The date of the last case loaded in the system for the chargeback.</td>\n<td>Date</td>\n</tr>\n<tr>\n<td>date.disputed</td>\n<td>Date when the dispute was submitted.</td>\n<td>Date</td>\n</tr>\n<tr>\n<td>date.receivedDate</td>\n<td>Date the retrieval request or chargeback was submitted by the Issuer.</td>\n<td>Date</td>\n</tr>\n<tr>\n<td>date.lastActionDate</td>\n<td>Date the case needs to be resolved.</td>\n<td>Date</td>\n</tr>\n<tr>\n<td>reason</td>\n<td>Object</td>\n<td>Object</td>\n</tr>\n<tr>\n<td>reason.code</td>\n<td>Chargeback reason code</td>\n<td>String</td>\n</tr>\n<tr>\n<td>reason.description</td>\n<td>Chargeback reason description</td>\n<td>String</td>\n</tr>\n<tr>\n<td>fraud</td>\n<td><code>Yes</code> or <code>No</code></td>\n<td>ENUM</td>\n</tr>\n<tr>\n<td>attention</td>\n<td><code>Yes</code> or <code>No</code> If the merchant's attention is required</td>\n<td>ENUM</td>\n</tr>\n<tr>\n<td>cases</td>\n<td>Array of objects</td>\n<td>Array</td>\n</tr>\n<tr>\n<td>cases.id</td>\n<td>Unique case ID assigned by our system</td>\n<td>Integer</td>\n</tr>\n<tr>\n<td>cases.type</td>\n<td><code>Chargeback</code> or <code>Retrieval</code></td>\n<td>ENUM</td>\n</tr>\n<tr>\n<td>cases.number</td>\n<td>Unique case number assigned by the external system(bank)</td>\n<td>Integer</td>\n</tr>\n<tr>\n<td>cases.description</td>\n<td>Case description</td>\n<td>String</td>\n</tr>\n<tr>\n<td>cases.date</td>\n<td>Object</td>\n<td>Object</td>\n</tr>\n<tr>\n<td>cases.date.loaded</td>\n<td>The date the case was loaded in the system.</td>\n<td>Date</td>\n</tr>\n<tr>\n<td>cases.date.disputed</td>\n<td>The date and time of the last dispute uploaded to the case</td>\n<td>Datetime</td>\n</tr>\n<tr>\n<td>cases.fraud</td>\n<td><code>Yes</code> or <code>No</code> if the case is considered fraud</td>\n<td>ENUM</td>\n</tr>\n<tr>\n<td>cases.attention</td>\n<td><code>Yes</code> or <code>No</code> if the case requires merchants' attention</td>\n<td>ENUM</td>\n</tr>\n<tr>\n<td>cases.status</td>\n<td><code>Processed</code>, <code>Won</code>, <code>Lost</code></td>\n<td>ENUM</td>\n</tr>\n<tr>\n<td>cases.attachments</td>\n<td>Array of objects listing information for the last uploaded dispute</td>\n<td>Array</td>\n</tr>\n<tr>\n<td>status</td>\n<td><code>Processed</code>, <code>Won</code>, <code>Lost</code></td>\n<td>ENUM</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","reporting","chargeback","<id>"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"90dab0f4-de75-4e46-9a88-fb2e3c1479b1","name":"View","originalRequest":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/reporting/chargeback/5545"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 5545,\n    \"dba\": {\n        \"id\": 9\n    },\n    \"mid\": 40111950369,\n    \"merchantRefId\": \"SSS-2023040518402732\",\n    \"merchantEmail\": \"\",\n    \"type\": \"Chargeback\",\n    \"visaRDR\": \"No\",\n    \"authCode\": \"049684\",\n    \"acquirerReferenceNumber\": \"12345063096900012627661\",\n    \"gateway\": {\n        \"id\": null,\n        \"externalId\": null\n    },\n    \"amount\": \"39.00\",\n    \"transaction\": {\n        \"id\": \"445595672279437\",\n        \"amount\": \"39.00\",\n        \"date\": \"2023-04-06\",\n        \"card\": {\n            \"number\": \"434257******9716\",\n            \"brand\": \"Visa\"\n        },\n        \"reason\": null\n    },\n    \"date\": {\n        \"posted\": \"2023-04-06\",\n        \"loaded\": \"2023-04-12\",\n        \"lastLoaded\": \"2023-04-12\",\n        \"disputed\": \"2023-04-13 17:44:59\",\n        \"receivedDate\": \"2023-04-11\",\n        \"lastActionDate\": \"2023-05-07\"\n    },\n    \"reason\": {\n        \"code\": \"10.4\",\n        \"description\": \"Fraud Card Absent Environment\"\n    },\n    \"fraud\": \"Yes\",\n    \"attention\": \"Yes\",\n    \"cases\": [\n        {\n            \"id\": 6233665,\n            \"type\": \"Chargeback\",\n            \"number\": 2023102015720,\n            \"description\": \"Visa Allocation case loaded into the system\",\n            \"reason\": {\n                \"code\": \"10.4\",\n                \"description\": \"Fraud Card Absent Environment\"\n            },\n            \"date\": {\n                \"loaded\": \"2023-04-12\",\n                \"disputed\": null,\n                \"receivedDate\": \"2023-04-11\",\n                \"lastActionDate\": \"2023-05-07\"\n            },\n            \"fraud\": \"Yes\",\n            \"attention\": \"Yes\",\n            \"status\": \"Lost\",\n            \"attachments\": []\n        }\n    ],\n    \"status\": \"Lost\"\n}"}],"_postman_id":"dd53a8cf-9d53-4c4c-9c14-71d9327abc2e"}],"id":"e9df78d2-c281-42c8-a0c8-fa2e0abd84d9","description":"<p>You can use this endpoint to manage all chargeback-related information.</p>\n<p>You can do the following:</p>\n<ul>\n<li>List all chargebacks for a specific <code>dba.id</code></li>\n<li>View specific chargeback information for <code>chargeback.id</code></li>\n<li>Dispute a <code>case.id</code> for a specific <code>chargeback.id</code></li>\n</ul>\n<h3 id=\"how-to-use-our-chargeback-system\">How to use our Chargeback system</h3>\n<p>Our chargeback system is designed around chargeback cases. When the first case arrives we create a chargeback with an <code>id.</code>Every new case that arrives for a specific chargeback <code>id</code> updates the chargeback information and gets listed in the <code>cases</code> object.</p>\n<blockquote>\n<p><strong>IMPORTANT</strong> A specific <code>chargeback.id</code> can have more than one cases associated with it, as new information can arrive. </p>\n</blockquote>\n<h4 id=\"we-suggest-the-current-flow\">We suggest the current flow:</h4>\n<ol>\n<li>List your chargebacks. If a certain <code>chargeback.id</code> has <code>attention</code>=Yes, you can dispute it and upload evidence.</li>\n<li>View the specific <code>chargeback.id</code>, this will list one or more cases associated with the chargeback. Make note of the <code>case.id</code> that has <code>attention</code>=Yes.</li>\n<li>Use our <strong>Attachments</strong> and upload temporary file/files for the dispute.</li>\n<li><strong>Create</strong> a dispute to a <code>case.id</code> for a specific <code>chargeback.id</code></li>\n<li><strong>Preview</strong> the created dispute if needed before submitting it.</li>\n<li>Use the Dispute <strong>Submit</strong> endpoint to submit the dispute file to a specific <code>chargeback.id</code></li>\n</ol>\n<p>Chargeback Object</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Fields</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>The unique ID that is assigned by our system to every chargeback</td>\n<td>Integer</td>\n</tr>\n<tr>\n<td>dba</td>\n<td>Object</td>\n<td>Object</td>\n</tr>\n<tr>\n<td>dba.id</td>\n<td>The ID of the DBA</td>\n<td>Integer</td>\n</tr>\n<tr>\n<td>type</td>\n<td><code>Chargeback</code> or <code>Retrieval</code></td>\n<td>ENUM</td>\n</tr>\n<tr>\n<td>amount</td>\n<td>The amount of the retrieval or chargeback. This is not always equal to the amount of the transaction.</td>\n<td>Number</td>\n</tr>\n<tr>\n<td>card</td>\n<td>Object</td>\n<td>Integer</td>\n</tr>\n<tr>\n<td>card.brand</td>\n<td>Card Brand</td>\n<td>String</td>\n</tr>\n<tr>\n<td>card.number</td>\n<td>Card Number</td>\n<td>String</td>\n</tr>\n<tr>\n<td>date</td>\n<td>Object</td>\n<td>Object</td>\n</tr>\n<tr>\n<td>date.posted</td>\n<td>The post date as reported by the issuer.</td>\n<td>Date</td>\n</tr>\n<tr>\n<td>date.loaded</td>\n<td>The date the retrieval request or chargeback was loaded in the system.</td>\n<td>Date</td>\n</tr>\n<tr>\n<td>date.lastLoaded</td>\n<td>The date of the last case loaded in the system for the chargeback.</td>\n<td>Date</td>\n</tr>\n<tr>\n<td>date.disputed</td>\n<td>Date when the dispute was submitted.</td>\n<td>Date</td>\n</tr>\n<tr>\n<td>reason</td>\n<td>Object</td>\n<td>Object</td>\n</tr>\n<tr>\n<td>reason.code</td>\n<td>Chargeback reason code</td>\n<td>String</td>\n</tr>\n<tr>\n<td>reason.description</td>\n<td>Chargeback reason description</td>\n<td>String</td>\n</tr>\n<tr>\n<td>fraud</td>\n<td><code>Yes</code> or <code>No</code></td>\n<td>ENUM</td>\n</tr>\n<tr>\n<td>attention</td>\n<td><code>Yes</code> or <code>No</code> If the merchant's attention is required.</td>\n<td>ENUM</td>\n</tr>\n<tr>\n<td>status</td>\n<td><code>Processed</code>, <code>Won</code>, <code>Lost</code></td>\n<td>ENUM</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"e9df78d2-c281-42c8-a0c8-fa2e0abd84d9"},{"name":"Statements","item":[{"name":"List","id":"80d195b1-9b99-4ada-b34a-c1a0497addde","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/reporting/statements/<dbaId>","urlObject":{"path":["api","reporting","statements","<dbaId>"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"5e3b1835-b9f0-448f-af70-034cb1c0f995","name":"List","originalRequest":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/reporting/statements/9"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n            \"id\": \"122\",\n            \"url\": \"https://dashboard.dashboard.paysecureonline.com/api/reporting/statement/122\",\n            \"date\": \"2020-02-28\"\n        },\n        {\n            \"id\": \"142\",\n            \"url\": \"https://dashboard.dashboard.paysecureonline.com/api/reporting/statement/142\",\n            \"date\": \"2020-01-31\"\n        }\n    ],\n    \"_links\": {\n        \"self\": {\n            \"href\": \"https://dashboard.dashboard.paysecureonline.com/api/reporting/statements/14?page=1\"\n        },\n    },\n    \"_meta\": {\n        \"totalCount\": 2,\n        \"pageCount\": 1,\n        \"currentPage\": 1,\n        \"perPage\": 30\n    }\n}"}],"_postman_id":"80d195b1-9b99-4ada-b34a-c1a0497addde"},{"name":"Download","id":"cfe1e9db-242f-4f15-9269-9039dbf7c237","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/reporting/statement/<statementId>","description":"<p>To download a specific statement, use its corresponding <code>id</code>. All the statements are in pdf format.</p>\n","urlObject":{"path":["api","reporting","statement","<statementId>"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"420ac0c6-839b-481d-ab89-65a85214e6a9","name":"Download","originalRequest":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/reporting/statement/122"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"cfe1e9db-242f-4f15-9269-9039dbf7c237"}],"id":"e8c30bdb-fe4b-4d8f-853f-0be3b4345c29","_postman_id":"e8c30bdb-fe4b-4d8f-853f-0be3b4345c29","description":""},{"name":"Reserve","item":[{"name":"List","id":"3c368dc8-785f-4727-b376-f400ff6b998c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/reporting/reserve/<dbaId>","urlObject":{"path":["api","reporting","reserve","<dbaId>"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"422339b1-ac40-4150-a339-b335639ebfc2","name":"List","originalRequest":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/reporting/reserve/9"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"items\": [\n        {\n            \"id\": \"1700\",\n            \"type\": \"Credit\",\n            \"amount\": \"293.65\",\n            \"reserve\": \"89908.71\",\n            \"description\": \"Calculated Reserve\",\n            \"date\": \"2018-06-06 20:22:22\"\n        },\n        {\n            \"id\": \"1673\",\n            \"type\": \"Credit\",\n            \"amount\": \"313.62\",\n            \"reserve\": \"89615.06\",\n            \"description\": \"Calculated Reserve\",\n            \"date\": \"2018-06-05 20:24:00\"\n        },\n        {\n            \"id\": \"1647\",\n            \"type\": \"Credit\",\n            \"amount\": \"243.70\",\n            \"reserve\": \"89301.44\",\n            \"description\": \"Calculated Reserve\",\n            \"date\": \"2018-06-04 20:27:21\"\n        },\n    ],\n    \"_links\": {\n        \"self\": {\n            \"href\": \"https://dashboard.dashboard.paysecureonline.com/api/reporting/reserve/1?page=1\"\n        },\n    },\n    \"_meta\": {\n        \"totalCount\": 3,\n        \"pageCount\": 1,\n        \"currentPage\": 1,\n        \"perPage\": 30\n    }\n}"}],"_postman_id":"3c368dc8-785f-4727-b376-f400ff6b998c"}],"id":"9331a3ce-5f5b-496a-8eb7-2bebdc6ec452","description":"<p>You can use this endpoint to view reserve activity for a specific <code>dba.id</code></p>\n<p>Reserve Object</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Fields</th>\n<th>Description</th>\n<th>Type</th>\n<th>Filterable</th>\n<th>Required</th>\n<th>Readonly</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>Reserve id</td>\n<td>Integer</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>type</td>\n<td>Reserve amount activity type <code>Debit</code> or <code>Credit</code></td>\n<td>ENUM</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>amount</td>\n<td>The amount that is either credited or debited to the reserve.</td>\n<td>Number</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>reserve</td>\n<td>Current accumulated reserve amount</td>\n<td>Number</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>description</td>\n<td>Reserve funding activity type</td>\n<td>ENUM</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>date</td>\n<td>Datetime of reserve activity</td>\n<td>Datetime</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"reserve-descriptions\">Reserve Descriptions</h4>\n<p>Below you can find all the reserve descriptions that we return</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Status</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Calculated Reserve</td>\n<td>An amount has been withheld and added to the reserve</td>\n</tr>\n<tr>\n<td>Calculated Release</td>\n<td>An amount has been released from the reserve</td>\n</tr>\n<tr>\n<td>One Time Reserve</td>\n<td>One time amount has been withheld and added to the reserve</td>\n</tr>\n<tr>\n<td>One Time Release</td>\n<td>One time amount has been released from the reserve</td>\n</tr>\n<tr>\n<td>Record Adjustment Reserve</td>\n<td>One time adjustment amount has been withheld and added to the reserve (usually due to an accounting error)</td>\n</tr>\n<tr>\n<td>Record Adjustment Release</td>\n<td>One time adjustment amount has been released from the reserve (usually due to an accounting error)</td>\n</tr>\n<tr>\n<td>Transfer Funds on Reserve</td>\n<td>An amount has been transferred to the reserve. This is usually done when a merchant begins with a fixed reserve</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"9331a3ce-5f5b-496a-8eb7-2bebdc6ec452"},{"name":"Fraud Report","item":[{"name":"Generate","id":"36c3cd5e-e41c-4f30-8896-8d29444aa86b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/reporting/fraud/<dbaId>/<year-month>","urlObject":{"path":["api","reporting","fraud","<dbaId>","<year-month>"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"bc8d4b5d-331c-4476-a13a-09a24d8b7061","name":"Generate","originalRequest":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/reporting/fraud/9/2023-01"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"36c3cd5e-e41c-4f30-8896-8d29444aa86b"}],"id":"f28f87e2-55de-4e2e-8fbb-4dab4bc81018","description":"<p>At the end of each month, we create a customized and highly detailed fraud report for each merchant. To download it use the following endpoint by providing the <code>dbaId</code> and <code>date</code> for the desired fraud report pdf.</p>\n","_postman_id":"f28f87e2-55de-4e2e-8fbb-4dab4bc81018"},{"name":"Other Reports","item":[{"name":"Request a Report","id":"73618384-6158-4d28-a7b7-4aa2c63e9165","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\r\n    \"name\": \"ResidualExport\",\r\n    \"params\": {\r\n        \"format\": \"csv\",\r\n        \"date\": \"2022-02\",\r\n        \"isPublished\": \"Yes\",\r\n        \"isHeld\": \"No\",\r\n        \"dbaId\": 1,\r\n    }\r\n"},"url":"https://dashboard.dashboard.paysecureonline.com/api/reporting/request","urlObject":{"path":["api","reporting","request"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"cf9272c4-f644-4267-94d1-70f95dbe02d8","name":"Request a Report","originalRequest":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"ResidualExport\",\n    \"params\": {\n        \"format\": \"csv\",\n        \"date\": \"2022-02\",\n        \"isPublished\": \"Yes\",\n        \"isHeld\": \"No\",\n        \"dbaId\": 1,\n        \"branchId\": 1\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://dashboard.dashboard.paysecureonline.com/api/reporting/request"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 1\n}"}],"_postman_id":"73618384-6158-4d28-a7b7-4aa2c63e9165"},{"name":"Check Status","id":"7f70be37-fd3d-42ee-8154-a79a1409a8e9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/reporting/status/<reportId>","description":"<p>Use this endpoint to check the status of a specific requested report.</p>\n","urlObject":{"path":["api","reporting","status","<reportId>"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"3d8d765c-c7b9-4433-a2c3-6b19b20d8d8f","name":"Check Status","originalRequest":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/reporting/status/1"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"Done\",\n    \"message\": \"Your report is ready to be downloaded.\"\n}"}],"_postman_id":"7f70be37-fd3d-42ee-8154-a79a1409a8e9"},{"name":"Download","id":"afc9f847-7912-418e-a559-3d8c0455c2a7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/reporting/download/<reportId>","description":"<p>After checking the status of a requested report and when it is ready to be downloaded, you can utilize this endpoint.</p>\n","urlObject":{"path":["api","reporting","download","<reportId>"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"dc1201d2-20d2-428c-bf8e-f0c2c5ade85c","name":"Download","originalRequest":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/reporting/download/1"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"afc9f847-7912-418e-a559-3d8c0455c2a7"}],"id":"1182c408-114b-4467-907e-d6d490ef14f8","description":"<p>Based on the reports that are available to you, you can utilize this endpoint to export data-intensive reports from our system.</p>\n<blockquote>\n<p><strong>IMPORTANT</strong> Reports are executed in background mode and you need to check the status of each report utilizing or Status Reports endpoint.  </p>\n</blockquote>\n<p><strong>Reporting Object</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Fields</th>\n<th>Description</th>\n<th>Type</th>\n<th>Filterable</th>\n<th>Required</th>\n<th>Readonly</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td>Unique Name of the report</td>\n<td>String</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>params</td>\n<td>Report parameters</td>\n<td>Object</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>params.format</td>\n<td>File format of the report. Example: <code>csv</code>, <code>xlsx</code></td>\n<td>ENUM</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>params.xxx</td>\n<td>Other report parameters</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"1182c408-114b-4467-907e-d6d490ef14f8"}],"id":"a19d5c28-3622-4d8b-aebf-861c275f064b","description":"<p>You can use this endpoint for all the available reports through our API.</p>\n","_postman_id":"a19d5c28-3622-4d8b-aebf-861c275f064b"},{"name":"Residuals","item":[{"name":"List","id":"f2b831bd-6b94-4226-a7a8-b657f87d80b7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/residual","description":"<p>Use this endpoint to list all available residuals</p>\n","urlObject":{"path":["api","residual"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"60445cc5-2209-42bf-8bf3-3bb4f24fe1e3","name":"List","originalRequest":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/residual"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"items\": [\n        {\n            \"id\": \"1\",\n            \"mid\": \"1111111111\",\n            \"date\": \"2022-02-28\",\n            \"acquirer\": {\n                \"id\": 1\n            },\n            \"merchant\": {\n                \"id\": \"1\",\n                \"dba\": {\n                    \"id\": \"1\"\n                },\n                \"sales\": {\n                    \"count\": 7,\n                    \"amount\": \"1000.50\"\n                }\n            },\n            \"user\": {\n                \"id\": \"1\"\n            },\n            \"split\": \"93.00\",\n            \"revenue\": \"326.82\",\n            \"expense\": \"210.85\",\n            \"adjustment\": {\n                \"amount\": \"1.00\",\n                \"details\": [\n                    {\n                        \"amount\": \"1.00\",\n                        \"category\": \"equipment\",\n                        \"note\": \"Adjustment Note\"\n                    }\n                ]\n            },\n            \"profit\": \"115.97\",\n            \"publishedOn\": \"2022-03-01 14:55:00\",\n            \"held\": {\n                \"on\": null,\n                \"note\": null,\n                \"releasedOn\": null\n            },\n            \"residual\": {\n                \"id\": 1\n            },\n            \"subAgent\": {\n                \"user\": {\n                    \"id\": \"2\"\n                },\n                \"revenue\": \"210.85\",\n                \"expense\": \"140.57\",\n                \"profit\": \"70.28\",\n                \"publishedOn\": \"2022-03-01 15:39:19\",\n                \"held\": {\n                    \"on\": null,\n                    \"note\": null,\n                    \"releasedOn\": null\n                }\n            }\n        }\n    ],\n    \"_meta\": {\n        \"totalCount\": 1,\n        \"pageCount\": 1,\n        \"currentPage\": 1,\n        \"perPage\": 30\n    }\n}\n"}],"_postman_id":"f2b831bd-6b94-4226-a7a8-b657f87d80b7"},{"name":"View","id":"91a9ee6a-ad12-4ac1-8e51-83fd9b07226c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/residual/<Id>","description":"<p>By utilizing this endpoint you can view details for a specific merchant residual.</p>\n","urlObject":{"path":["api","residual","<Id>"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"43b70384-ca92-4f0a-8795-266a39a91374","name":"View","originalRequest":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/residual/4455"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 4455,\n    \"mid\": 5011000000,\n    \"date\": \"2023-03-31\",\n    \"acquirer\": {\n        \"id\": 4\n    },\n    \"merchant\": {\n        \"id\": 123,\n        \"dba\": {\n            \"id\": 9\n        },\n        \"sales\": {\n            \"count\": 0,\n            \"amount\": \"0.00\"\n        }\n    },\n    \"user\": {\n        \"id\": 1\n    },\n    \"split\": \"70.00\",\n    \"revenue\": \"0.00\",\n    \"expense\": \"0.00\",\n    \"adjustment\": {\n        \"amount\": \"0.00\",\n        \"details\": []\n    },\n    \"profit\": \"0.00\",\n    \"publishedOn\": \"2023-04-12 22:19:40\",\n    \"held\": {\n        \"on\": null,\n        \"note\": null,\n        \"releasedOn\": null\n    },\n    \"residual\": {\n        \"id\": 152330,\n        \"income\": \"0.00\",\n        \"expenses\": \"0.00\",\n        \"adjustment\": {\n            \"amount\": \"0.00\",\n            \"details\": []\n        },\n        \"netRevenue\": \"0.00\"\n    },\n    \"subAgent\": {\n        \"user\": {\n            \"id\": 15\n        },\n        \"revenue\": \"0.00\",\n        \"expense\": \"0.00\",\n        \"profit\": \"0.00\",\n        \"publishedOn\": \"2023-04-12 22:19:40\",\n        \"held\": {\n            \"on\": null,\n            \"note\": null,\n            \"releasedOn\": null\n        }\n    }\n}"}],"_postman_id":"91a9ee6a-ad12-4ac1-8e51-83fd9b07226c"}],"id":"4f62a7da-b925-4f21-a31b-831281c78ea3","description":"<p>You can utilize this endpoint to read all of your residual data.</p>\n<p>Residuals Object</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Fields</th>\n<th>Description</th>\n<th>Type</th>\n<th>Filterable</th>\n<th>Required</th>\n<th>Readonly</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>Unique ID of the residual agent</td>\n<td>Integer</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>mid</td>\n<td>The merchant identification number</td>\n<td>Integer</td>\n<td>Yes</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>date</td>\n<td>Date and time when the residual was processed</td>\n<td>Datetime</td>\n<td>Yes</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>acquirer</td>\n<td>Acquirer Object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>acquirer.id</td>\n<td>ID of the acquirer bank</td>\n<td>Integer</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>merchant</td>\n<td>Merchant Object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>merchant.id</td>\n<td>Unique ID of the merchant</td>\n<td>Integer</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>merchant.dba</td>\n<td>Merchant DBA Object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>merchant.dba.id</td>\n<td>DBA ID of the merchant</td>\n<td>Integer</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>merchant.sales</td>\n<td>Merchant Sales Object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>merchant.sales.count</td>\n<td>The total merchant sales count</td>\n<td>Integer</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>merchant.sales.amount</td>\n<td>The total merchant sales amount</td>\n<td>Decimal</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>user</td>\n<td>User Object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>user.id</td>\n<td>ID of the user</td>\n<td>Integer</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>split</td>\n<td>User split in percentage</td>\n<td>Integer</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>revenue</td>\n<td>User revenue</td>\n<td>Decimal</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>expense</td>\n<td>The expense of the user</td>\n<td>Decimal</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>adjustment</td>\n<td>Adjustment Object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>adjustment.amount</td>\n<td>The total amount of adjusted funds</td>\n<td>Decimal</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>adjustment.details</td>\n<td>Array Of Adjustment Details Objects</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>adjustment.details.amount</td>\n<td>The amount of adjusted funds</td>\n<td>Decimal</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>adjustment.details.category</td>\n<td>The category of adjusted funds</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>adjustment.details.note</td>\n<td>Note for the adjustment</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>profit</td>\n<td>The profit of the user</td>\n<td>Decimal</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>publishedOn</td>\n<td>Date and time when the agent residual was published</td>\n<td>Datetime</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>held</td>\n<td>Held Object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>held.on</td>\n<td>Date and time when the agent residual was held</td>\n<td>Datetime</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>held.note</td>\n<td>Note for the held</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>held.releasedOn</td>\n<td>Date and time when the agent residual was released</td>\n<td>Datetime</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>residual</td>\n<td>Residual Object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>residual.id</td>\n<td>Unique ID of the residual</td>\n<td>Integer</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>subAgent</td>\n<td>Subagent Object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>subAgent.user</td>\n<td>Subagent User Object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>subAgent.user.id</td>\n<td>ID of the subagent user</td>\n<td>Integer</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>subAgent.revenue</td>\n<td>The revenue of the subagent</td>\n<td>Decimal</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>subAgent.expense</td>\n<td>The expense of the subagent</td>\n<td>Decimal</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>subAgent.profit</td>\n<td>The profit of the subagent</td>\n<td>Decimal</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>subAgent.publishedOn</td>\n<td>Date and time when the subagent residual was published</td>\n<td>Datetime</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>subAgent.held</td>\n<td>Subagent Held Object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>subAgent.held.on</td>\n<td>Date and time when the subagent residual was held</td>\n<td>Datetime</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>subAgent.note</td>\n<td>Note for the held</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>subAgent.releasedOn</td>\n<td>Date and time when the subagent residual was held</td>\n<td>Datetime</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"4f62a7da-b925-4f21-a31b-831281c78ea3"},{"name":"Tickets","item":[{"name":"Update Ticket Status","item":[{"name":"Close","id":"6f4338c1-e753-4716-9f8a-035d075381c6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/ticket/<ticketId>/close","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"51159b90-d01b-4679-ab9c-79c17f17af0d","id":"51159b90-d01b-4679-ab9c-79c17f17af0d","name":"Tickets","type":"folder"}},"urlObject":{"path":["api","ticket","<ticketId>","close"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"0429e647-7cf1-42a2-8ae6-efe156fe4d13","name":"Close","originalRequest":{"method":"PUT","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/ticket/88/close"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"true"}],"_postman_id":"6f4338c1-e753-4716-9f8a-035d075381c6"},{"name":"Re-Open","id":"95ec7571-ed19-4583-912e-e8c6939cc5b4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/ticket/<ticketId>/reopen","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"51159b90-d01b-4679-ab9c-79c17f17af0d","id":"51159b90-d01b-4679-ab9c-79c17f17af0d","name":"Tickets","type":"folder"}},"urlObject":{"path":["api","ticket","<ticketId>","reopen"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"6dc0c7d3-87eb-4f8f-9773-121b17c37e52","name":"Re-Open","originalRequest":{"method":"PUT","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/ticket/88/reopen"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"true"}],"_postman_id":"95ec7571-ed19-4583-912e-e8c6939cc5b4"}],"id":"b0530eec-46d5-4e74-b4f2-f0b6fe3c237a","description":"<p>You can use this endpoint to Close an existing ticket or Re-Open a closed ticket.</p>\n","_postman_id":"b0530eec-46d5-4e74-b4f2-f0b6fe3c237a","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"51159b90-d01b-4679-ab9c-79c17f17af0d","id":"51159b90-d01b-4679-ab9c-79c17f17af0d","name":"Tickets","type":"folder"}}},{"name":"Responses","item":[{"name":"List","id":"567092ed-0f25-480e-ad8e-a7b8109062b0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/ticket/<id>/responses","description":"<p>Use this endpoint to list all responses for a specific ticket.</p>\n","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"51159b90-d01b-4679-ab9c-79c17f17af0d","id":"51159b90-d01b-4679-ab9c-79c17f17af0d","name":"Tickets","type":"folder"}},"urlObject":{"path":["api","ticket","<id>","responses"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"b2bd6811-5037-44e1-a7a3-12dcf43608b0","name":"List","originalRequest":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/ticket/1/responses"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"items\": [\n        {\n            \"id\": 1,\n            \"text\": \"Example Response One\",\n            \"attentionMerchant\": \"No\",\n            \"createdBy\": {\n                \"id\": 1\n            },\n            \"createdOn\": \"2021-01-13 09:56:47\",\n            \"_links\": {\n                \"self\": {\n                    \"href\": \"https://dashboard.dashboard.paysecureonline.com/api/ticket/response/1\"\n                }\n            }\n        },\n        {\n            \"id\": 2,\n            \"text\": \"Example Response Two\",\n            \"attentionMerchant\": \"No\",\n            \"createdBy\": {\n                \"id\": 11\n            },\n            \"createdOn\": \"2021-10-08 14:20:28\",\n            \"_links\": {\n                \"self\": {\n                    \"href\": \"https://dashboard.dashboard.paysecureonline.com/api/ticket/response/2\"\n                }\n            }\n        }\n    ]\n}"}],"_postman_id":"567092ed-0f25-480e-ad8e-a7b8109062b0"},{"name":"Create","id":"9e933285-6448-4158-9a3f-3cb90a8d10fc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"text\": \"Demo Example\",\n    \"attentionMerchant\": \"Yes\"\n}","options":{"raw":{"language":"json"}}},"url":"https://dashboard.dashboard.paysecureonline.com/api/ticket/<id>/response","description":"<p>Create a response for a specific ticket</p>\n","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"51159b90-d01b-4679-ab9c-79c17f17af0d","id":"51159b90-d01b-4679-ab9c-79c17f17af0d","name":"Tickets","type":"folder"}},"urlObject":{"path":["api","ticket","<id>","response"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"bb35aa60-edd0-4dfb-a37b-0522bf8d24c2","name":"Create","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"text\": \"Demo Example\",\n    \"attentionMerchant\": \"Yes\"\n}","options":{"raw":{"language":"json"}}},"url":"https://dashboard.dashboard.paysecureonline.com/api/ticket/1/response"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 1,\n    \"text\": \"Demo Example\",\n    \"attentionMerchant\": \"Yes\",\n    \"createdBy\": {\n        \"id\": 1\n    },\n    \"createdOn\": \"2021-06-16 17:08:52\"\n}"}],"_postman_id":"9e933285-6448-4158-9a3f-3cb90a8d10fc"},{"name":"Add an Attachment","id":"d9854643-f24c-4e72-b979-3280b978512b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/ticket/<id>/response/<responseId>/document","description":"<p>Use this endpoint to add attachments to a ticket response</p>\n<blockquote>\n<p><strong>NOTE</strong> To create an attachment use our Attachemnts endpoint first.</p>\n</blockquote>\n","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"51159b90-d01b-4679-ab9c-79c17f17af0d","id":"51159b90-d01b-4679-ab9c-79c17f17af0d","name":"Tickets","type":"folder"}},"urlObject":{"path":["api","ticket","<id>","response","<responseId>","document"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"67e2a859-a077-408a-8936-2117f8af4740","name":"Add an Attachment","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"attachment\": {\n        \"id\": \"750\"\n    }","options":{"raw":{"language":"json"}}},"url":"https://dashboard.dashboard.paysecureonline.com/api/ticket/1/response/1/document"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"attachment\": {\n        \"id\": 750\n    },\n    \"response\": {\n        \"id\": 1\n    },\n    \"note\": {\n        \"id\": null\n    }\n}"}],"_postman_id":"d9854643-f24c-4e72-b979-3280b978512b"}],"id":"3109608d-63ae-4b67-b59b-9f22eff05e03","description":"<p>You can use this endpoint to:</p>\n<ol>\n<li>Create ticket responses</li>\n<li>List all responses for a specific <code>ticket.id</code></li>\n<li>Upload an attachment to a response.</li>\n</ol>\n","_postman_id":"3109608d-63ae-4b67-b59b-9f22eff05e03","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"51159b90-d01b-4679-ab9c-79c17f17af0d","id":"51159b90-d01b-4679-ab9c-79c17f17af0d","name":"Tickets","type":"folder"}}},{"name":"Attachments","item":[{"name":"List","id":"3a8b5f9d-d829-4478-805c-c51adccb56c9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/ticket/<ticketId>/documents","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"51159b90-d01b-4679-ab9c-79c17f17af0d","id":"51159b90-d01b-4679-ab9c-79c17f17af0d","name":"Tickets","type":"folder"}},"urlObject":{"path":["api","ticket","<ticketId>","documents"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"3fff9724-fbe1-49e2-a431-50352b5873e8","name":"List","originalRequest":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/ticket/88/documents"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"items\": [\n        {\n            \"attachment\": {\n                \"id\": 1919,\n                \"name\": \"someimage.png\",\n                \"type\": \"image/png\",\n                \"size\": 272670,\n                \"createdOn\": \"2023-06-07 14:46:40\"\n            },\n            \"response\": {\n                \"id\": null\n            },\n            \"note\": {\n                \"id\": 13\n            }\n        }\n    ],\n    \"_links\": {\n        \"self\": {\n            \"href\": \"https://dashboard.dashboard.paysecureonline.com/api/ticket/88/documents?page=1\"\n        },\n        \"first\": {\n            \"href\": \"https://dashboard.dashboard.paysecureonline.com/api/ticket/88/documents?page=1\"\n        },\n        \"last\": {\n            \"href\": \"https://dashboard.dashboard.paysecureonline.com/api/ticket/88/documents?page=1\"\n        }\n    },\n    \"_meta\": {\n        \"totalCount\": 1,\n        \"pageCount\": 1,\n        \"currentPage\": 1,\n        \"perPage\": 30\n    }\n}"}],"_postman_id":"3a8b5f9d-d829-4478-805c-c51adccb56c9"},{"name":"View","id":"996233d8-849a-4578-bbcc-ec00ee8df06d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/ticket/<ticketId>/document/<Id>","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"51159b90-d01b-4679-ab9c-79c17f17af0d","id":"51159b90-d01b-4679-ab9c-79c17f17af0d","name":"Tickets","type":"folder"}},"urlObject":{"path":["api","ticket","<ticketId>","document","<Id>"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"3a2aa037-bf27-4523-a750-28c5645fb523","name":"View","originalRequest":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://dashboard.dashboard.paysecureonline.com/api/ticket/88/document/1919"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"attachment\": {\n        \"id\": 1919,\n        \"name\": \"someimage.png\",\n        \"type\": \"image/png\",\n        \"size\": 272670,\n        \"createdOn\": \"2023-06-07 14:46:40\"\n    },\n    \"response\": {\n        \"id\": null\n    },\n    \"note\": {\n        \"id\": 13\n    }\n}"}],"_postman_id":"996233d8-849a-4578-bbcc-ec00ee8df06d"},{"name":"Create","id":"10b06d1f-6b82-4249-9835-153f2ea97e1c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/ticket/<ticketId>/document","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"51159b90-d01b-4679-ab9c-79c17f17af0d","id":"51159b90-d01b-4679-ab9c-79c17f17af0d","name":"Tickets","type":"folder"}},"urlObject":{"path":["api","ticket","<ticketId>","document"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"6fcd81b6-48e3-4b77-b792-b8b0c165a135","name":"Create","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"attachment\": {\n        \"id\": \"1920\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://dashboard.dashboard.paysecureonline.com/api/ticket/88/document"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"attachment\": {\n        \"id\": 1920\n    },\n    \"response\": {\n        \"id\": null\n    },\n    \"note\": {\n        \"id\": null\n    }\n}"}],"_postman_id":"10b06d1f-6b82-4249-9835-153f2ea97e1c"},{"name":"Delete","id":"be266324-0725-44c0-9f42-2589cc710396","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/ticket/<ticketId>/document/<attachmentId>","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"51159b90-d01b-4679-ab9c-79c17f17af0d","id":"51159b90-d01b-4679-ab9c-79c17f17af0d","name":"Tickets","type":"folder"}},"urlObject":{"path":["api","ticket","<ticketId>","document","<attachmentId>"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"fbd51886-3bfe-4901-8fde-9caee23d1d05","name":"Delete","originalRequest":{"method":"DELETE","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/ticket/88/document/1920"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"true"}],"_postman_id":"be266324-0725-44c0-9f42-2589cc710396"}],"id":"304d5984-3c9d-4fca-8379-762d30e073be","description":"<p>You can use this endpoint to add an attachment to an existing ticket.</p>\n<blockquote>\n</blockquote>\n<p><strong>NOTE</strong> You first need to create the ticket and then add an attachment to it.</p>\n","_postman_id":"304d5984-3c9d-4fca-8379-762d30e073be","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"51159b90-d01b-4679-ab9c-79c17f17af0d","id":"51159b90-d01b-4679-ab9c-79c17f17af0d","name":"Tickets","type":"folder"}}},{"name":"Categories","item":[{"name":"List","id":"6ab14c2d-5e11-4596-b90c-2802572db28a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/ticket/categories","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"51159b90-d01b-4679-ab9c-79c17f17af0d","id":"51159b90-d01b-4679-ab9c-79c17f17af0d","name":"Tickets","type":"folder"}},"urlObject":{"path":["api","ticket","categories"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"25cef91a-5a0a-4ce3-97d3-0e81283a22b8","name":"List","originalRequest":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/ticket/categories"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 1,\n        \"name\": \"Other\",\n        \"group\": \"Merchant\"\n    },\n    {\n        \"id\": 2,\n        \"name\": \"Account Changes\",\n        \"group\": \"Merchant\"\n    },\n    {\n        \"id\": 3,\n        \"name\": \"Risk\",\n        \"group\": \"Merchant\"\n    },\n    {\n        \"id\": 4,\n        \"name\": \"Chargeback Assistance\",\n        \"group\": \"Merchant\"\n    },\n    {\n        \"id\": 5,\n        \"name\": \"Funding/Billing Inquiry\",\n        \"group\": \"Merchant\"\n    },\n    {\n        \"id\": 6,\n        \"name\": \"Document Request\",\n        \"group\": \"Merchant\"\n    },\n    {\n        \"id\": 7,\n        \"name\": \"Technical Support\",\n        \"group\": \"Merchant\"\n    },\n    {\n        \"id\": 8,\n        \"name\": \"Residual Inquiry\",\n        \"group\": \"Agent\"\n    },\n    {\n        \"id\": 9,\n        \"name\": \"Other\",\n        \"group\": \"Agent\"\n    }\n]"}],"_postman_id":"6ab14c2d-5e11-4596-b90c-2802572db28a"}],"id":"a45b8742-71d6-4120-8ad0-ec2ff72684a8","description":"<p>This endpoint is used to list all the available categories under which you can open a ticket.</p>\n","_postman_id":"a45b8742-71d6-4120-8ad0-ec2ff72684a8","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"51159b90-d01b-4679-ab9c-79c17f17af0d","id":"51159b90-d01b-4679-ab9c-79c17f17af0d","name":"Tickets","type":"folder"}}},{"name":"Notes","item":[{"name":"List","id":"b253ffe2-8b23-4170-8931-02fa429ee748","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/ticket/<ticketId>/notes","description":"<p>Use this endpoint to list all the notes for a specific <code>ticket.id</code></p>\n","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"51159b90-d01b-4679-ab9c-79c17f17af0d","id":"51159b90-d01b-4679-ab9c-79c17f17af0d","name":"Tickets","type":"folder"}},"urlObject":{"path":["api","ticket","<ticketId>","notes"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"c43c5b9a-72e4-40f8-b5a5-250f31e5cd95","name":"List","originalRequest":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/ticket/88/notes"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"items\": [\n        {\n            \"id\": 13,\n            \"note\": \"I am adding this note, please look into this matter\",\n            \"creator\": {\n                \"id\": 14\n            },\n            \"createdOn\": \"2023-05-17 09:25:54\"\n        }\n    ],\n    \"_links\": {\n        \"self\": {\n            \"href\": \"https://dashboard.dashboard.paysecureonline.com/api/ticket/88/notes?page=1\"\n        },\n        \"first\": {\n            \"href\": https://dashboard.dashboard.paysecureonline.com/api/ticket/88/notes?page=1\"\n        },\n        \"last\": {\n            \"href\": \"https://dashboard.dashboard.paysecureonline.com/api/ticket/88/notes?page=1\"\n        }\n    },\n    \"_meta\": {\n        \"totalCount\": 1,\n        \"pageCount\": 1,\n        \"currentPage\": 1,\n        \"perPage\": 30\n    }\n}"}],"_postman_id":"b253ffe2-8b23-4170-8931-02fa429ee748"},{"name":"View","id":"29302448-e896-4fbe-bc9f-02f62ac18caf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/ticket/<ticketId>/note/<noteId>","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"51159b90-d01b-4679-ab9c-79c17f17af0d","id":"51159b90-d01b-4679-ab9c-79c17f17af0d","name":"Tickets","type":"folder"}},"urlObject":{"path":["api","ticket","<ticketId>","note","<noteId>"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"1d23b846-3a66-4186-85b9-20e8c40b832b","name":"View","originalRequest":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/ticket/88/note/13"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 13,\n    \"note\": \"I am adding this note, please look into this matter\",\n    \"creator\": {\n        \"id\": 14\n    },\n    \"createdOn\": \"2023-05-17 09:25:54\"\n}"}],"_postman_id":"29302448-e896-4fbe-bc9f-02f62ac18caf"},{"name":"Create","id":"006bb1a2-a0fc-49b7-a527-9c0adcc58146","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"note\": \"I am adding a new note for this ticket\"\n}","options":{"raw":{"language":"json"}}},"url":"https://dashboard.dashboard.paysecureonline.com/api/ticket/<ticketId>/note","description":"<p>This endpoint is used to add notes to a ticket.</p>\n","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"51159b90-d01b-4679-ab9c-79c17f17af0d","id":"51159b90-d01b-4679-ab9c-79c17f17af0d","name":"Tickets","type":"folder"}},"urlObject":{"path":["api","ticket","<ticketId>","note"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"9792a884-6069-40f2-83b6-ba5169977725","name":"Create","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"note\": \"I am adding a new note for this ticket\"\n}","options":{"raw":{"language":"json"}}},"url":"https://dashboard.dashboard.paysecureonline.com/api/ticket/88/note"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 14,\n    \"note\": \"I am adding a new note for this ticket\",\n    \"creator\": {\n        \"id\": 14\n    },\n    \"createdOn\": \"2023-05-17 12:14:32\"\n}"}],"_postman_id":"006bb1a2-a0fc-49b7-a527-9c0adcc58146"},{"name":"Update","id":"0f5c10c1-9566-4369-a263-2d21bde93607","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"note\": \"I am updating a note for this ticket\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://dashboard.dashboard.paysecureonline.com/api/ticket/<ticketId>/note/<noteId>","description":"<p>You can use this endpoint to update/make corrections to an existing ticket note.</p>\n","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"51159b90-d01b-4679-ab9c-79c17f17af0d","id":"51159b90-d01b-4679-ab9c-79c17f17af0d","name":"Tickets","type":"folder"}},"urlObject":{"path":["api","ticket","<ticketId>","note","<noteId>"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"667e6a80-3cf6-43d8-a9d8-e54eec49440f","name":"Update","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"note\": \"This is the updated note with a fixed typo.\"\n}","options":{"raw":{"language":"json"}}},"url":"https://dashboard.dashboard.paysecureonline.com/api/ticket/88/note/14"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 14,\n    \"note\": \"This is the updated note with a fixed typo.\",\n    \"creator\": {\n        \"id\": 14\n    },\n    \"createdOn\": \"2023-05-17 12:14:32\"\n}"}],"_postman_id":"0f5c10c1-9566-4369-a263-2d21bde93607"},{"name":"Delete","id":"40213b63-d334-4432-857f-8d89ff964102","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/ticket/<ticketId>/note/<noteId>","description":"<p>Use this endpoint to delete a ticket note.</p>\n","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"51159b90-d01b-4679-ab9c-79c17f17af0d","id":"51159b90-d01b-4679-ab9c-79c17f17af0d","name":"Tickets","type":"folder"}},"urlObject":{"path":["api","ticket","<ticketId>","note","<noteId>"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"3ec4739d-fb78-4859-9348-8cf68524d02b","name":"Delete","originalRequest":{"method":"DELETE","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/ticket/88/note/14"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"true"}],"_postman_id":"40213b63-d334-4432-857f-8d89ff964102"},{"name":"Attachments","id":"0f8bf8be-62fe-4ff8-8904-59f3c6551865","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/ticket/<ticketId>/note/<noteId>/document","description":"<p>You can use this endpoint to add an attachment to an existing ticket note.</p>\n<blockquote>\n<p><strong>NOTE</strong> You first need to create the note and then add an attachment to it.  </p>\n</blockquote>\n<p>In order to add an attachment you need to first use our <a href=\"#6937871f-3321-4ff1-a6f2-20a6f925c137\">Attachments</a> endpoint to upload a file and get the file <code>id</code></p>\n","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"51159b90-d01b-4679-ab9c-79c17f17af0d","id":"51159b90-d01b-4679-ab9c-79c17f17af0d","name":"Tickets","type":"folder"}},"urlObject":{"path":["api","ticket","<ticketId>","note","<noteId>","document"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"d8989641-629d-4734-844f-e9fe4863933b","name":"Attachments","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"attachment\": {\n        \"id\": \"1919\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://dashboard.dashboard.paysecureonline.com/api/ticket/88/note/13/document"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"attachment\": {\n        \"id\": 1919\n    }\n}"}],"_postman_id":"0f8bf8be-62fe-4ff8-8904-59f3c6551865"}],"id":"698ad9ae-86ab-43cf-a84b-5d9810a52615","description":"<p>You can use this endpoint for notes that are associated with a ticket.</p>\n<p>You can do the following:</p>\n<ol>\n<li>List all notes in a ticket</li>\n<li>View a specific note for a ticket</li>\n<li>Create a ticket note</li>\n<li>Update a ticket note</li>\n<li>Add an attachment to a ticket note</li>\n</ol>\n<p>Notes Object</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Fields</th>\n<th>Description</th>\n<th>Type</th>\n<th>Filterable</th>\n<th>Required</th>\n<th>Readonly</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>Unique ID of the note</td>\n<td>Integer</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>note</td>\n<td>The contents of the note</td>\n<td>String</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>creator</td>\n<td>Object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>creator.id</td>\n<td>Unique ID of the user who created the note</td>\n<td>Integer</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"698ad9ae-86ab-43cf-a84b-5d9810a52615","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"51159b90-d01b-4679-ab9c-79c17f17af0d","id":"51159b90-d01b-4679-ab9c-79c17f17af0d","name":"Tickets","type":"folder"}}},{"name":"List","id":"469db380-918f-4cb2-bfc9-d6b789f620bb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/tickets","description":"<p>Use this endpoint to list all of your tickets.</p>\n","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"51159b90-d01b-4679-ab9c-79c17f17af0d","id":"51159b90-d01b-4679-ab9c-79c17f17af0d","name":"Tickets","type":"folder"}},"urlObject":{"path":["api","tickets"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"64933051-c1b7-4a72-903c-608e5af02766","name":"List","originalRequest":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/tickets"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 88,\n        \"dba\": {\n            \"id\": 2\n        },\n        \"category\": {\n            \"id\": 4\n        },\n        \"title\": \"Charback Help\",\n        \"text\": \"One of my merchants is inquiring about chargebacks. I need your clarification\",\n        \"status\": \"Open\",\n        \"notifyMerchant\": \"No\",\n        \"attentionMerchant\": \"No\",\n        \"createdBy\": {\n            \"id\": 14\n        },\n        \"createdOn\": \"2023-05-16 13:39:45\",\n        \"lastUpdatedOn\": \"2023-05-16 13:39:45\",\n        \"agentLastUpdatedOn\": \"2023-05-16 13:39:45\"\n    }\n]   \n\"_links\": {\n        \"self\": {\n            \"href\": \"https://dashboard.dashboard.paysecureonline.com/dashboard/web/api/tickets?page=1\"\n        },\n        \"first\": {\n            \"href\": \"https://dashboard.dashboard.paysecureonline.com/dashboard/web/api/tickets?page=1\"\n        },\n        \"last\": {\n            \"href\": \"https://dashboard.dashboard.paysecureonline.com/dashboard/web/api/tickets?page=1\"\n        }\n    },\n    \"_meta\": {\n        \"totalCount\": 1,\n        \"pageCount\": 1,\n        \"currentPage\": 1,\n        \"perPage\": 30\n    }\n}"}],"_postman_id":"469db380-918f-4cb2-bfc9-d6b789f620bb"},{"name":"Create","id":"00e41604-0b91-4ec5-a599-9583d5a7a8a0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"dba\": {\n        \"id\": 2\n    },\n    \"category\": {\n        \"id\": 4\n    },\n    \"title\": \"Charback Help\",\n    \"text\": \"One of my merchants is inquiring about chargebacks. I need your clarification\",\n    \"notifyMerchant\": \"No\",\n    \"attentionMerchant\": \"No\"\n}","options":{"raw":{"language":"json"}}},"url":"https://dashboard.dashboard.paysecureonline.com/api/ticket","description":"<p>Use this endpoint to create a new ticket.</p>\n","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"51159b90-d01b-4679-ab9c-79c17f17af0d","id":"51159b90-d01b-4679-ab9c-79c17f17af0d","name":"Tickets","type":"folder"}},"urlObject":{"path":["api","ticket"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"18406a3f-c760-4340-aac6-99cbe80393d0","name":"Create","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"dba\": {\n        \"id\": 2\n    },\n    \"category\": {\n        \"id\": 4\n    },\n    \"title\": \"Charback Help\",\n    \"text\": \"One of my merchants is inquiring about chargebacks. I need your clarification\",\n    \"notifyMerchant\": \"No\",\n    \"attentionMerchant\": \"No\"\n}","options":{"raw":{"language":"json"}}},"url":"https://dashboard.dashboard.paysecureonline.com/api/ticket"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 88,\n    \"dba\": {\n        \"id\": 2\n    },\n    \"category\": {\n        \"id\": 4\n    },\n    \"title\": \"Charback Help\",\n    \"text\": \"One of my merchants is inquiring about chargebacks. I need your clarification\",\n    \"status\": \"Open\",\n    \"notifyMerchant\": \"No\",\n    \"attentionMerchant\": \"No\",\n    \"createdBy\": {\n        \"id\": 14\n    },\n    \"createdOn\": \"2023-05-16 13:39:45\",\n    \"lastUpdatedOn\": \"2023-05-16 13:39:45\",\n    \"agentLastUpdatedOn\": \"2023-05-16 13:39:45\"\n}"}],"_postman_id":"00e41604-0b91-4ec5-a599-9583d5a7a8a0"},{"name":"View a specific ticket","id":"853ea0db-99b9-468b-bd54-4e32adbf75b0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/ticket/<ticketId>","description":"<p>View all the information for a specific <code>ticket.id</code></p>\n","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"51159b90-d01b-4679-ab9c-79c17f17af0d","id":"51159b90-d01b-4679-ab9c-79c17f17af0d","name":"Tickets","type":"folder"}},"urlObject":{"path":["api","ticket","<ticketId>"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"22afe2d9-3f28-4f12-8665-5a5e5dda9b6f","name":"View a specific ticket","originalRequest":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/ticket/88"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 88,\n    \"dba\": {\n        \"id\": 2\n    },\n    \"category\": {\n        \"id\": 4\n    },\n    \"title\": \"Charback Help\",\n    \"text\": \"One of my merchants is inquiring about chargebacks. I need your clarification\",\n    \"status\": \"Open\",\n    \"notifyMerchant\": \"No\",\n    \"attentionMerchant\": \"No\",\n    \"dueDate\": null,\n    \"responsible\": {\n        \"id\": null\n    },\n    \"createdBy\": {\n        \"id\": 14\n    },\n    \"createdOn\": \"2023-05-16 13:39:45\",\n    \"lastUpdatedOn\": \"2023-05-16 13:39:45\",\n    \"agentLastUpdatedOn\": \"2023-05-16 13:39:45\"\n}"}],"_postman_id":"853ea0db-99b9-468b-bd54-4e32adbf75b0"}],"id":"51159b90-d01b-4679-ab9c-79c17f17af0d","description":"<p>You can utilize this endpoint for our ticketing system.</p>\n<p>You can the following:</p>\n<ol>\n<li>List all tickets</li>\n<li>View a specific ticket</li>\n<li>Create a new ticket</li>\n<li>Close or re-open an existing ticket</li>\n<li>Add a response to an existing ticket</li>\n<li>*Add notes to an existing ticket</li>\n<li>List all ticket categories</li>\n</ol>\n<blockquote>\n<p>*Only agent users can add notes to existing tickets. </p>\n</blockquote>\n<h4 id=\"ticket-object\">Ticket Object</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Fields</th>\n<th>Description</th>\n<th>Type</th>\n<th>Filterable</th>\n<th>Required</th>\n<th>Readonly</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>Unique ID of the ticket</td>\n<td>Integer</td>\n<td>Yes</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>dba</td>\n<td>DBA Object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>dba.id</td>\n<td>Unique ID of the DBA</td>\n<td>Integer</td>\n<td>Yes</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>category</td>\n<td>Category Object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>category.id</td>\n<td>Unique ID of the category</td>\n<td>Integer</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>title</td>\n<td>Title of the ticket</td>\n<td>String</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>text</td>\n<td>Content of the ticket</td>\n<td>String</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>status</td>\n<td>Status of the ticket <code>Open</code> <code>Closed</code> <code>Responded</code></td>\n<td>ENUM</td>\n<td>Yes</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>notifyMerchant</td>\n<td>Notify the merchant when the ticket is created/responded, <code>Yes</code> <code>No</code></td>\n<td>ENUM</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>attentionMerchant</td>\n<td>Notify the merchant when the ticket is created/responded with a special header - attention is needed, <code>Yes</code> <code>No</code></td>\n<td>ENUM</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>createdBy</td>\n<td>Created By Object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>createdBy.id</td>\n<td>Unique ID of the user who created the ticket</td>\n<td>Integer</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>lastResponse</td>\n<td>Last Response Object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>lastResponse.id</td>\n<td>Unique ID of the last ticket response</td>\n<td>Integer</td>\n<td>No</td>\n<td>No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>createdOn</td>\n<td>Date and Time when the ticket was created</td>\n<td>Datetime</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>lastUpdatedOn</td>\n<td>Date and Time of last update on the tickets</td>\n<td>Datetime</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>agentLastUpdatedOn</td>\n<td>Date and Time of last update on the agent</td>\n<td>Datetime</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":false},"event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""]}},{"listen":"test","script":{"type":"text/javascript","exec":[""]}}],"_postman_id":"51159b90-d01b-4679-ab9c-79c17f17af0d"},{"name":"Attachments","item":[{"name":"Chunk Upload","item":[{"name":"Initialize","id":"35df01f1-d58a-4c7d-a212-35cde421936a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"name\": \"forReview.png\",\r\n    \"size\": 989,\r\n    \"hash\": \"555347cd00852cbf81caaffeb995e388\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://dashboard.dashboard.paysecureonline.com/api/attachment/upload","description":"<p>Initialize Object</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Fields</th>\n<th>Description</th>\n<th>Type</th>\n<th>Filterable</th>\n<th>Required</th>\n<th>Readonly</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td>File name</td>\n<td>String</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>size</td>\n<td>File size in bytes</td>\n<td>Number</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>hash</td>\n<td>MD5 File Checksum</td>\n<td>String</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><p>There are a couple of things to note here. Before sending an initialize request you need to have an MD5 checksum for the file that you wish to upload. The required parameters are listed in the Object table.</p>\n<p>After successful initialization, we will return a unique <code>id</code> that needs to be provided when uploading the separated chunks/parts.</p>\n","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"adc9469b-aebd-42c3-af16-01d2fa4279ce","id":"adc9469b-aebd-42c3-af16-01d2fa4279ce","name":"Attachments","type":"folder"}},"urlObject":{"path":["api","attachment","upload"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"e9c1d8d8-be63-4d5e-bad6-0c28aa718f5c","name":"Initialize the file","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"forReview.png\",\n    \"size\": 989,\n    \"hash\": \"555347cd00852cbf81caaffeb995e388\"\n}","options":{"raw":{"language":"json"}}},"url":"https://dashboard.dashboard.paysecureonline.com/api/attachment/upload"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"G54ZGHglW__X1Ex6bzLfAtwVzDgN6Xux\"\n}"}],"_postman_id":"35df01f1-d58a-4c7d-a212-35cde421936a"},{"name":"Upload Request 1/2","id":"d3b0fa04-969f-48b0-a5fd-4adeefffcfe7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/octet-stream","type":"text"}],"body":{"mode":"file","file":{"src":""}},"url":"https://dashboard.dashboard.paysecureonline.com/api/attachment/upload/<id>","description":"<p>You need to separate the larger file into smaller chunks/parts no bigger than 16MB. After the separation, the files need to be uploaded with the correct sequence of parts.</p>\n<blockquote>\n<p><strong>IMPORTANT</strong> The upload process remains in pending status until all the chunks have been uploaded. At the end if we detect that the checksum is not the same as the initialized we will return an error: The provided hash at the beginning does not match the hash of the uploaded file.</p>\n</blockquote>\n","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"adc9469b-aebd-42c3-af16-01d2fa4279ce","id":"adc9469b-aebd-42c3-af16-01d2fa4279ce","name":"Attachments","type":"folder"}},"urlObject":{"path":["api","attachment","upload","<id>"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"c914ba9a-1b41-4850-9fcb-d3eaed959a17","name":"Upload Request 1/2","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/octet-stream","type":"text"}],"body":{"mode":"file","file":{}},"url":"https://dashboard.dashboard.paysecureonline.com/api/attachment/upload/G54ZGHglW__X1Ex6bzLfAtwVzDgN6Xux"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"size\": {\n        \"current\": 500,\n        \"claimed\": 989\n    },\n    \"status\": \"Pending\",\n    \"progress\": \"50.56\"\n}"}],"_postman_id":"d3b0fa04-969f-48b0-a5fd-4adeefffcfe7"},{"name":"Upload Request 2/2","id":"46ba043e-62a1-4c85-b599-a828d2e6f828","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/octet-stream","type":"text"}],"body":{"mode":"file","file":{"src":""}},"url":"https://dashboard.dashboard.paysecureonline.com/api/attachment/upload/<id>","description":"<p>You need to separate the larger file into smaller chunks/parts no bigger than 16MB. After the separation, the files need to be uploaded with the correct sequence of parts.</p>\n<blockquote>\n<p><strong>IMPORTANT</strong> The upload process remains in pending status until all the chunks have been uploaded. At the end if we detect that the checksum is not the same as the initialized we will return an error: The provided hash at the beginning does not match the hash of the uploaded file.</p>\n</blockquote>\n","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"adc9469b-aebd-42c3-af16-01d2fa4279ce","id":"adc9469b-aebd-42c3-af16-01d2fa4279ce","name":"Attachments","type":"folder"}},"urlObject":{"path":["api","attachment","upload","<id>"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"de2204c7-08df-4730-be0f-c3bfc58884a3","name":"Upload Request 1/2","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/octet-stream","type":"text"}],"body":{"mode":"file","file":{}},"url":"https://dashboard.dashboard.paysecureonline.com/api/attachment/upload/G54ZGHglW__X1Ex6bzLfAtwVzDgN6Xux"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"855\",\n    \"name\": \"forReview.png\",\n    \"type\": \"image/png\",\n    \"size\": 989,\n    \"status\": \"Done\"\n}"}],"_postman_id":"46ba043e-62a1-4c85-b599-a828d2e6f828"}],"id":"b07e2466-954c-4c1d-bed6-32ea1f67cd71","description":"<p>The chunk upload endpoints allow you to upload files larger than 16MB by uploading them into smaller chunks/parts. The overall process is as follows:</p>\n<ol>\n<li>Initialize (providing file information)</li>\n<li>Upload the divided chunks/parts of the file</li>\n</ol>\n","_postman_id":"b07e2466-954c-4c1d-bed6-32ea1f67cd71","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"adc9469b-aebd-42c3-af16-01d2fa4279ce","id":"adc9469b-aebd-42c3-af16-01d2fa4279ce","name":"Attachments","type":"folder"}}},{"name":"Standard Upload","id":"0813c059-8442-4cc9-aa1d-3fd55b9a7103","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/attachment/upload","description":"<p>You can utilize the standard upload endpoint if your file is 16MB or less. Anything above 16MB you need to utilize the chunk upload endpoint.</p>\n","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"adc9469b-aebd-42c3-af16-01d2fa4279ce","id":"adc9469b-aebd-42c3-af16-01d2fa4279ce","name":"Attachments","type":"folder"}},"urlObject":{"path":["api","attachment","upload"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"0526ae34-5e89-4e22-9807-2035557b25f3","name":"Standard Upload","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"","type":"file","value":null}]},"url":{"raw":"https://dashboard.dashboard.paysecureonline.com/api/attachment/upload?file","host":["https://dashboard.dashboard.paysecureonline.com"],"path":["api","attachment","upload"],"query":[{"key":"file","value":null,"type":"text"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 1921,\n    \"name\": \"file1.pdf\",\n    \"type\": \"application/pdf\",\n    \"size\": 245311\n}"}],"_postman_id":"0813c059-8442-4cc9-aa1d-3fd55b9a7103"},{"name":"List attachments","id":"28a0afe8-224a-47c4-a595-34ac13384d63","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/attachments","description":"<p>List all of your attachments in the Dashboard's file system.</p>\n","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"adc9469b-aebd-42c3-af16-01d2fa4279ce","id":"adc9469b-aebd-42c3-af16-01d2fa4279ce","name":"Attachments","type":"folder"}},"urlObject":{"path":["api","attachments"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"23b077ef-d817-4dca-bb48-d3e67b8e2cd6","name":"List attachments","originalRequest":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/attachments"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"items\": [\n        {\n            \"id\": 1920,\n            \"name\": \"disputeinfo.pdf\",\n            \"type\": \"application/pdf\",\n            \"size\": 245311,\n            \"createdOn\": \"2023-05-17 13:05:42\"\n        },\n        {\n            \"id\": 1919,\n            \"name\": \"signature.pdf\",\n            \"type\": \"application/pdf\",\n            \"size\": 245311,\n            \"createdOn\": \"2023-05-17 09:23:57\"\n        }\n    ],\n    \"_links\": {\n        \"self\": {\n            \"href\": \"https://dashboard.dashboard.paysecureonline.com/api/attachments?page=1\"\n        },\n        \"first\": {\n            \"href\": \"https://dashboard.dashboard.paysecureonline.com/api/attachments?page=1\"\n        },\n        \"last\": {\n            \"href\": \"https://dashboard.dashboard.paysecureonline.com/api/attachments?page=1\"\n        }\n    },\n    \"_meta\": {\n        \"totalCount\": 2,\n        \"pageCount\": 1,\n        \"currentPage\": 1,\n        \"perPage\": 30\n    }\n}"}],"_postman_id":"28a0afe8-224a-47c4-a595-34ac13384d63"},{"name":"View","id":"9ad039a8-8eb7-4cb4-a661-bbb11019f4ba","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/attachment/<id>","description":"<p>View a specific attachment</p>\n","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"adc9469b-aebd-42c3-af16-01d2fa4279ce","id":"adc9469b-aebd-42c3-af16-01d2fa4279ce","name":"Attachments","type":"folder"}},"urlObject":{"path":["api","attachment","<id>"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"35791b09-ba03-469a-ac2e-fbb74eb78775","name":"View","originalRequest":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/attachment/1920"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 1920,\n    \"name\": \"disputeinfo.pdf\",\n    \"type\": \"application/pdf\",\n    \"size\": 245311,\n    \"createdOn\": \"2023-05-17 13:05:42\"\n}"}],"_postman_id":"9ad039a8-8eb7-4cb4-a661-bbb11019f4ba"},{"name":"View in browser","id":"9add3000-7146-4da9-baba-ebe439b01a43","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/attachment/<id>/download/inline","description":"<p>View a specific attachment in browser</p>\n","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"adc9469b-aebd-42c3-af16-01d2fa4279ce","id":"adc9469b-aebd-42c3-af16-01d2fa4279ce","name":"Attachments","type":"folder"}},"urlObject":{"path":["api","attachment","<id>","download","inline"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"79a05954-fe0b-4bcf-a7f2-ea08a36b4fea","name":"View in browser","originalRequest":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/attachment/1920"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"9add3000-7146-4da9-baba-ebe439b01a43"},{"name":"Download","id":"60f826b9-89ed-4e5f-acb0-3ffdd8da44a8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/attachment/<id>/download","description":"<p>Download an attachment.</p>\n","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"adc9469b-aebd-42c3-af16-01d2fa4279ce","id":"adc9469b-aebd-42c3-af16-01d2fa4279ce","name":"Attachments","type":"folder"}},"urlObject":{"path":["api","attachment","<id>","download"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"f667e17f-3547-4ed3-8b6b-0140284d896a","name":"Download","originalRequest":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/attachment/1920"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"60f826b9-89ed-4e5f-acb0-3ffdd8da44a8"},{"name":"Delete","id":"07a35b98-e817-49de-a1de-503eaa6346a5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/attachment/<id>","description":"<p>Deleting attachments can be achieved by utilizing this endpoint.</p>\n<blockquote>\n<p><strong>IMPORTANT</strong> Any attachment that is already in use by one or more endpoint in the Dashboard cannot be deleted.</p>\n</blockquote>\n","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":true,"source":{"_postman_id":"adc9469b-aebd-42c3-af16-01d2fa4279ce","id":"adc9469b-aebd-42c3-af16-01d2fa4279ce","name":"Attachments","type":"folder"}},"urlObject":{"path":["api","attachment","<id>"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"cbf2f149-89c8-42c5-9e07-5f38765886d0","name":"Delete","originalRequest":{"method":"DELETE","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/attachment/1919"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"07a35b98-e817-49de-a1de-503eaa6346a5"}],"id":"adc9469b-aebd-42c3-af16-01d2fa4279ce","description":"<p>This endpoint is used for the Dashboard's file system. Each attachment uploaded via this endpoint can be used in several endpoints, including but not limited to the Boarding Application, Tickets, Chargebacks and etc.</p>\n<blockquote>\n<p><strong>NOTE</strong> We provide several upload methods for your convenience. </p>\n</blockquote>\n<p>Attachments Object</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Fields</th>\n<th>Description</th>\n<th>Type</th>\n<th>Filterable</th>\n<th>Required</th>\n<th>Readonly</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>ID of the attached file</td>\n<td>Integer</td>\n<td>Yes</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>name</td>\n<td>File name</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>type</td>\n<td>File type</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>size</td>\n<td>File size in bytes</td>\n<td>Number</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>createdOn</td>\n<td>Date and time of file creation</td>\n<td>Datetime</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"XXX"},"isInherited":false},"event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""]}},{"listen":"test","script":{"type":"text/javascript","exec":[""]}}],"_postman_id":"adc9469b-aebd-42c3-af16-01d2fa4279ce"},{"name":"BIN Check","item":[{"name":"Get BIN Information","id":"50637218-4ec7-4f63-b957-83ccdbd5b783","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/bin/<bin>","description":"<p>View information for a specific BIN record.</p>\n","urlObject":{"path":["api","bin","<bin>"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"004be0dc-51de-4afd-adb8-fe5486c5b974","name":"Get BIN Information","originalRequest":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/bin/403647"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"bin\": 403647,\n    \"brand\": \"Visa\",\n    \"organization\": \"Bank Of America, National Association\",\n    \"type\": \"Credit\",\n    \"category\": \"Business\",\n    \"country\": {\n        \"name\": \"United States\",\n        \"code\": \"US\"\n    }\n}"}],"_postman_id":"50637218-4ec7-4f63-b957-83ccdbd5b783"}],"id":"5d63434f-e2d5-458f-859e-238ab309e590","description":"<p>You can use this endpoint to get detailed information on a BIN</p>\n<p>BIN Object</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Fields</th>\n<th>Description</th>\n<th>Type</th>\n<th>Filterable</th>\n<th>Required</th>\n<th>Readonly</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>bin</td>\n<td>Bank Identification Number</td>\n<td>Integer</td>\n<td>Yes</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>brand</td>\n<td>Brand of the card</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>type</td>\n<td><code>Debit</code>, <code>Credit</code> or <code>ChargeCard</code></td>\n<td>ENUM</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>category</td>\n<td>Category of the card</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>organization</td>\n<td>Organization</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>country</td>\n<td>Country</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>country.name</td>\n<td>Name of the country</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>country.code</td>\n<td>ISO Code of the country</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"5d63434f-e2d5-458f-859e-238ab309e590"},{"name":"Address Checker","item":[{"name":"List Countries","id":"efbe9dfd-6298-4656-a662-03e4dddfb00b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/countries","description":"<p>Use this endpoint to list all countries and their corresponding code information</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Fields</th>\n<th>Description</th>\n<th>Type</th>\n<th>Filterable</th>\n<th>Required</th>\n<th>Readonly</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>Unique ID of the country</td>\n<td>Integer</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>name</td>\n<td>Full name of the county</td>\n<td>String</td>\n<td>Yes</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>code</td>\n<td>Object</td>\n<td>Object</td>\n<td>Yes</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>code.alpha2</td>\n<td>2 letter country code abbreviation</td>\n<td>String</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>code.alpha3</td>\n<td>3 letter country code abbreviation</td>\n<td>String</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","countries"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"31a0ad69-0c45-4c94-a0a2-cf212d95a9b4","name":"List Countries","originalRequest":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/countries"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"items\": [\n        {\n            \"id\": 1,\n            \"name\": \"Bangladesh\",\n            \"code\": {\n                \"alpha2\": \"BD\",\n                \"alpha3\": \"BGD\"\n            }\n        },\n        {\n            \"id\": 2,\n            \"name\": \"Belgium\",\n            \"code\": {\n                \"alpha2\": \"BE\",\n                \"alpha3\": \"BEL\"\n            }\n        },\n        {\n            \"id\": 3,\n            \"name\": \"Burkina Faso\",\n            \"code\": {\n                \"alpha2\": \"BF\",\n                \"alpha3\": \"BFA\"\n            }\n        },\n        {\n            \"id\": 4,\n            \"name\": \"Bulgaria\",\n            \"code\": {\n                \"alpha2\": \"BG\",\n                \"alpha3\": \"BGR\"\n            }\n        },\n        {\n            \"id\": 5,\n            \"name\": \"Bosnia and Herzegovina\",\n            \"code\": {\n                \"alpha2\": \"BA\",\n                \"alpha3\": \"BIH\"\n            }\n        },\n        {\n            \"id\": 6,\n            \"name\": \"Barbados\",\n            \"code\": {\n                \"alpha2\": \"BB\",\n                \"alpha3\": \"BRB\"\n            }\n        },\n        {\n            \"id\": 7,\n            \"name\": \"Wallis and Futuna\",\n            \"code\": {\n                \"alpha2\": \"WF\",\n                \"alpha3\": \"WLF\"\n            }\n        },\n        {\n            \"id\": 8,\n            \"name\": \"Saint Barthelemy\",\n            \"code\": {\n                \"alpha2\": \"BL\",\n                \"alpha3\": \"BLM\"\n            }\n        },\n        {\n            \"id\": 9,\n            \"name\": \"Bermuda\",\n            \"code\": {\n                \"alpha2\": \"BM\",\n                \"alpha3\": \"BMU\"\n            }\n        },\n        {\n            \"id\": 10,\n            \"name\": \"Brunei\",\n            \"code\": {\n                \"alpha2\": \"BN\",\n                \"alpha3\": \"BRN\"\n            }\n        },\n        {\n            \"id\": 11,\n            \"name\": \"Bolivia\",\n            \"code\": {\n                \"alpha2\": \"BO\",\n                \"alpha3\": \"BOL\"\n            }\n        },\n        {\n            \"id\": 12,\n            \"name\": \"Bahrain\",\n            \"code\": {\n                \"alpha2\": \"BH\",\n                \"alpha3\": \"BHR\"\n            }\n        },\n        {\n            \"id\": 13,\n            \"name\": \"Burundi\",\n            \"code\": {\n                \"alpha2\": \"BI\",\n                \"alpha3\": \"BDI\"\n            }\n        },\n        {\n            \"id\": 14,\n            \"name\": \"Benin\",\n            \"code\": {\n                \"alpha2\": \"BJ\",\n                \"alpha3\": \"BEN\"\n            }\n        },\n        {\n            \"id\": 15,\n            \"name\": \"Bhutan\",\n            \"code\": {\n                \"alpha2\": \"BT\",\n                \"alpha3\": \"BTN\"\n            }\n        },\n        {\n            \"id\": 16,\n            \"name\": \"Jamaica\",\n            \"code\": {\n                \"alpha2\": \"JM\",\n                \"alpha3\": \"JAM\"\n            }\n        },\n        {\n            \"id\": 17,\n            \"name\": \"Bouvet Island\",\n            \"code\": {\n                \"alpha2\": \"BV\",\n                \"alpha3\": \"BVT\"\n            }\n        },\n        {\n            \"id\": 18,\n            \"name\": \"Botswana\",\n            \"code\": {\n                \"alpha2\": \"BW\",\n                \"alpha3\": \"BWA\"\n            }\n        },\n        {\n            \"id\": 19,\n            \"name\": \"Samoa\",\n            \"code\": {\n                \"alpha2\": \"WS\",\n                \"alpha3\": \"WSM\"\n            }\n        },\n        {\n            \"id\": 20,\n            \"name\": \"Bonaire, Saint Eustatius and Saba \",\n            \"code\": {\n                \"alpha2\": \"BQ\",\n                \"alpha3\": \"BES\"\n            }\n        },\n        {\n            \"id\": 21,\n            \"name\": \"Brazil\",\n            \"code\": {\n                \"alpha2\": \"BR\",\n                \"alpha3\": \"BRA\"\n            }\n        },\n        {\n            \"id\": 22,\n            \"name\": \"Bahamas\",\n            \"code\": {\n                \"alpha2\": \"BS\",\n                \"alpha3\": \"BHS\"\n            }\n        },\n        {\n            \"id\": 23,\n            \"name\": \"Jersey\",\n            \"code\": {\n                \"alpha2\": \"JE\",\n                \"alpha3\": \"JEY\"\n            }\n        },\n        {\n            \"id\": 24,\n            \"name\": \"Belarus\",\n            \"code\": {\n                \"alpha2\": \"BY\",\n                \"alpha3\": \"BLR\"\n            }\n        },\n        {\n            \"id\": 25,\n            \"name\": \"Belize\",\n            \"code\": {\n                \"alpha2\": \"BZ\",\n                \"alpha3\": \"BLZ\"\n            }\n        },\n        {\n            \"id\": 26,\n            \"name\": \"Russia\",\n            \"code\": {\n                \"alpha2\": \"RU\",\n                \"alpha3\": \"RUS\"\n            }\n        },\n        {\n            \"id\": 27,\n            \"name\": \"Rwanda\",\n            \"code\": {\n                \"alpha2\": \"RW\",\n                \"alpha3\": \"RWA\"\n            }\n        },\n        {\n            \"id\": 28,\n            \"name\": \"Serbia\",\n            \"code\": {\n                \"alpha2\": \"RS\",\n                \"alpha3\": \"SRB\"\n            }\n        },\n        {\n            \"id\": 29,\n            \"name\": \"East Timor\",\n            \"code\": {\n                \"alpha2\": \"TL\",\n                \"alpha3\": \"TLS\"\n            }\n        },\n        {\n            \"id\": 30,\n            \"name\": \"Reunion\",\n            \"code\": {\n                \"alpha2\": \"RE\",\n                \"alpha3\": \"REU\"\n            }\n        }\n    ],\n    \"_links\": {\n        \"self\": {\n            \"href\": \"https://dashboard.dashboard.paysecureonline.com/api/countries?page=1\"\n        },\n        \"next\": {\n            \"href\": \"https://dashboard.dashboard.paysecureonline.com/api/countries?page=2\"\n        },\n        \"last\": {\n            \"href\": \"https://dashboard.dashboard.paysecureonline.com/api/countries?page=9\"\n        }\n    },\n    \"_meta\": {\n        \"totalCount\": 250,\n        \"pageCount\": 9,\n        \"currentPage\": 1,\n        \"perPage\": 30\n    }\n}"}],"_postman_id":"efbe9dfd-6298-4656-a662-03e4dddfb00b"},{"name":"List States","id":"c9953e29-4534-4963-bab3-751d0be14da3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/country/<id>/states","description":"<p>Use this endpoint to list all available state information for a specific country code.</p>\n<p>States Object</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Fields</th>\n<th>Description</th>\n<th>Type</th>\n<th>Filterable</th>\n<th>Required</th>\n<th>Readonly</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>Unique ID of the state</td>\n<td>Integer</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>name</td>\n<td>Full name of the state</td>\n<td>String</td>\n<td>Yes</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>code</td>\n<td>2 letter state code abbreviation</td>\n<td>String</td>\n<td>Yes</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","country","<id>","states"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"7c897772-a0f7-43a6-8b43-93b0d62bc6dc","name":"List States","originalRequest":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/country/199/states"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"items\": [\n        {\n            \"id\": 1,\n            \"name\": \"Alabama\",\n            \"code\": \"AL\"\n        },\n        {\n            \"id\": 2,\n            \"name\": \"Alaska\",\n            \"code\": \"AK\"\n        },\n        {\n            \"id\": 3,\n            \"name\": \"Arizona\",\n            \"code\": \"AZ\"\n        },\n        {\n            \"id\": 4,\n            \"name\": \"Arkansas\",\n            \"code\": \"AR\"\n        },\n        {\n            \"id\": 5,\n            \"name\": \"California\",\n            \"code\": \"CA\"\n        },\n        {\n            \"id\": 6,\n            \"name\": \"Colorado\",\n            \"code\": \"CO\"\n        },\n        {\n            \"id\": 7,\n            \"name\": \"Connecticut\",\n            \"code\": \"CT\"\n        },\n        {\n            \"id\": 8,\n            \"name\": \"Delaware\",\n            \"code\": \"DE\"\n        },\n        {\n            \"id\": 9,\n            \"name\": \"District of Columbia\",\n            \"code\": \"DC\"\n        },\n        {\n            \"id\": 10,\n            \"name\": \"Florida\",\n            \"code\": \"FL\"\n        },\n        {\n            \"id\": 11,\n            \"name\": \"Georgia\",\n            \"code\": \"GA\"\n        },\n        {\n            \"id\": 12,\n            \"name\": \"Hawaii\",\n            \"code\": \"HI\"\n        },\n        {\n            \"id\": 13,\n            \"name\": \"Idaho\",\n            \"code\": \"ID\"\n        },\n        {\n            \"id\": 14,\n            \"name\": \"Illinois\",\n            \"code\": \"IL\"\n        },\n        {\n            \"id\": 15,\n            \"name\": \"Indiana\",\n            \"code\": \"IN\"\n        },\n        {\n            \"id\": 16,\n            \"name\": \"Iowa\",\n            \"code\": \"IA\"\n        },\n        {\n            \"id\": 17,\n            \"name\": \"Kansas\",\n            \"code\": \"KS\"\n        },\n        {\n            \"id\": 18,\n            \"name\": \"Kentucky\",\n            \"code\": \"KY\"\n        },\n        {\n            \"id\": 19,\n            \"name\": \"Louisiana\",\n            \"code\": \"LA\"\n        },\n        {\n            \"id\": 20,\n            \"name\": \"Maine\",\n            \"code\": \"ME\"\n        },\n        {\n            \"id\": 21,\n            \"name\": \"Maryland\",\n            \"code\": \"MD\"\n        },\n        {\n            \"id\": 22,\n            \"name\": \"Massachusetts\",\n            \"code\": \"MA\"\n        },\n        {\n            \"id\": 23,\n            \"name\": \"Michigan\",\n            \"code\": \"MI\"\n        },\n        {\n            \"id\": 24,\n            \"name\": \"Minnesota\",\n            \"code\": \"MN\"\n        },\n        {\n            \"id\": 25,\n            \"name\": \"Mississippi\",\n            \"code\": \"MS\"\n        },\n        {\n            \"id\": 26,\n            \"name\": \"Missouri\",\n            \"code\": \"MO\"\n        },\n        {\n            \"id\": 27,\n            \"name\": \"Montana\",\n            \"code\": \"MT\"\n        },\n        {\n            \"id\": 28,\n            \"name\": \"Nebraska\",\n            \"code\": \"NE\"\n        },\n        {\n            \"id\": 29,\n            \"name\": \"Nevada\",\n            \"code\": \"NV\"\n        },\n        {\n            \"id\": 30,\n            \"name\": \"New Hampshire\",\n            \"code\": \"NH\"\n        }\n    ],\n    \"_links\": {\n        \"self\": {\n            \"href\": \"https://dashboard.dashboard.paysecureonline.com/api/country/199/states?page=1\"\n        },\n        \"next\": {\n            \"href\": \"https://dashboard.dashboard.paysecureonline.com/api/country/199/states?page=2\"\n        },\n        \"last\": {\n            \"href\": \"https://dashboard.dashboard.paysecureonline.com/api/country/199/states?page=3\"\n        }\n    },\n    \"_meta\": {\n        \"totalCount\": 62,\n        \"pageCount\": 3,\n        \"currentPage\": 1,\n        \"perPage\": 30\n    }\n}"}],"_postman_id":"c9953e29-4534-4963-bab3-751d0be14da3"},{"name":"List Cities and Zip Codes","id":"83b320f9-2bd9-40cc-8c78-d0dfbfc3bc1d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/country/<id>/state/<id>/zip","description":"<p>Use this endpoint to list all available cities and their zip code information for a specific state code.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Fields</th>\n<th>Description</th>\n<th>Type</th>\n<th>Filterable</th>\n<th>Required</th>\n<th>Readonly</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>Unique ID of the zip code</td>\n<td>Integer</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>zip</td>\n<td>Object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>zip.code</td>\n<td>Zip code</td>\n<td>String</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>zip.type</td>\n<td><code>Standard</code>, <code>Acceptable</code></td>\n<td>ENUM</td>\n<td>Yes</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>city</td>\n<td>Object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>city.name</td>\n<td>Full name of the city</td>\n<td>String</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>city.type</td>\n<td><code>Standard</code>, <code>Acceptable</code></td>\n<td>ENUM</td>\n<td>Yes</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>county</td>\n<td>Full name of the county</td>\n<td>String</td>\n<td>Yes</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>state</td>\n<td>Object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>state.id</td>\n<td>The ID of the state</td>\n<td>Integer</td>\n<td>Yes</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>timezone</td>\n<td>Object</td>\n<td>Object</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>timezone.value</td>\n<td>Name of timezone</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>timezone.utc</td>\n<td>Timezone (UTC12)</td>\n<td>ENUM</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>timezone.dst</td>\n<td><code>Yes</code>, <code>No</code></td>\n<td>ENUM</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","country","<id>","state","<id>","zip"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[],"variable":[]}},"response":[{"id":"d9d5029f-c77c-423c-8c9f-aa50ea8dd491","name":"List Cities and Zip Codes","originalRequest":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/country/199/state/5/zip"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"items\": [\n        {\n            \"id\": \"72801\",\n            \"zip\": {\n                \"code\": 90001,\n                \"type\": \"Standard\"\n            },\n            \"city\": {\n                \"name\": \"Firestone Park\",\n                \"type\": \"Acceptable\"\n            },\n            \"county\": \"Los Angeles\",\n            \"state\": {\n                \"id\": 5\n            },\n            \"timezone\": {\n                \"value\": \"Pacific\",\n                \"utc\": \"-8.0\",\n                \"dst\": \"Yes\"\n            }\n        },\n        {\n            \"id\": \"72802\",\n            \"zip\": {\n                \"code\": 90001,\n                \"type\": \"Standard\"\n            },\n            \"city\": {\n                \"name\": \"Firestone Pk\",\n                \"type\": \"Acceptable\"\n            },\n            \"county\": \"Los Angeles\",\n            \"state\": {\n                \"id\": 5\n            },\n            \"timezone\": {\n                \"value\": \"Pacific\",\n                \"utc\": \"-8.0\",\n                \"dst\": \"Yes\"\n            }\n        },\n        {\n            \"id\": \"72803\",\n            \"zip\": {\n                \"code\": 90001,\n                \"type\": \"Standard\"\n            },\n            \"city\": {\n                \"name\": \"Los Angeles\",\n                \"type\": \"Default\"\n            },\n            \"county\": \"Los Angeles\",\n            \"state\": {\n                \"id\": 5\n            },\n            \"timezone\": {\n                \"value\": \"Pacific\",\n                \"utc\": \"-8.0\",\n                \"dst\": \"Yes\"\n            }\n        },\n        {\n            \"id\": \"72804\",\n            \"zip\": {\n                \"code\": 90002,\n                \"type\": \"Standard\"\n            },\n            \"city\": {\n                \"name\": \"Los Angeles\",\n                \"type\": \"Default\"\n            },\n            \"county\": \"Los Angeles\",\n            \"state\": {\n                \"id\": 5\n            },\n            \"timezone\": {\n                \"value\": \"Pacific\",\n                \"utc\": \"-8.0\",\n                \"dst\": \"Yes\"\n            }\n        },\n        {\n            \"id\": \"72805\",\n            \"zip\": {\n                \"code\": 90002,\n                \"type\": \"Standard\"\n            },\n            \"city\": {\n                \"name\": \"Watts\",\n                \"type\": \"Acceptable\"\n            },\n            \"county\": \"Los Angeles\",\n            \"state\": {\n                \"id\": 5\n            },\n            \"timezone\": {\n                \"value\": \"Pacific\",\n                \"utc\": \"-8.0\",\n                \"dst\": \"Yes\"\n            }\n        },\n        {\n            \"id\": \"72806\",\n            \"zip\": {\n                \"code\": 90003,\n                \"type\": \"Standard\"\n            },\n            \"city\": {\n                \"name\": \"Broadway Manchester\",\n                \"type\": \"NotAcceptable\"\n            },\n            \"county\": \"Los Angeles\",\n            \"state\": {\n                \"id\": 5\n            },\n            \"timezone\": {\n                \"value\": \"Pacific\",\n                \"utc\": \"-8.0\",\n                \"dst\": \"Yes\"\n            }\n        },\n        {\n            \"id\": \"72807\",\n            \"zip\": {\n                \"code\": 90003,\n                \"type\": \"Standard\"\n            },\n            \"city\": {\n                \"name\": \"Los Angeles\",\n                \"type\": \"Default\"\n            },\n            \"county\": \"Los Angeles\",\n            \"state\": {\n                \"id\": 5\n            },\n            \"timezone\": {\n                \"value\": \"Pacific\",\n                \"utc\": \"-8.0\",\n                \"dst\": \"Yes\"\n            }\n        },\n        {\n            \"id\": \"72808\",\n            \"zip\": {\n                \"code\": 90004,\n                \"type\": \"Standard\"\n            },\n            \"city\": {\n                \"name\": \"Los Angeles\",\n                \"type\": \"Default\"\n            },\n            \"county\": \"Los Angeles\",\n            \"state\": {\n                \"id\": 5\n            },\n            \"timezone\": {\n                \"value\": \"Pacific\",\n                \"utc\": \"-8.0\",\n                \"dst\": \"Yes\"\n            }\n        },\n        {\n            \"id\": \"72809\",\n            \"zip\": {\n                \"code\": 90004,\n                \"type\": \"Standard\"\n            },\n            \"city\": {\n                \"name\": \"Oakwood\",\n                \"type\": \"Acceptable\"\n            },\n            \"county\": \"Los Angeles\",\n            \"state\": {\n                \"id\": 5\n            },\n            \"timezone\": {\n                \"value\": \"Pacific\",\n                \"utc\": \"-8.0\",\n                \"dst\": \"Yes\"\n            }\n        },\n        {\n            \"id\": \"72810\",\n            \"zip\": {\n                \"code\": 90005,\n                \"type\": \"Standard\"\n            },\n            \"city\": {\n                \"name\": \"Los Angeles\",\n                \"type\": \"Default\"\n            },\n            \"county\": \"Los Angeles\",\n            \"state\": {\n                \"id\": 5\n            },\n            \"timezone\": {\n                \"value\": \"Pacific\",\n                \"utc\": \"-8.0\",\n                \"dst\": \"Yes\"\n            }\n        },\n        {\n            \"id\": \"72811\",\n            \"zip\": {\n                \"code\": 90005,\n                \"type\": \"standard\"\n            },\n            \"city\": {\n                \"name\": \"Sanford\",\n                \"type\": \"Acceptable\"\n            },\n            \"county\": \"Los Angeles\",\n            \"state\": {\n                \"id\": 5\n            },\n            \"timezone\": {\n                \"value\": \"Pacific\",\n                \"utc\": \"-8.0\",\n                \"dst\": \"Yes\"\n            }\n        },\n        {\n            \"id\": \"72812\",\n            \"zip\": {\n                \"code\": 90006,\n                \"type\": \"standard\"\n            },\n            \"city\": {\n                \"name\": \"Los Angeles\",\n                \"type\": \"Default\"\n            },\n            \"county\": \"Los Angeles\",\n            \"state\": {\n                \"id\": 5\n            },\n            \"timezone\": {\n                \"value\": \"Pacific\",\n                \"utc\": \"-8.0\",\n                \"dst\": \"Yes\"\n            }\n        },\n        {\n            \"id\": \"72813\",\n            \"zip\": {\n                \"code\": 90006,\n                \"type\": \"standard\"\n            },\n            \"city\": {\n                \"name\": \"Pico Heights\",\n                \"type\": \"NotAcceptable\"\n            },\n            \"county\": \"Los Angeles\",\n            \"state\": {\n                \"id\": 5\n            },\n            \"timezone\": {\n                \"value\": \"Pacific\",\n                \"utc\": \"-8.0\",\n                \"dst\": \"Yes\"\n            }\n        },\n        {\n            \"id\": \"72814\",\n            \"zip\": {\n                \"code\": 90007,\n                \"type\": \"standard\"\n            },\n            \"city\": {\n                \"name\": \"Dockweiler\",\n                \"type\": \"Acceptable\"\n            },\n            \"county\": \"Los Angeles\",\n            \"state\": {\n                \"id\": 5\n            },\n            \"timezone\": {\n                \"value\": \"Pacific\",\n                \"utc\": \"-8.0\",\n                \"dst\": \"Yes\"\n            }\n        },\n        {\n            \"id\": \"72815\",\n            \"zip\": {\n                \"code\": 90007,\n                \"type\": \"standard\"\n            },\n            \"city\": {\n                \"name\": \"Los Angeles\",\n                \"type\": \"Default\"\n            },\n            \"county\": \"Los Angeles\",\n            \"state\": {\n                \"id\": 5\n            },\n            \"timezone\": {\n                \"value\": \"Pacific\",\n                \"utc\": \"-8.0\",\n                \"dst\": \"Yes\"\n            }\n        }\n    ],\n    \"_links\": {\n        \"self\": {\n            \"href\": \"/api/country/199/state/5/zip?page=1\"\n        }\n    },\n    \"_meta\": {\n        \"totalCount\": 4348,\n        \"pageCount\": 145,\n        \"currentPage\": 1,\n        \"perPage\": 30\n    }\n}"}],"_postman_id":"83b320f9-2bd9-40cc-8c78-d0dfbfc3bc1d"},{"name":"Filter by City and State","id":"aa1e4536-f7de-4181-bef5-82afeab2fa7c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://dashboard.dashboard.paysecureonline.com/api/country/199/state/5/zip?filter[city.name]=Los Angeles&filter[zip.code]=90069","description":"<p>Keep in mind that you can use filters to list only specific cities or list cities for a specific zip code. We validate state, city, and zip code combinations on the Boarding Application, so make sure you are providing the correct information.</p>\n","urlObject":{"path":["api","country","199","state","5","zip"],"host":["https://dashboard.dashboard.paysecureonline.com"],"query":[{"key":"filter[city.name]","value":"Los Angeles"},{"key":"filter[zip.code]","value":"90069"}],"variable":[]}},"response":[{"id":"1e8faff5-95d2-40d4-b52d-e9e91f831640","name":"Filter by City and State","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://dashboard.dashboard.paysecureonline.com/api/country/199/state/5/zip?filter[city.name]=Los Angeles&filter[zip.code]=90069","host":["https://dashboard.dashboard.paysecureonline.com"],"path":["api","country","199","state","5","zip"],"query":[{"key":"filter[city.name]","value":"Los Angeles"},{"key":"filter[zip.code]","value":"90069"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"items\": [\n        {\n            \"id\": \"72963\",\n            \"zip\": {\n                \"code\": 90069,\n                \"type\": \"Standart\"\n            },\n            \"city\": {\n                \"name\": \"Los Angeles\",\n                \"type\": \"Acceptable\"\n            },\n            \"county\": \"Los Angeles\",\n            \"state\": {\n                \"id\": 5\n            },\n            \"timezone\": {\n                \"value\": \"Pacific\",\n                \"utc\": \"-8.0\",\n                \"dst\": \"Yes\"\n            }\n        }\n    ],\n    \"_links\": {\n        \"self\": {\n            \"href\": \"https://dashboard.dashboard.paysecureonline.com//api/country/199/state/5/zip?filter%5Bcity.name%5D=Los+Angeles&filter%5Bzip.code%5D=90069&page=1\"\n        }\n    },\n    \"_meta\": {\n        \"totalCount\": 1,\n        \"pageCount\": 1,\n        \"currentPage\": 1,\n        \"perPage\": 30\n    }\n}"}],"_postman_id":"aa1e4536-f7de-4181-bef5-82afeab2fa7c"}],"id":"d6f368e2-0ef2-4fca-acd4-c2ebaf250e1f","description":"<p>We have created a zip code database to validate all the city, state, and zip code information on the application. Use this endpoint to get the necessary ids that need to be provided in the corresponding fields on the Boarding Application.</p>\n","_postman_id":"d6f368e2-0ef2-4fca-acd4-c2ebaf250e1f"}],"id":"33bacea8-f930-43d8-b58b-f035e5108a84","_postman_id":"33bacea8-f930-43d8-b58b-f035e5108a84","description":""}],"id":"128fb6f7-2f16-4134-817a-4205b56ad336","_postman_id":"128fb6f7-2f16-4134-817a-4205b56ad336","description":""},{"name":"Webhooks","item":[{"name":"Signatures","item":[],"id":"557058f9-69a1-4bde-98f9-c178a3c7757d","description":"<p>We sign the webhook events that are sent to your endpoints. We do so by including a signature in each event's <code>Webhook-Signature</code> header. This allows you to verify that the events were sent by us, not by a third party.</p>\n<blockquote>\n<p><strong>IMPORTANT</strong> You are not required to implement this kind of signature check, but it's <strong>strongly recommended</strong>.</p>\n</blockquote>\n<p><code>Webhook-Signature</code> is a <a href=\"https://en.wikipedia.org/wiki/SHA-2\">SHA-512</a> sum of following fields <code>&lt;webhookSignature&gt;&lt;id&gt;&lt;module&gt;&lt;action&gt;&lt;date&gt;</code></p>\n<p>You can view and manage your <strong>Webhook Signature</strong> in your Dashboard. Keep in mind that every <strong>Webhook URL</strong> has its own <code>&lt;webhookSignature&gt;</code></p>\n","_postman_id":"557058f9-69a1-4bde-98f9-c178a3c7757d"},{"name":"Events","item":[{"name":"Boarding Application","item":[],"id":"0bb7bbb1-14ee-4407-a265-7059247f06a9","description":"<p>Notifications related to our Boarding Applications.</p>\n<p>This webhook will be triggered when a new Boarding Applicaiton is created and when there are status change events related to the Application.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"id\": 1763,\n  \"module\": \"boardingApplication\",\n  \"action\": \"statusChanged\",\n  \"date\": \"2023-08-18 11:08:06\",\n  \"data\": {\n    \"id\": 246146,\n    \"processingMethod\": \"Acquiring\",\n    \"mcc\": \"1750\",\n    \"campaign\": {\n      \"id\": 19859\n    },\n    \"company\": {\n      \"name\": \"Auto Application - Axiom ACQ - a4b3f\",\n      \"type\": \"Corporation\",\n      \"federalTaxId\": \"123456789\",\n      \"address\": {\n        \"street\": \"451 99e29 Street\",\n        \"city\": \"Anchorage\",\n        \"zip\": \"99502\",\n        \"state\": {\n          \"id\": 2\n        },\n        \"country\": {\n          \"id\": 199\n        }\n      },\n      \"founded\": \"2021-01-21\"\n    },\n    \"dba\": {\n      \"id\": 102510,\n      \"sameAsCompany\": \"Yes\",\n      \"name\": null,\n      \"address\": {\n        \"street\": null,\n        \"city\": null,\n        \"zip\": null,\n        \"state\": {\n          \"id\": null\n        },\n        \"country\": {\n          \"id\": 199\n        }\n      }\n    },\n    \"merchant\": {\n      \"id\": 89890\n    },\n    \"website\": \"http://en.wikipedia.org/wiki/Carpentry\",\n    \"serviceDescription\": \"We sell carpentry\",\n    \"mailingAddress\": \"legal\",\n    \"businessLocation\": {\n      \"buildingType\": \"Office Building\",\n      \"numberOfLocations\": \"9\",\n      \"buildingOwnership\": \"Owns\",\n      \"areaZoned\": \"Industrial\",\n      \"squareFootage\": \"0-501\"\n    },\n    \"customerServiceContact\": {\n      \"phone\": \"+1 202-555-0174\",\n      \"email\": \"email@email.com\"\n    },\n    \"corporateContact\": {\n      \"phone\": \"+1 202-555-0174\",\n      \"fax\": \"+1 202-555-0114\",\n      \"email\": \"email@email.com\"\n    },\n    \"bankruptcy\": {\n      \"hasBankruptcy\": \"Business Bankruptcy\",\n      \"description\": \"Bankrupted once in 1982 due to mismanagement\"\n    },\n    \"principals\": [\n      {\n        \"id\": 296046,\n        \"title\": \"Director\",\n        \"name\": {\n          \"first\": \"John\",\n          \"last\": \"Doe\"\n        },\n        \"dayOfBirth\": \"2020-01-21\",\n        \"ssn\": \"123-45-6781\",\n        \"nationalId\": null,\n        \"nationality\": {\n          \"id\": 199\n        },\n        \"driverLicense\": {\n          \"number\": \"13371337\",\n          \"expiration\": \"2024-01-21\",\n          \"state\": {\n            \"id\": 2\n          }\n        },\n        \"address\": {\n          \"street\": \"346 26923 Street\",\n          \"city\": \"Anchorage\",\n          \"zip\": \"99502\",\n          \"state\": {\n            \"id\": 2\n          },\n          \"country\": {\n            \"id\": 199\n          }\n        },\n        \"phone\": \"+1 202-555-0103\",\n        \"email\": \"1da6a29@email.com\",\n        \"ownershipPercentage\": 52,\n        \"isManagement\": \"Yes\"\n      }\n    ],\n    \"processing\": {\n      \"bank\": {\n        \"accountNumber\": \"31337\",\n        \"routingNumber\": \"1337\"\n      },\n      \"volumes\": {\n        \"monthlyTransactionAmount\": 25000,\n        \"avgTransactionAmount\": 400,\n        \"maxTransactionAmount\": 500\n      },\n      \"sales\": {\n        \"swiped\": 50,\n        \"mail\": 25,\n        \"internet\": 25\n      },\n      \"alreadyProcessing\": {\n        \"isProcessing\": \"Yes\",\n        \"processor\": \"PayPal\"\n      },\n      \"terminated\": {\n        \"isTerminated\": \"Yes\",\n        \"description\": \"text\"\n      },\n      \"customers\": {\n        \"type\": {\n          \"individual\": 0,\n          \"business\": 100,\n          \"government\": 0\n        },\n        \"location\": {\n          \"local\": 0,\n          \"national\": 100,\n          \"international\": 0\n        }\n      },\n      \"fulfillmentPolicy\": {\n        \"fulfillment\": \"2-days\",\n        \"fulfillmentOther\": null,\n        \"delivery\": \"24-hours\",\n        \"deliveryOther\": null\n      },\n      \"recurringPayments\": {\n        \"hasRecurring\": \"No\",\n        \"description\": null\n      },\n      \"intendedUsage\": {\n        \"creditCards\": \"Yes\",\n        \"pinDebit\": \"No\",\n        \"ebt\": \"Yes\",\n        \"fns\": \"4454\",\n        \"notes\": \"notes\"\n      },\n      \"seasonalBusiness\": {\n        \"isSeasonal\": \"No\",\n        \"months\": []\n      },\n      \"inventory\": {\n        \"onSite\": \"Yes\",\n        \"offSite\": \"No\",\n        \"offSiteAddress\": null,\n        \"thirdParty\": \"No\",\n        \"serviceOnly\": \"No\"\n      },\n      \"retailLocation\": \"18A Testing Lane blvd.\",\n      \"externalFulfillment\": \"No\",\n      \"customerCharged\": \"time-offer-order\",\n      \"equipmentUsed\": \"We have an old PoS Terminal\",\n      \"advertise\": \"Adsense and physical billboards\",\n      \"refundPolicy\": \"NO REFUNDS!\",\n      \"feeSchedule\": {\n        \"fees\": [\n          {\n            \"id\": 6062030,\n            \"type\": {\n              \"id\": 1\n            },\n            \"value\": \"1.00000\"\n          },\n          {\n            \"id\": 6062031,\n            \"type\": {\n              \"id\": 2\n            },\n            \"value\": \"2.00000\"\n          },\n          {\n            \"id\": 6062032,\n            \"type\": {\n              \"id\": 3\n            },\n            \"value\": \"3.00000\"\n          },\n          {\n            \"id\": 6062033,\n            \"type\": {\n              \"id\": 4\n            },\n            \"value\": \"4.00000\"\n          },\n          {\n            \"id\": 6062034,\n            \"type\": {\n              \"id\": 5\n            },\n            \"value\": \"5.00000\"\n          },\n          {\n            \"id\": 6062035,\n            \"type\": {\n              \"id\": 6\n            },\n            \"value\": \"6.00000\"\n          },\n          {\n            \"id\": 6062036,\n            \"type\": {\n              \"id\": 7\n            },\n            \"value\": \"7.00000\"\n          },\n          {\n            \"id\": 6062037,\n            \"type\": {\n              \"id\": 8\n            },\n            \"value\": \"8.00000\"\n          },\n          {\n            \"id\": 6062038,\n            \"type\": {\n              \"id\": 9\n            },\n            \"value\": \"9.00000\"\n          },\n          {\n            \"id\": 6062039,\n            \"type\": {\n              \"id\": 10\n            },\n            \"value\": \"10.00000\"\n          },\n          {\n            \"id\": 6062040,\n            \"type\": {\n              \"id\": 11\n            },\n            \"value\": \"11.00000\"\n          },\n          {\n            \"id\": 6062041,\n            \"type\": {\n              \"id\": 12\n            },\n            \"value\": \"12.00000\"\n          },\n          {\n            \"id\": 6062042,\n            \"type\": {\n              \"id\": 13\n            },\n            \"value\": \"13.00000\"\n          },\n          {\n            \"id\": 6062043,\n            \"type\": {\n              \"id\": 14\n            },\n            \"value\": \"14.00000\"\n          },\n          {\n            \"id\": 6062044,\n            \"type\": {\n              \"id\": 15\n            },\n            \"value\": \"15.00000\"\n          },\n          {\n            \"id\": 6062045,\n            \"type\": {\n              \"id\": 16\n            },\n            \"value\": \"16.00000\"\n          },\n          {\n            \"id\": 6062046,\n            \"type\": {\n              \"id\": 17\n            },\n            \"value\": \"17.00000\"\n          },\n          {\n            \"id\": 6062047,\n            \"type\": {\n              \"id\": 18\n            },\n            \"value\": \"0.00000\"\n          },\n          {\n            \"id\": 6062048,\n            \"type\": {\n              \"id\": 18\n            },\n            \"value\": \"0.00000\"\n          },\n          {\n            \"id\": 6062049,\n            \"type\": {\n              \"id\": 18\n            },\n            \"value\": \"0.00000\"\n          },\n          {\n            \"id\": 6062050,\n            \"type\": {\n              \"id\": 19\n            },\n            \"value\": \"19.00000\"\n          },\n          {\n            \"id\": 6062051,\n            \"type\": {\n              \"id\": 20\n            },\n            \"value\": \"20.00000\"\n          },\n          {\n            \"id\": 6062052,\n            \"type\": {\n              \"id\": 21\n            },\n            \"value\": \"21.00000\"\n          },\n          {\n            \"id\": 6062053,\n            \"type\": {\n              \"id\": 22\n            },\n            \"value\": \"22.00000\"\n          }\n        ],\n        \"note\": \"notes\"\n      }\n    },\n    \"ach\": null,\n    \"documents\": [\n      {\n        \"attachment\": {\n          \"id\": 5340728,\n          \"deletedOn\": null\n        },\n        \"about\": [\n          6\n        ],\n        \"principal\": {\n          \"id\": null\n        }\n      },\n      {\n        \"attachment\": {\n          \"id\": 5340735,\n          \"deletedOn\": null\n        },\n        \"about\": [\n          18\n        ],\n        \"principal\": {\n          \"id\": 296046\n        }\n      },\n      {\n        \"attachment\": {\n          \"id\": 5340744,\n          \"deletedOn\": null\n        },\n        \"about\": [\n          33\n        ],\n        \"principal\": {\n          \"id\": null\n        }\n      },\n      {\n        \"attachment\": {\n          \"id\": 5340791,\n          \"deletedOn\": null\n        },\n        \"about\": [\n          21\n        ],\n        \"principal\": {\n          \"id\": null\n        }\n      },\n      {\n        \"attachment\": {\n          \"id\": 5340793,\n          \"deletedOn\": null\n        },\n        \"about\": [\n          309\n        ],\n        \"principal\": {\n          \"id\": null\n        }\n      },\n      {\n        \"attachment\": {\n          \"id\": 5340794,\n          \"deletedOn\": null\n        },\n        \"about\": [\n          51\n        ],\n        \"principal\": {\n          \"id\": null\n        }\n      }\n    ],\n    \"agent\": {\n      \"id\": 109689\n    },\n    \"signature\": {\n      \"status\": \"Signed\",\n      \"via\": \"eSign\"\n    },\n    \"auto\": {\n      \"sign\": \"Yes\",\n      \"underwriting\": \"Yes\"\n    },\n    \"status\": \"Approved\",\n    \"updatedOn\": \"2023-08-18 11:08:06\",\n    \"createdOn\": \"2023-06-03 15:29:29\"\n  }\n}\n\n</code></pre>\n","_postman_id":"0bb7bbb1-14ee-4407-a265-7059247f06a9"},{"name":"Merchant","item":[{"name":"Account","item":[{"name":"New Acquiring Account","item":[],"id":"1ad0207b-ef6b-4e5c-a5ce-8b736bd455c2","description":"<p>Notification when a new Acquiring Merchant is created.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"id\": 7428,\n    \"module\": \"merchant\",\n    \"action\": \"acqCreate\",\n    \"date\": \"2023-08-18 11:00:12\",\n    \"data\": {\n        \"id\": 117038,\n        \"mid\": 123456789000,\n        \"bank\": {\n            \"name\": \"Axiom Bank\",\n            \"accountNumber\": \"6965\"\n        },\n        \"mcc\": \"8099\",\n        \"riskLevel\": \"High\",\n        \"status\": \"Live\",\n        \"boardedOn\": \"2023-07-19 17:02:47\",\n        \"volumes\": {\n            \"monthlyTransactionAmount\": 50000,\n            \"avgTransactionAmount\": 5000,\n            \"maxTransactionAmount\": 25000\n        },\n        \"sales\": {\n            \"swiped\": 0,\n            \"mail\": 100,\n            \"internet\": 0\n        },\n        \"feeSchedule\": {\n            \"fees\": [\n                {\n                    \"id\": 2785016,\n                    \"type\": {\n                        \"id\": 1\n                    },\n                    \"value\": \"0.00000\"\n                },\n                {\n                    \"id\": 2785019,\n                    \"type\": {\n                        \"id\": 2\n                    },\n                    \"value\": \"0.00000\"\n                },\n                {\n                    \"id\": 2785022,\n                    \"type\": {\n                        \"id\": 3\n                    },\n                    \"value\": \"0.00000\"\n                },\n                {\n                    \"id\": 2785025,\n                    \"type\": {\n                        \"id\": 4\n                    },\n                    \"value\": \"0.00000\"\n                },\n                {\n                    \"id\": 2785028,\n                    \"type\": {\n                        \"id\": 5\n                    },\n                    \"value\": \"0.00000\"\n                },\n                {\n                    \"id\": 2785031,\n                    \"type\": {\n                        \"id\": 6\n                    },\n                    \"value\": \"0.05000\"\n                },\n                {\n                    \"id\": 2785034,\n                    \"type\": {\n                        \"id\": 7\n                    },\n                    \"value\": \"0.00000\"\n                },\n                {\n                    \"id\": 2785037,\n                    \"type\": {\n                        \"id\": 8\n                    },\n                    \"value\": \"0.10000\"\n                },\n                {\n                    \"id\": 2785040,\n                    \"type\": {\n                        \"id\": 9\n                    },\n                    \"value\": \"0.10000\"\n                },\n                {\n                    \"id\": 2785043,\n                    \"type\": {\n                        \"id\": 10\n                    },\n                    \"value\": \"0.00000\"\n                },\n                {\n                    \"id\": 2785046,\n                    \"type\": {\n                        \"id\": 11\n                    },\n                    \"value\": \"0.00000\"\n                },\n                {\n                    \"id\": 2785049,\n                    \"type\": {\n                        \"id\": 12\n                    },\n                    \"value\": \"50.00000\"\n                },\n                {\n                    \"id\": 2785052,\n                    \"type\": {\n                        \"id\": 13\n                    },\n                    \"value\": \"0.00000\"\n                },\n                {\n                    \"id\": 2785055,\n                    \"type\": {\n                        \"id\": 14\n                    },\n                    \"value\": \"0.00000\"\n                },\n                {\n                    \"id\": 2785058,\n                    \"type\": {\n                        \"id\": 15\n                    },\n                    \"value\": \"0.00000\"\n                },\n                {\n                    \"id\": 2785061,\n                    \"type\": {\n                        \"id\": 16\n                    },\n                    \"value\": \"25.00000\"\n                },\n                {\n                    \"id\": 2785064,\n                    \"type\": {\n                        \"id\": 17\n                    },\n                    \"value\": \"5.00000\"\n                },\n                {\n                    \"id\": 2785067,\n                    \"type\": {\n                        \"id\": 18\n                    },\n                    \"value\": \"0.00000\"\n                },\n                {\n                    \"id\": 2785070,\n                    \"type\": {\n                        \"id\": 18\n                    },\n                    \"value\": \"0.00000\"\n                },\n                {\n                    \"id\": 2785073,\n                    \"type\": {\n                        \"id\": 18\n                    },\n                    \"value\": \"0.00000\"\n                },\n                {\n                    \"id\": 2785076,\n                    \"type\": {\n                        \"id\": 19\n                    },\n                    \"value\": \"0.00\"\n                },\n                {\n                    \"id\": 2785079,\n                    \"type\": {\n                        \"id\": 20\n                    },\n                    \"value\": \"0.00000\"\n                },\n                {\n                    \"id\": 2785082,\n                    \"type\": {\n                        \"id\": 21\n                    },\n                    \"value\": \"0.00000\"\n                },\n                {\n                    \"id\": 2785085,\n                    \"type\": {\n                        \"id\": 22\n                    },\n                    \"value\": \"0.00000\"\n                }\n            ],\n            \"note\": \"Additinal notes\"\n        }\n    }\n}\n\n</code></pre>\n","_postman_id":"1ad0207b-ef6b-4e5c-a5ce-8b736bd455c2"},{"name":"New ACH Account","item":[],"id":"1a1c1aba-0ab9-48bb-bc23-dd460ce41185","description":"<p>Notification when a new ACH Merchant is created.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"id\": 7431,\n    \"module\": \"merchant\",\n    \"action\": \"achCreate\",\n    \"date\": \"2023-08-18 11:02:34\",\n    \"data\": {\n        \"id\": 1565,\n        \"bank\": {\n            \"name\": \"UNITED COMMUNITY BANK\",\n            \"accountNumber\": \"9059\"\n        },\n        \"riskLevel\": \"High\",\n        \"status\": \"Inactive\",\n        \"boardedOn\": \"2023-07-05 19:40:54\",\n        \"volumes\": {\n            \"monthlyTransactions\": 30,\n            \"avgMonthlyTransactionAmount\": 50000,\n            \"avgTransactionAmount\": 900,\n            \"maxTransactionAmount\": 5000\n        },\n        \"feeSchedule\": {\n            \"fees\": [\n                {\n                    \"id\": 18710,\n                    \"type\": {\n                        \"id\": 25\n                    },\n                    \"value\": \"0.00000\"\n                },\n                {\n                    \"id\": 18713,\n                    \"type\": {\n                        \"id\": 26\n                    },\n                    \"value\": \"0.75000\"\n                },\n                {\n                    \"id\": 18716,\n                    \"type\": {\n                        \"id\": 27\n                    },\n                    \"value\": \"00.00000\"\n                },\n                {\n                    \"id\": 18719,\n                    \"type\": {\n                        \"id\": 28\n                    },\n                    \"value\": \"1.50000\"\n                },\n                {\n                    \"id\": 18722,\n                    \"type\": {\n                        \"id\": 29\n                    },\n                    \"value\": \"00.00000\"\n                },\n                {\n                    \"id\": 18725,\n                    \"type\": {\n                        \"id\": 30\n                    },\n                    \"value\": \"0.75000\"\n                },\n                {\n                    \"id\": 18728,\n                    \"type\": {\n                        \"id\": 31\n                    },\n                    \"value\": \"15.00000\"\n                },\n                {\n                    \"id\": 18731,\n                    \"type\": {\n                        \"id\": 32\n                    },\n                    \"value\": \"00.00000\"\n                },\n                {\n                    \"id\": 18734,\n                    \"type\": {\n                        \"id\": 33\n                    },\n                    \"value\": \"15.00000\"\n                },\n                {\n                    \"id\": 18737,\n                    \"type\": {\n                        \"id\": 35\n                    },\n                    \"value\": \"25.00000\"\n                },\n                {\n                    \"id\": 18740,\n                    \"type\": {\n                        \"id\": 35\n                    },\n                    \"value\": \"0.00000\"\n                },\n                {\n                    \"id\": 18743,\n                    \"type\": {\n                        \"id\": 35\n                    },\n                    \"value\": \"0.00000\"\n                }\n            ],\n            \"note\": null\n        }\n    }\n}\n\n</code></pre>\n","_postman_id":"1a1c1aba-0ab9-48bb-bc23-dd460ce41185"},{"name":"Closed Acquiring Account","item":[],"id":"49dc6ae7-0cb9-4f7e-825e-f22f4b44616e","description":"<p>Notification when a new ACH Merchant is created.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"id\": 7431,\n    \"module\": \"merchant\",\n    \"action\": \"achCreate\",\n    \"date\": \"2023-08-18 11:02:34\",\n    \"data\": {\n        \"id\": 1565,\n        \"bank\": {\n            \"name\": \"UNITED COMMUNITY BANK\",\n            \"accountNumber\": \"9059\"\n        },\n        \"riskLevel\": \"High\",\n        \"status\": \"Inactive\",\n        \"boardedOn\": \"2023-07-05 19:40:54\",\n        \"volumes\": {\n            \"monthlyTransactions\": 30,\n            \"avgMonthlyTransactionAmount\": 50000,\n            \"avgTransactionAmount\": 900,\n            \"maxTransactionAmount\": 5000\n        },\n        \"feeSchedule\": {\n            \"fees\": [\n                {\n                    \"id\": 18710,\n                    \"type\": {\n                        \"id\": 25\n                    },\n                    \"value\": \"0.00000\"\n                },\n                {\n                    \"id\": 18713,\n                    \"type\": {\n                        \"id\": 26\n                    },\n                    \"value\": \"0.75000\"\n                },\n                {\n                    \"id\": 18716,\n                    \"type\": {\n                        \"id\": 27\n                    },\n                    \"value\": \"00.00000\"\n                },\n                {\n                    \"id\": 18719,\n                    \"type\": {\n                        \"id\": 28\n                    },\n                    \"value\": \"1.50000\"\n                },\n                {\n                    \"id\": 18722,\n                    \"type\": {\n                        \"id\": 29\n                    },\n                    \"value\": \"00.00000\"\n                },\n                {\n                    \"id\": 18725,\n                    \"type\": {\n                        \"id\": 30\n                    },\n                    \"value\": \"0.75000\"\n                },\n                {\n                    \"id\": 18728,\n                    \"type\": {\n                        \"id\": 31\n                    },\n                    \"value\": \"15.00000\"\n                },\n                {\n                    \"id\": 18731,\n                    \"type\": {\n                        \"id\": 32\n                    },\n                    \"value\": \"00.00000\"\n                },\n                {\n                    \"id\": 18734,\n                    \"type\": {\n                        \"id\": 33\n                    },\n                    \"value\": \"15.00000\"\n                },\n                {\n                    \"id\": 18737,\n                    \"type\": {\n                        \"id\": 35\n                    },\n                    \"value\": \"25.00000\"\n                },\n                {\n                    \"id\": 18740,\n                    \"type\": {\n                        \"id\": 35\n                    },\n                    \"value\": \"0.00000\"\n                },\n                {\n                    \"id\": 18743,\n                    \"type\": {\n                        \"id\": 35\n                    },\n                    \"value\": \"0.00000\"\n                }\n            ],\n            \"note\": null\n        }\n    }\n}\n\n</code></pre>\n","_postman_id":"49dc6ae7-0cb9-4f7e-825e-f22f4b44616e"},{"name":"Closed ACH Account","item":[],"id":"3c7591fe-0889-43f1-b57a-f85dc81889a5","description":"<p>Notification when an ACH Merchant is closed.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"id\": 7431,\n    \"module\": \"merchant\",\n    \"action\": \"achClose\",\n    \"date\": \"2023-08-18 11:02:34\",\n    \"data\": {\n        \"id\": 1565,\n        \"bank\": {\n            \"name\": \"UNITED COMMUNITY BANK\",\n            \"accountNumber\": \"9059\"\n        },\n        \"riskLevel\": \"High\",\n        \"status\": \"Closed\",\n        \"boardedOn\": \"2023-07-05 19:40:54\",\n        \"volumes\": {\n            \"monthlyTransactions\": 30,\n            \"avgMonthlyTransactionAmount\": 50000,\n            \"avgTransactionAmount\": 900,\n            \"maxTransactionAmount\": 5000\n        },\n        \"feeSchedule\": {\n            \"fees\": [\n                {\n                    \"id\": 18710,\n                    \"type\": {\n                        \"id\": 25\n                    },\n                    \"value\": \"0.00000\"\n                },\n                {\n                    \"id\": 18713,\n                    \"type\": {\n                        \"id\": 26\n                    },\n                    \"value\": \"0.75000\"\n                },\n                {\n                    \"id\": 18716,\n                    \"type\": {\n                        \"id\": 27\n                    },\n                    \"value\": \"00.00000\"\n                },\n                {\n                    \"id\": 18719,\n                    \"type\": {\n                        \"id\": 28\n                    },\n                    \"value\": \"1.50000\"\n                },\n                {\n                    \"id\": 18722,\n                    \"type\": {\n                        \"id\": 29\n                    },\n                    \"value\": \"00.00000\"\n                },\n                {\n                    \"id\": 18725,\n                    \"type\": {\n                        \"id\": 30\n                    },\n                    \"value\": \"0.75000\"\n                },\n                {\n                    \"id\": 18728,\n                    \"type\": {\n                        \"id\": 31\n                    },\n                    \"value\": \"15.00000\"\n                },\n                {\n                    \"id\": 18731,\n                    \"type\": {\n                        \"id\": 32\n                    },\n                    \"value\": \"00.00000\"\n                },\n                {\n                    \"id\": 18734,\n                    \"type\": {\n                        \"id\": 33\n                    },\n                    \"value\": \"15.00000\"\n                },\n                {\n                    \"id\": 18737,\n                    \"type\": {\n                        \"id\": 35\n                    },\n                    \"value\": \"25.00000\"\n                },\n                {\n                    \"id\": 18740,\n                    \"type\": {\n                        \"id\": 35\n                    },\n                    \"value\": \"0.00000\"\n                },\n                {\n                    \"id\": 18743,\n                    \"type\": {\n                        \"id\": 35\n                    },\n                    \"value\": \"0.00000\"\n                }\n            ],\n            \"note\": null\n        }\n    }\n}\n\n</code></pre>\n","_postman_id":"3c7591fe-0889-43f1-b57a-f85dc81889a5"}],"id":"eaa25a56-5ec8-44f0-a989-0e38c3a6a126","_postman_id":"eaa25a56-5ec8-44f0-a989-0e38c3a6a126","description":""},{"name":"Terminal","item":[{"name":"New Terminal Record","item":[],"id":"a8012850-612a-4179-8e68-1e7df9d82a41","description":"<p>Notification when a new Merchant terminal is created</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"id\": 1722,\n  \"module\": \"merchantTerminal\",\n  \"action\": \"create\",\n  \"date\": \"2023-06-28 14:23:19\",\n  \"data\": {\n    \"id\": 154163,\n    \"dba\": {\n      \"id\": 98555,\n      \"name\": \"DBA Name\"\n    },\n    \"merchant\": {\n      \"id\": 85646,\n      \"name\": \"Merchant Demo\"\n    },\n    \"name\": \"Terminal name\",\n    \"tid\": 9990,\n    \"vNumber\": \"123\",\n    \"equipment\": null,\n    \"gateway\": {\n      \"provider\": \"Internal\",\n      \"activatedOn\": null,\n      \"3DsStatus\": \"Optional\"\n    },\n    \"feeTerminalId\": null,\n    \"website\": \"https://www.test.com\",\n    \"note\": \"\",\n    \"acceptVisa\": \"Yes\",\n    \"acceptMastercard\": \"Yes\",\n    \"acceptDiscover\": \"Yes\",\n    \"acceptAmericanExpress\": \"Yes\",\n    \"acceptPinDebit\": \"No\",\n    \"acceptEbt\": \"Yes\",\n    \"acceptGiftCard\": \"No\",\n    \"chain\": false,\n    \"agentBank\": false,\n    \"storeNumber\": \"0003\",\n    \"locationNumber\": \"00001\",\n    \"createdOn\": \"2023-06-28 17:23:19\"\n  }\n}\n\n</code></pre>\n","_postman_id":"a8012850-612a-4179-8e68-1e7df9d82a41"},{"name":"Update Terminal Record","item":[],"id":"d0fdef4c-7d8b-478b-a1a9-9f2d5e22df41","description":"<p>Notification when a merchant terminal is updated</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"id\": 1717,\n  \"module\": \"merchantTerminal\",\n  \"action\": \"update\",\n  \"date\": \"2023-06-28 14:19:12\",\n  \"data\": {\n    \"id\": 154162,\n    \"dba\": {\n      \"id\": 98555,\n      \"name\": \"DBA Name\"\n    },\n    \"merchant\": {\n      \"id\": 85646,\n      \"name\": \"Merchant Name\"\n    },\n    \"name\": \"Terminal name\",\n    \"tid\": 9990,\n    \"vNumber\": \"123\",\n    \"equipment\": {\n      \"providedBy\": \"ISO\",\n      \"used\": \"test Equipment Used\",\n      \"note\": \"test Equipment Note\",\n      \"discountPeriod\": \"Monthly\",\n      \"fundingPeriod\": \"TwoBusinessDays\"\n    },\n    \"gateway\": {\n      \"provider\": \"Internal\",\n      \"activatedOn\": \"2023-06-28 17:18:31\",\n      \"3DsStatus\": \"Optional\"\n    },\n    \"feeTerminalId\": null,\n    \"website\": \"https://www.test.com\",\n    \"note\": \"\",\n    \"acceptVisa\": \"Yes\",\n    \"acceptMastercard\": \"Yes\",\n    \"acceptDiscover\": \"Yes\",\n    \"acceptAmericanExpress\": \"Yes\",\n    \"acceptPinDebit\": \"No\",\n    \"acceptEbt\": \"Yes\",\n    \"acceptGiftCard\": \"No\",\n    \"chain\": false,\n    \"agentBank\": false,\n    \"storeNumber\": \"0003\",\n    \"locationNumber\": \"00001\",\n    \"createdOn\": \"2023-06-28 17:18:12\"\n  }\n}\n\n</code></pre>\n","_postman_id":"d0fdef4c-7d8b-478b-a1a9-9f2d5e22df41"},{"name":"Delete Terminal Record","item":[],"id":"4f04a356-db6f-443d-bc60-433d6799b560","description":"<p>Notification when a merchant terminal is deleted</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"id\": 1721,\n  \"module\": \"merchantTerminal\",\n  \"action\": \"delete\",\n  \"date\": \"2023-06-28 14:20:33\",\n  \"data\": {\n    \"id\": 154162,\n    \"dba\": {\n      \"id\": 98555,\n      \"name\": \"DBA Name\"\n    },\n    \"merchant\": {\n      \"id\": 85646,\n      \"name\": \"Merchant Name\"\n    },\n    \"name\": \"Terminal name\",\n    \"tid\": 9990,\n    \"vNumber\": \"123\",\n    \"equipment\": {\n      \"providedBy\": \"ISO\",\n      \"used\": \"test Equipment Used\",\n      \"note\": \"test Equipment Note\",\n      \"discountPeriod\": \"Monthly\",\n      \"fundingPeriod\": \"TwoBusinessDays\"\n    },\n    \"gateway\": {\n      \"provider\": \"Internal\",\n      \"activatedOn\": \"2023-06-28 17:19:32\",\n      \"3DsStatus\": \"Optional\"\n    },\n    \"feeTerminalId\": null,\n    \"website\": \"https://www.test.com\",\n    \"note\": \"\",\n    \"acceptVisa\": \"Yes\",\n    \"acceptMastercard\": \"Yes\",\n    \"acceptDiscover\": \"Yes\",\n    \"acceptAmericanExpress\": \"Yes\",\n    \"acceptPinDebit\": \"No\",\n    \"acceptEbt\": \"Yes\",\n    \"acceptGiftCard\": \"No\",\n    \"chain\": false,\n    \"agentBank\": false,\n    \"storeNumber\": \"0003\",\n    \"locationNumber\": \"00001\",\n    \"createdOn\": \"2023-06-28 17:18:12\"\n  }\n}\n\n</code></pre>\n","_postman_id":"4f04a356-db6f-443d-bc60-433d6799b560"}],"id":"842e53e5-8375-4bb0-bb38-4a01cec70f52","description":"<p>Terminal information events you can subscribe to. This webhook group is helpful when you have newly approved MIDs or if there have been updates with their terminals.</p>\n","_postman_id":"842e53e5-8375-4bb0-bb38-4a01cec70f52"}],"id":"28ea4af5-6d6b-4437-8e56-260e01458a87","description":"<p>Merchant group of events you can subscribe to</p>\n","_postman_id":"28ea4af5-6d6b-4437-8e56-260e01458a87"},{"name":"ACH","item":[{"name":"New ACH Record","item":[],"id":"c1ec3f9a-6044-40a4-b524-11ded5bc0a6b","description":"<p>Notification when a new ACH record is created.</p>\n<p><em><strong>Event Identification</strong></em></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    ...\n    \"module\": \"ach\",\n    \"action\": \"create\",\n    \"data\": achObject,\n    ...\n}\n\n</code></pre>\n","_postman_id":"c1ec3f9a-6044-40a4-b524-11ded5bc0a6b"},{"name":"ACH Status Update","item":[],"id":"c59d461f-8c11-4d49-8b33-a7d4a03beb34","description":"<p>Notification when an ACH status is updated.</p>\n<p><em><strong>Event Identification</strong></em></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    ...\n    \"module\": \"ach\",\n    \"action\": \"updateStatus\",\n    \"data\": achObject,\n    ...\n}\n</code></pre>\n","_postman_id":"c59d461f-8c11-4d49-8b33-a7d4a03beb34"},{"name":"New ACH Customer","item":[],"id":"92478ae5-7005-4816-8c6c-715c2f35e796","description":"<p>Notification when a new ACH Customer has been successfully added.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    ...\n    \"module\": \"ach\",\n    \"action\": \"createCustomer\",\n    \"data\": achObject,\n    ...\n}\n\n</code></pre>\n","_postman_id":"92478ae5-7005-4816-8c6c-715c2f35e796"}],"id":"b1e79062-855b-4113-bf93-4bcca3a24f5a","description":"<p>All the ACH group of events you can subscribe to.</p>\n","_postman_id":"b1e79062-855b-4113-bf93-4bcca3a24f5a"},{"name":"Chargeback","item":[{"name":"New Chargeback Record","item":[],"id":"4f2c7627-315f-4ed9-a355-8555663070c1","description":"<p>Notification when a new Chargeback record is created.</p>\n<p><em><strong>Event Identification</strong></em></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    ...\n    \"module\": \"chargeback\",\n    \"action\": \"create\",\n    \"data\": chargebackObject,\n    ...\n}\n</code></pre>\n","_postman_id":"4f2c7627-315f-4ed9-a355-8555663070c1"},{"name":"Chargeback Update","item":[],"id":"c6a012fe-6c70-45ef-ae77-db3d28988089","description":"<p>Notification when a Chargeback is updated.</p>\n<p><em><strong>Event Identification</strong></em></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    ...\n    \"module\": \"chargeback\",\n    \"action\": \"update\",\n    \"data\": chargebackObject,\n    ...\n}\n</code></pre>\n","_postman_id":"c6a012fe-6c70-45ef-ae77-db3d28988089"}],"id":"78755bca-cf11-4d20-939b-f9e3912f4349","description":"<p>Chargeback group of events you can subscribe to.</p>\n<p><em><strong>Chargeback Object</strong></em></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Fields</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>The unique ID assigned by our system to every case.</td>\n<td>Integer</td>\n</tr>\n<tr>\n<td>dba</td>\n<td>Object</td>\n<td>Object</td>\n</tr>\n<tr>\n<td>dba.id</td>\n<td>The ID of the DBA</td>\n<td>Integer</td>\n</tr>\n<tr>\n<td>identifier</td>\n<td>The Merchant Identification Number (MID)</td>\n<td>Integer</td>\n</tr>\n<tr>\n<td>disputeId</td>\n<td>We assign a unique ID to the first case of a dispute. Every related case update will have a unique id and the same disputeId.</td>\n<td>Integer</td>\n</tr>\n<tr>\n<td>merchantRefId</td>\n<td>A reference number provided by merchant or their vendor for this transaction.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>merchantEmail</td>\n<td>Merchant email address</td>\n<td>String</td>\n</tr>\n<tr>\n<td>number</td>\n<td>The unique number assigned by the bank system to every case.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>type</td>\n<td><code>Chargeback</code> or <code>Retrieval</code></td>\n<td>ENUM</td>\n</tr>\n<tr>\n<td>visaRDR</td>\n<td><code>Yes</code> or <code>No</code> Identifies if the chargeback is Visa RDR</td>\n<td>ENUM</td>\n</tr>\n<tr>\n<td>authCode</td>\n<td>The authorization code passed with the settlement record</td>\n<td>String</td>\n</tr>\n<tr>\n<td>acquirerReferenceNumber</td>\n<td>Unique number assigned to a credit card transaction as it moves through the payment flow.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>gatewayId</td>\n<td>Unique ID of the Payment Gateway</td>\n<td>Integer</td>\n</tr>\n<tr>\n<td>gatewayExternalId</td>\n<td>Unique record identifiers from a system outside of Payment Gateway</td>\n<td>String</td>\n</tr>\n<tr>\n<td>amount</td>\n<td>The amount of the retrieval or chargeback. This is not always equal to the amount of the transaction.</td>\n<td>Number</td>\n</tr>\n<tr>\n<td>transaction</td>\n<td>Object</td>\n<td>Object</td>\n</tr>\n<tr>\n<td>transaction.number</td>\n<td>The unique payment ID that is assigned per transaction from the system.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>transaction.amount</td>\n<td>The original transaction amount.</td>\n<td>Number</td>\n</tr>\n<tr>\n<td>transaction.date</td>\n<td>Transaction Date</td>\n<td>Date</td>\n</tr>\n<tr>\n<td>transaction.card</td>\n<td>Object</td>\n<td>Object</td>\n</tr>\n<tr>\n<td>transaction.card.brand</td>\n<td>Card Brand</td>\n<td>String</td>\n</tr>\n<tr>\n<td>transaction.card.number</td>\n<td>Card Number</td>\n<td>String</td>\n</tr>\n<tr>\n<td>date</td>\n<td>Object</td>\n<td>Object</td>\n</tr>\n<tr>\n<td>date.posted</td>\n<td>The post date as reported by the issuer.</td>\n<td>Date</td>\n</tr>\n<tr>\n<td>date.loaded</td>\n<td>The date the retrieval request or chargeback was loaded in the system.</td>\n<td>Date</td>\n</tr>\n<tr>\n<td>date.disputed</td>\n<td>Date when the dispute was submitted.</td>\n<td>Date</td>\n</tr>\n<tr>\n<td>date.receivedDate</td>\n<td>Date the retrieval request or chargeback was submitted by the Issuer.</td>\n<td>Date</td>\n</tr>\n<tr>\n<td>date.lastActionDate</td>\n<td>Date the case needs to be resolved.</td>\n<td>Date</td>\n</tr>\n<tr>\n<td>description</td>\n<td>Case information.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>fraud</td>\n<td><code>Yes</code> or <code>No</code></td>\n<td>ENUM</td>\n</tr>\n<tr>\n<td>attention</td>\n<td><code>Yes</code> or <code>No</code> If the merchant's attention is required</td>\n<td>ENUM</td>\n</tr>\n<tr>\n<td>status</td>\n<td><code>Processed</code>, <code>Won</code>, <code>Lost</code></td>\n<td>ENUM</td>\n</tr>\n</tbody>\n</table>\n</div><p><em><strong>Example</strong></em></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"id\": \"200\",\n    \"dba\": {\n        \"id\": \"1217\"\n    },\n    \"identifier\": \"201100000000\",\n    \"disputeId\": \"100\",\n    \"merchantRefId\": \"0123456\",\n    \"merchantEmail\": \"jhon@example.com\",\n    \"number\": \"2019248118022\",\n    \"type\": \"Chargeback\",\n    \"visaRDR\": \"No\",\n    \"authCode\": \"1233123R\",\n    \"acquirerReferenceNumber\": null,\n    \"gateway\": {\n        \"id\": 24,\n        \"externalId\": null\n    },\n    \"amount\": 33.49,\n    \"transaction\": {\n        \"number\": \"111119380905678\",\n        \"amount\": 33.49,\n        \"date\": \"2019-12-01\",\n        \"card\": {\n            \"brand\": \"Visa\",\n            \"number\": \"412345XXXXXX1234\"\n        }\n    },\n    \"date\": {\n        \"posted\": \"2019-12-10\",\n        \"loaded\": \"2019-12-15\",\n        \"disputed\": \"2019-12-09\",\n        \"receivedDate\": \"2019-12-09\",\n        \"lastActionDate\": \"2019-12-19\"\n    },\n    \"description\": \"Cancelled Recurring Transaction\",\n    \"fraud\": \"No\",\n    \"attention\": \"Yes\",\n    \"status\": \"Lost\"\n}\n</code></pre>\n","_postman_id":"78755bca-cf11-4d20-939b-f9e3912f4349"},{"name":"Connect","item":[{"name":"Access Granted","item":[],"id":"479064ae-0626-4b5a-ba56-5c6e508c1ee5","description":"<p>Notification when new access has been granted</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"id\": 8083,\n    \"module\": \"appConnect\",\n    \"action\": \"grantAccess\",\n    \"date\": \"2023-09-27 14:22:22\",\n    \"data\": {\n        \"appConnect\": {\n            \"id\": 13\n        },\n        \"user\": {\n            \"id\": 22,\n            \"name\": \"John Wick\"\n        },\n        \"scope\": [\n            3,\n            12,\n            28,\n            35\n        ]\n    }\n}\n\n</code></pre>\n","_postman_id":"479064ae-0626-4b5a-ba56-5c6e508c1ee5"},{"name":"Access Updated","item":[],"id":"f956077c-53b0-4fd2-9bfe-5bfc04f90b2f","description":"<p>Notification when modifications have been made to existing granted access</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"id\": 8086,\n    \"module\": \"appConnect\",\n    \"action\": \"updateAccess\",\n    \"date\": \"2023-09-27 14:23:38\",\n    \"data\": {\n        \"appConnect\": {\n            \"id\": 98\n        },\n        \"user\": {\n            \"id\": 97,\n            \"name\": \"John Wick\"\n        },\n        \"scope\": [\n            6,\n            11,\n            26,\n            35\n        ]\n    }\n}\n\n</code></pre>\n","_postman_id":"f956077c-53b0-4fd2-9bfe-5bfc04f90b2f"},{"name":"Access Revoked","item":[],"id":"be6147ee-d011-49be-8ae2-8690f05c669c","description":"<p>Notification when access has been revoked.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"id\": 8089,\n    \"module\": \"appConnect\",\n    \"action\": \"revokeAccess\",\n    \"date\": \"2023-09-27 14:24:26\",\n    \"data\": {\n        \"appConnect\": {\n            \"id\": 89\n        },\n        \"user\": {\n            \"id\": 95,\n            \"name\": \"John Wick\"\n        },\n        \"scope\": [\n            3,\n            19,\n            25,\n            40\n        ]\n    }\n}\n\n</code></pre>\n","_postman_id":"be6147ee-d011-49be-8ae2-8690f05c669c"}],"id":"cfb9e124-6b1e-4c42-bb9f-e04d8940b15f","description":"<p>All Connect events you can subscribe to.</p>\n","_postman_id":"cfb9e124-6b1e-4c42-bb9f-e04d8940b15f"}],"id":"cec2a001-e769-4611-9396-82f207f7cb7f","description":"<p>Groups of events you can subscribe to.</p>\n","_postman_id":"cec2a001-e769-4611-9396-82f207f7cb7f"}],"id":"b8d81eb3-447f-4c0d-ad39-b75845e8abae","description":"<p>Use webhooks to be notified about events that happen in your account.</p>\n<p>Webhook Object</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Fields</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>Unique ID of the event</td>\n<td>Integer</td>\n</tr>\n<tr>\n<td>module</td>\n<td>Event group</td>\n<td>String</td>\n</tr>\n<tr>\n<td>action</td>\n<td>Event identifier</td>\n<td>String</td>\n</tr>\n<tr>\n<td>date</td>\n<td>Date of the event</td>\n<td>Datetime</td>\n</tr>\n<tr>\n<td>data</td>\n<td>Event Data</td>\n<td>Object</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"example\">Example</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">{\n    \"id\": \"1\",\n    \"module\": \"ach\",\n    \"action\": \"create\",\n    \"date\": \"2019-08-03 19:31:55\",\n    \"data\": {...}\n}\n</code></pre>\n","_postman_id":"b8d81eb3-447f-4c0d-ad39-b75845e8abae"}],"event":[{"listen":"prerequest","script":{"id":"114fcb7f-0462-4f32-9e2a-d6bee41bb3b2","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"1d9fb58a-24dc-489e-8011-ec16a0b0b1e5","type":"text/javascript","exec":[""]}}],"variable":[{"key":"dashboard.url","value":"https://dashboard.dashboard.paysecureonline.com","type":"string"},{"key":"gateway.url","value":"https://gateway.dashboard.paysecureonline.com","type":"string"},{"key":"example.url","value":"https://dashboard.paysecureonline.com","type":"string"},{"key":"sandbox-gateway.url","value":"https://sandbox-gateway.paysecureonline.com/"},{"key":"sandbox-dashboard.url","value":"https://sandbox-dashboard.paysecureonline.com/"},{"key":"token.agent","value":"XXX","type":"string"},{"key":"token.merchant","value":"XXX","type":"string"},{"key":"token.appConnect","value":"XXX","type":"string"}]}